<!--              
    function viewFullComment(id)

    {                         
        var comment = document.getElementById('comment');  
		
		if(comment.style.display == 'none')
         {                                
             comment.style.display = 'block'
         } 
         else 
         {                              
             comment.style.display = 'none';
         }	
    }
//--> 