function SprawdzFormularzKomentarza(forma)
{
   with (forma)
   {
      tresc.value = trim(tresc.value);
      
      if (tresc.value == "")
      {
         alert('Należy podać treść komentarza!');
         return false;
      }
   }
}
