function zliczaj_znaki() {
var a=document.forms["komentowanie"].tresc.value.length;
var b=2000;
var c = b - a;

   if(a < 2001)
  {
      document.forms["komentowanie"].znak.value=c;
   }
   else
   {
      alert('Przekroczono dozwoloną ilość znaków !!!');
      document.forms["komentowanie"].tresc.value=document.forms["komentowanie"].tresc.value.substring(0,2000);
   }
}
