<!--
function FrontPage_Form1_Validator(theForm)
{

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

  if (theForm.your_name.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"Name\" field.");
    theForm.your_name.focus();
    return (false);
  }

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

  if (theForm.phone.value.length > 14)
  {
    alert("Please enter at most 14 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 < 5)
  {
    alert("Please enter a valid  email address  \"Email\" field.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.email.value.length > 111)
  {
    alert("Please enter at most 111 characters in the \"Email\" field.");
    theForm.email.focus();
    return (false);
  }
  return (true);
}

function blockError(){return true;}
window.onerror = blockError;
// -->