// JavaScript Document
<!--
function confirmSubmit()
{
var agree=confirm("Are you sure you want to Delete this?");
if (agree)
	return true ;
else
	return false ;
}

// -->
