
function Validator(theForm)
{
  
  
  if (theForm.title.value == "")
  {
    alert("Please enter Your title");
    theForm.title.focus();
    return (false);
  }
  
  if (theForm.fname.value == "")
  {
    alert("Please enter your name.");
    theForm.fname.focus();
    return (false);
  }
  
   if (theForm.email.value == "")
  {
    alert("Please enter an e-mail address.");
    theForm.email.focus();
    return (false);
  }
  
     if (theForm.tel.value == "")
  {
    alert("Please enter a telephone number.");
    theForm.tel.focus();
    return (false);
  }
  
   if (theForm.town.value == "")
  {
    alert("Please enter which town you're from.");
    theForm.town.focus();
    return (false);
  }
  
    if (theForm.country.value == "")
  {
    alert("Please enter which country you're from");
    theForm.country.focus();
    return (false);
  }
  
return (true);
}