<!--
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 < 3)
  {
    alert("Please enter at least 3 characters in the \"Name\" field.");
    theForm.name.focus();
    return (false);
  }

  if (theForm.name.value.length > 75)
  {
    alert("Please enter at most 75 characters in the \"Name\" field.");
    theForm.name.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 < 3)
  {
    alert("Please enter at least 3 characters in the \"Phone\" field.");
    theForm.phone.focus();
    return (false);
  }

  if (theForm.phone.value.length > 30)
  {
    alert("Please enter at most 30 characters in the \"Phone\" field.");
    theForm.phone.focus();
    return (false);
  }
  return (true);
}
//-->
