// JavaScript Document


function showCommentsForm() {
	if (document.getElementById("CommentsFormContainer")) {
		document.getElementById("CommentsFormContainer").className = "show";
	}
}

function hideCommentsForm() {
	if (document.getElementById("CommentsFormContainer")) {
		document.getElementById("CommentsFormContainer").className = "hide";
	}
}