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.First_Name.value.length < 1)
  {
    alert("Please enter at least 1 characters in 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.Last_Name.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Last_Name\" field.");
    theForm.Last_Name.focus();
    return (false);
  }
  
/*  if (theForm.Church_Name.value == "")
  {
    alert("Please enter a value for the \"Church_Name\" field.");
    theForm.Last_Name.focus();
    return (false);
  }

  if (theForm.Church_Name.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Church_Name\" field.");
    theForm.Last_Name.focus();
    return (false);
  }
  
  if (theForm.Position.value == "")
  {
    alert("Please enter a value for the \"Position\" field.");
    theForm.Last_Name.focus();
    return (false);
  }

  if (theForm.Position.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Position\" field.");
    theForm.Last_Name.focus();
    return (false);
  }

  if (theForm.Address1.value == "")
  {
    alert("Please enter a value for the \"Address1\" field.");
    theForm.Address1.focus();
    return (false);
  }

  if (theForm.Address1.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Address1\" field.");
    theForm.Address1.focus();
    return (false);
  }

  if (theForm.City.value == "")
  {
    alert("Please enter a value for the \"City\" field.");
    theForm.City.focus();
    return (false);
  }

  if (theForm.City.value.length < 1)
  {
    alert("Please enter at least 1 characters in 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.State.value.length < 2)
  {
    alert("Please enter at least 2 characters in 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.Zip_Code.value.length < 5)
  {
    alert("Please enter at least 5 characters in the \"Zip_Code\" field.");
    theForm.Zip_Code.focus();
    return (false);
  }
*/
  if (theForm.Phone.value == "")
  {
    alert("Please enter a value for the \"Phone\" field.");
    theForm.Phone.focus();
    return (false);
  }

  if (theForm.Phone.value.length < 7)
  {
    alert("Please enter at least 7 characters in the \"Phone\" field.");
    theForm.Phone.focus();
    return (false);
  }

  if (theForm.Email.value == "")
  {
    alert("Please enter a value for the \"Email\" field.");
    theForm.Email.focus();
    return (false);
  }

  if (theForm.Email.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Email\" field.");
    theForm.Email.focus();
    return (false);
  }
  return (true);
}
