//EHTLife
//Katja Suess
function toggle () {
  if (document.getElementById)
    if (document.getElementById("comment").style.display == "block")
      document.getElementById("comment").style.display = "none";
    else
      document.getElementById("comment").style.display = "block";
}
function sendComment () {
   alert('gesendet: '+document.formcomment.commenttitle.value + ' ' + document.formcomment.commenttext.value);
   /*alert( "Kommentar gesendet!");*/
}
