// hide div function
function togglecomments(postid) {
	var whichpost = document.getElementById(postid);
	if (whichpost.className=="commentshown") { 
		whichpost.className="commenthidden"; 
	} else { 
		whichpost.className="commentshown"; 
	}
}

