function chkcomment()
{
 if(document.post.message.value == "")  {
   alert("Leere Kommentare sind nicht erlaubt!");
   document.post.message.focus();
   return false;
  }
  document.post.ok.disabled='true'
  document.post.ok.value='Bitte warten'
}