﻿function ConfirmSubmit()
{
    var agree = confirm("Are you sure you wish to delete this page?  All of its content will be permanently lost.\n\nIf you only wish to hide this page, press 'Cancel' and check the 'Hide This Page' checkbox.");

    if (agree)
	    return true;
    else
	    return false;
}

function ConfirmSubmit2()
{
	var agree = confirm("Are you sure you wish to delete this page?  All of its content will be permanently lost.");

	if (agree)
		return true;
	else
		return false;
}