function HideContent(d) {
document.getElementById(d).style.display = "none";
return false;
}
function ShowContent(d) {

document.getElementById(d).style.display = "block";
window.location.hash="comment"; 
return false;
}
