<!--
   
   function bbs_setCommentForm(id, show) {
	   if(show) {
		  bbs_showCommentForm(id);   
	   }
	   else
	      bbs_hideCommentForm(id); 
   }
   
   
   function bbs_showCommentForm(id) {
	   document.getElementById(id).style.display = "";
	   document.getElementById(id + "_link").style.display = "none";
   }
   
   
   function bbs_hideCommentForm(id) {
	   document.getElementById(id).style.display = "none";
	   document.getElementById(id + "_link").style.display = "";
   }
//-->
