function FrontPage_Form1_Validator(theForm)
{

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

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

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

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

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

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

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

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

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