// JavaScript Document


function deletePrompt(url) {
	
	x = confirm("Are you sure you want to delete this?\r\n\r\n--------------------------------------\r\n--------------------------------------\r\n\r\nClick OK to continue deleting. \r\n\r\bClick Cancel to go back to where you were.\r\n\r\n--------------------------------------");
	
	if (x) { window.location=url }
	else { return false; }

}


