function Validator(theForm)
{

  if (theForm.name.value == "")
  {
    alert("Please enter your name!");
    theForm.name.focus();
    return (false);
  }

  
  if (theForm.address.value == "")
  {
    alert("Please enter your address!");
    theForm.address.focus();
    return (false);
  }

  if (theForm.city.value == "")
  {
    alert("Please enter your City.");
    theForm.city.focus();
    return (false);
  }
  
   if (theForm.email.value == "")
  {
    alert("Please enter an email address.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.state.value == "")
  {
    alert("Please enter your State!");
    theForm.state.focus();
    return (false);
  }

  if (theForm.zip.value == "")
  {
    alert("Please enter your Zipcode!");
    theForm.zip.focus();
    return (false);
  }

  if (theForm.city.value == "")
  {
    alert("Please enter a value for\"city\" field.");
    theForm.city.focus();
    return (false);
  }

  
  
   return (true);
}
