<!--
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 > 50)
  {
    alert("Please enter at most 50 characters in the \"Name\" field.");
    theForm.Name.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.indexOf ('@',0) == -1)
  {
    alert("Please verify that your \"Email\"  address is valid.");
    theForm.Email.focus();
    return (false);
  }

  if (theForm.Email.value.indexOf ('.',0) == -1)
  {
    alert("Please verify that your \"Email\"  address is valid.");
    theForm.Email.focus();
    return (false);
  }
  
  if (theForm.Email.value.length < 6)
  {
    alert("Please enter a valid \"Email\" address.");
    theForm.Email.focus();
    return (false);
  }
  
  return (true);
}
//--> 