// Nannette Thacker http://www.shiningstar.net
function confirmSubmit()
{
var agree=confirm("Deleting this item cannot be undone! Do you wish to proceed?");
if (agree)
	return true ;
else
	return false ;
}