function Form_Validator(theForm)
{
  if (theForm.Name.value == "")
  {
    alert("Please enter your name.");
    theForm.Name.focus();
    return (false);
  }
  
  if (theForm.Email.value == "")
  {
    alert("Please enter your email address.");
    theForm.Email.focus();
    return (false);
  }

  if (theForm.Phone.value == "")
  {
    alert("Please enter your 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);
  }
  
  return (true);
}
