
		<!--
function validate_Form(Applicant)
{

if (document.Applicant.email.value == "")
  {
    alert("Please enter your email address.");
    document.Applicant.email.focus();
    return false;
  }
if (document.Applicant.email.value != "")
  {
	var CRETURN = "\n";
	emailmessage= Applicant.email.value.toLowerCase();
	if ((emailmessage.indexOf("@")<1) || (emailmessage.indexOf(".")<1))
	  {
       	alert("This email address appears to be invalid." + CRETURN + "Please check the prefix and '@' sign.");      
    	document.Applicant.email.focus();
       	return false;
      } 
  }

	


else  return true;
}
//-->

