// JavaScript Document

// Show the comment form
function showCommentForm(id){
  var state = document.getElementById(id).style.display;
  //alert(state);
  if(state == 'block'){
    state = 'none';
  }else{
    state = 'block';
  }
  document.getElementById(id).style.display = state;
}

//document.getElementById(id).style.display = 'block';

