<!--
function confirmSubmit(msg)
{
//var agree=confirm("Are you sure your details are correct?");
var agree=confirm(msg);
if (agree)
	return true ;
else
	return false ;
}
//onclick="return confirmSubmit('Are you sure your want to delete this thing?')"
//-->
