<!--
function FrontPage_Form1_Validator(theForm)
{

  if (theForm.search.value == "")
  {
    alert("Please enter a value for the \"search\" field.");
    theForm.search.focus();
    return (false);
  }

  if (theForm.search.value.length < 3)
  {
    alert("Please enter at least 3 characters in the \"search\" field.");
    theForm.search.focus();
    return (false);
  }

  if (theForm.search.value.length > 20)
  {
    alert("Please enter at most 20 characters in the \"search\" field.");
    theForm.search.focus();
    return (false);
  }
  return (true);
}
//-->
