
function showAddComment(formId) {
	
	if ($(formId)) {
		$(formId).style.display = 'block';
	}	
}

function showEditComment(commentId) {
	
	$('comment' + commentId).style.display = 'none';
	$('editCommentForm' + commentId).style.display = 'block';
	
}