function doSubmit()
{
   if (sForm.sText.value.length < 2)
   {
      alert("please enter a search string");
      return false;
   }

   return true;
}
