function viewComments(id) 
{
    document.getElementById(id).style.display = 'block';
}

function hideComments(id) 
{
    document.getElementById(id).style.display = 'none';
}