﻿function ConfirmLockTopic(button) {
    if (button.innerHTML == "Lock") {
        return confirm("This will lock the topic, preventing any further responses.\nPlease confirm that you wish to do this.");
    }
    else {
        return true;
    }
}

function ConfirmDeletePost(button) {
	return confirm("This will delete the post.\nPlease confirm that you wish to do this.");
}

function ConfirmDeleteTopic(button) {
	return confirm("This will delete the topic.\nPlease confirm that you wish to do this.");
}

function ConfirmReportAbuse(button) {
	return confirm("This will flag this post as being inappropriate.\nPlease confirm that you wish to do this.");
}

