// JavaScript Document

function toggle_comments (postid) {

   var whichpost = document.getElementById(postid);

   if (whichpost.className=="commentshown") {
      whichpost.className="commenthidden";
   }
   else {
      whichpost.className="commentshown";
   }
}