function confirmSubmit()
{
var agree=confirm("Submit the application?");
if (agree)
	return true ;
else
	return false ;
}