function Form_Validator(theForm)
{
  if (theForm.Name.value == "")
  {
    alert("Please enter your name.");
    theForm.Name.focus();
    return (false);
  }
  if (theForm.Title.value == "")
  {
    alert("Please enter a title.");
    theForm.Title.focus();
    return (false);
  }
  if (theForm.Agency.value == "")
  {
    alert("Please enter an agency.");
    theForm.Agency.focus();
    return (false);
  }
  if (theForm.Email.value == "")
  {
    alert("Please enter your email address.");
    theForm.Email.focus();
    return (false);
  }

  if (theForm.Home_Phone.value == "")
  {
    alert("Please enter your home phone number.");
    theForm.Home_Phone.focus();
    return (false);
  }

  if (theForm.Address.value == "")
  {
    alert("Please enter your address.");
    theForm.address.focus();
    return (false);
  }
  
  if (theForm.City.value == "")
  {
    alert("Please enter a city.");
    theForm.City.focus();
    return (false);
  }
  
  if (theForm.State.value == "")
  {
    alert("Please enter a state.");
    theForm.State.focus();
    return (false);
  }
  
  if (theForm.Zip.value == "")
  {
    alert("Please enter a zip code.");
    theForm.Zip.focus();
    return (false);
  }
  
  if (theForm.Work_Phone.value == "")
  {
    alert("Please enter a work phone number.");
    theForm.Work_Phone.focus();
    return (false);
  }
  
  if (theForm.Date.value == "")
  {
    alert("Please enter today's date.");
    theForm.Date.focus();
    return (false);
  }
  return (true);
}
