function confirmSubmit()
{
var agree=confirm("An email will be sent to this address\nwith a link to activate your account.\nIs this a valid emaill address??");
if (agree)
	return true ;
else
	return false ;
}


