function comment_display(tag,flg){
  //alert('comment_display');
  var oj = document.getElementById(tag);
  if(flg){
    oj.style.display = "block";		 // view
  }else{
    oj.style.display = "none";		 // hidden
  }
}
