  function Validator(theForm){

  if (theForm.type !== false && theForm.type.value == 0){
    alert("Виберіть тип оголошення!"); theForm.type.focus(); return (false);
    }

  if (theForm.catid.value == 0){
    alert("Виберіть рубрику!"); theForm.catid.focus(); return (false);
    }

  if (theForm.title.value == ""){
    alert("Поле заголовок пусте!"); theForm.title.focus(); return (false);
    }

  if (theForm.text.value == ""){
    alert("Ви не ввели текст оголошення! Максимум 2000 символів."); theForm.text.focus(); return (false);
    }

  if (theForm.usname.value == ""){
    alert("Введіть своє ім'я!"); theForm.usname.focus(); return (false);
    }

  if (theForm.email.value == ""){
    alert("Поле E-mail порожнє!"); theForm.email.focus(); return (false);
    }

   if (theForm.vcode.value == ""){
    alert("Введіть код перевірки!"); theForm.vcode.focus(); return (false);
    }
  theForm.Submit.disabled = true;
  return (true);
  }

  function Send(theForm){

  if (theForm.usname.value == ""){
    alert("Введіть своє ім'я!"); theForm.usname.focus(); return (false);
    }

  if (theForm.email.value == ""){
    alert("Поле E-mail порожнє!"); theForm.email.focus(); return (false);
    }

  if (theForm.text.value == ""){
    alert("Ви не ввели текст оголошення! Максимум 2000 символів."); theForm.text.focus(); return (false);
    }

  if (theForm.vcode.value == ""){
    alert("Введіть код перевірки!"); theForm.vcode.focus(); return (false);
    }
  theForm.Submit.disabled = true;
  return (true);
  }

  var maxlen=2000;
  function GetLength(theForm)
  {
   str=theForm.text.value;
   len=str.length;
   if (len>maxlen) theForm.text.value=str.substring(0,maxlen);
   document.getElementById('length_counter').innerHTML='Залишилось: '+(maxlen-theForm.text.value.length)+'&nbsp;симв.';
   theForm.text.focus();
  }
