// JavaScript Document
function confirmSubmit()
{
var agree=confirm("Are you sure you wish to delete this? All records associated will be permanently destroyed.");
if (agree)
	return true ;
else
	return false ;
}
