  function Validator(theForm){

  if (theForm.username.value == 0){
    alert("Ведіть Ваше Ім'я!"); theForm.username.focus(); return (false);
    }


  if (theForm.date.value == ""){
    alert("Поле дата пусте!"); theForm.date.focus(); return (false);
    }
  if (theForm.area.value == ""){
    alert("Ви не ввели місце відпочинку!"); theForm.area.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();
  }