function Validator(theForm)
{

  if ((!theForm.is_content.checked) && (!theForm.is_title.checked) && (!theForm.is_user.checked) && (!theForm.is_email.checked))
  {
    alert("Необходимо уточнить критерии поиска !");
    return (false);
  }

  return (true);