// JavaScript Document 
//WEBSITE
function Validator(theForm)
{
   
  if (theForm.searchname.value.length < 3)
  {
    alert("Please enter at least three characters.");
    theForm.searchname.focus();
    return (false);
  }
  
return (true);
//return (false);
}

