  function Validator(theForm){

  if (theForm.username.value == 0){
    alert("Ведіть Ваше Ім'я!"); theForm.username.focus(); return (false);
    }
  if (theForm.email.value == ""){
    alert("Поле email пусте!"); 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);
    }

  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='Залишилось: <b>'+(maxlen-theForm.text.value.length)+'</b>&nbsp;симв.';
   theForm.text.focus();
  }

  function insertext(text,area){
        if(area=="short"){
        document.form.text.focus();
        document.form.text.value=document.form.text.value +" "+ text;
        document.form.text.focus();
        }
        }