// JavaScript Document for foolproof website
function confirmation() {
	
	var response = confirm("***************************************\nAre you sure you want to DELETE this user\n\nTHIS CANNOT BE UNDONE\n\n***************************************");

	if (response == true) {
		return true;
	}
	else {
		return false;
	}


}

function confirmation_jobs() {
	
	var response = confirm("***************************************\nAre you sure you want to DELETE this Job Role\n\nTHIS CANNOT BE UNDONE\n\n***************************************");

	if (response == true) {
		return true;
	}
	else {
		return false;
	}


}
