function Validator(theForm){

  if (theForm.username.value == 0)
  {
    alert("Ведіть Ваше Ім'я!"); theForm.username.focus(); return (false);
  }
  if (theForm.ustext.value == "")
  {
    alert("Ви не ввели текст оголошення! Максимум 2000 символів."); theForm.ustext.focus(); return (false);
  }
  if (theForm.vcode.value == "")
  {
    alert("Введіть код перевірки!"); theForm.vcode.focus(); return (false);
  }
  return (true);
  }

  var maxlen = 2000;

  function GetLength(theForm)
  {
   str = theForm.ustext.value;
   len = str.length;
   if (len > maxlen) theForm.ustext.value = str.substring(0, maxlen);
   document.getElementById('length_counter').innerHTML = 'Залишилось: <b>' + (maxlen-theForm.ustext.value.length) + '</b>&nbsp;симв.';
   theForm.ustext.focus();
  }
