//jquery code
 $(document).ready(function(){

   $("a.docomment").click(function(){
   	$("#formcomment").toggle();
		document.fcommentform.AuthorName.focus();
    	return false;
   });

   $("a.comments").click(function(){
   	$("div.comments").toggle();
    	return false;
   });

 });


