<!--
function form_validator(theForm) 
{
  if ((theForm.searchtext.value == "") || (theForm.searchtext.value.length < 2)) 
  {
    alert("Пожалуйста, введите корректный запрос! Число символов не должно быть менее трех");
    theForm.searchtext.focus();
    return(false);
  }
  return (true);
}
//-->