	function FrontPage_Form1_Validator(theForm)
		{

		  if (theForm.Name.value == "")
		  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Name.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Name\" field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Email.value == "")
  {
    alert("Please enter a value for the \"Email Address\" field.");
    theForm.Email.focus();
    return (false);
  }

  if (theForm.Email.value.length < 5)
  {
    alert("Please enter at least 5 characters in the \"Email Address\" field.");
    theForm.Email.focus();
    return (false);
  }

  Work_Phone = "(" + theForm.w_area_code.value + ")" + theForm.w_phone_3.value + "-" + theForm.w_phone_4.value ;
  if (Work_Phone == "")
  {
    alert("Please enter a value for the \"Daytime Phone Number\" field.");
    theForm.w_area_code.focus();
    return (false);
  }

  if (Work_Phone.length < 13)
  {
    alert("Please enter a value for the \"Daytime Phone Number\" field.");
    theForm.w_area_code.focus();
    return (false);
  }

//---------------------------------------------------------------//

  Home_Phone = "(" + theForm.h_area_code.value + ")" + theForm.h_phone_3.value + "-" + theForm.h_phone_4.value ;
  if (Home_Phone == "")
  {
    alert("Please enter a value for the \"Evening Phone Number\" field.");
    theForm.h_area_code.focus();
    return (false);
  }

  if (Home_Phone.length < 13)
  {
    alert("Please enter a value for the \"Evening Phone Number\" field.");
    theForm.h_area_code.focus();
    return (false);
  }

//---------------------------------------------------------------//

  if (theForm.Address.value == "")
  {
    alert("Please enter a value for the \"Address\" field.");
    theForm.Address.focus();
    return (false);
  }

  if (theForm.Address.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Address\" field.");
    theForm.Address.focus();
    return (false);
  }


  if (theForm.State.value == "")
  {
    alert("Please enter a value for the \"State\" field.");
    theForm.State.focus();
    return (false);
  }

  if (theForm.State.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"State\" field.");
    theForm.State.focus();
    return (false);
  }

  if (theForm.Zip.value == "")
  {
    alert("Please enter a value for the \"Zip\" field.");
    theForm.Zip.focus();
    return (false);
  }

  if (theForm.Zip.value.length < 5)
  {
    alert("Please enter at least 5 characters in the \"Zip\" field.");
    theForm.Zip.focus();
    return (false);
  }

  return (true);
}
