// Hide comment submission forms (if browser can show them again)
if (document.getElementById) {
  document.write("<style type=\"text/css\"> .commentform { display: none; } </style>");
}

// Toggle comment submission forms
function CommentForm(id) {
  if (document.getElementById) {
    if (document.getElementById("commentform" + id).style.display == "block") {
      document.getElementById("commentform" + id).style.display = "none";
    } else {
      document.getElementById("commentform" + id).style.display = "block";
    }
  }
}
