function rusure() {
	
	if(confirm("this will delete all records for this user, do you want to proceed?")) {
			return true;
	} else {
		return false;
	}
	
	
}
function rusure1() {
	
	if(confirm("this will promote this user, do you want to proceed?")) {
			return true;
	} else {
		return false;
	}
}	

