var commentForm = $('commentForm');
if (commentForm != undefined) {
	commentForm.hide();
}

function showCommentForm() {
	if (commentForm != undefined) {
		commentForm.show();
		fh = $('formHeader')
		if (fh != undefined) {
			fh.id = 'normal';
		}
	}
}