function cancelForm() {
	if (confirm("If you stop now, all your data will be lost.  Hit OK to exit the enrollment process.")) {
		location.href = "/";
	}
	
	return false;
}

function cancelRegistrationForm(){
	if (confirm("If you stop now, all your data will be lost.\nHit OK to exit the registration process.")) {
		location.href = "./index.aspx";
	}
	
	return false;
}


function cancelReg() {
	if (confirm("If you stop now, all your updates will be lost.  Hit OK to exit your profile updates.")) {
		location.href = "/";
	}
	
	return false;
}
