
<!--
function Form_Validator(theForm)
{
  if (theForm.FirstName.value == ""){
    alert("Please enter your \"First Name\".");
    theForm.FirstName.focus();
    return (false);
  }
  
  if (theForm.LastName.value == ""){
    alert("Please enter your \"Last Name\".");
    theForm.LastName.focus();
    return (false);
  }
  
  if (theForm.Email.value == ""){
    alert("Please enter your \"E-mail Address\".");
    theForm.Email.focus();
    return (false);
   }
  else
  {
    //  Validate Personal Email Address
  	    var email = theForm.Email;
		var name = "E-mail Address";
		var fncReturn = Email_Validator(email , name);
		if (fncReturn == false){
		theForm.Email.focus();
        return (false);
		}
   }
   
  if (theForm.Phone.value == ""){
    alert("Please enter your \"Phone Number\".");
    theForm.Phone.focus();
    return (false);
  }
    
  return (true);
  
}


   
//-->
