window.onload = hideCommentsDiv;
var cdiv;

function hideCommentsDiv() {
	var link = document.getElementById('showCommentsLink');
	cdiv = document.getElementById('CommentsDiv');
	if(cdiv != null) {
		cdiv.style.display = 'none';
	}
	if(link != null) {
		link.onclick = showCommentsDiv;
	}
}

function showCommentsDiv() {
	cdiv.style.display = 'block';
}