// simple script to show comment form at the bottom of the page
function ShowCommentForm()
{
    var comment_div = document.getElementById('comment_div');
    comment_div.className = 'show';
}
