function showCommentForm() {
document.getElementById('addcommentdiv').style.display='';
document.getElementById('showcommentdiv').style.display='none'; }

function hideCommentForm() {
document.getElementById('addcommentdiv').style.display='none';
document.getElementById('showcommentdiv').style.display=''; }
