function cancelExit() {
	conf = confirm("You are about to exit without saving your changes.\n\nAre you sure you want to exit?");
	if (conf == true) {
		document.location = 'index.php';
	}
}