function displayComment(this_element){
    
    var comments = document.getElementById("comments");
    if(comments.style.display == 'block'){
        comments.style.display = 'none';         
    }else{        
        comments.style.display = 'block'; 
     } 
}