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 cancelReg() {
	if (confirm("If you stop now, all your updates will be lost.  Hit OK to exit your profile updates.")) {
		location.href = "/";
	}
	
	return false;
}
