function getEl(id) {
	return document.getElementById(id);
}

function comment(id) {
	var hideBox = getEl('commentAdd'+id);
	var newBox = getEl('commentForm'+id);

	if (id > 0) {
		hideBox.style.display = 'none';
	}
	newBox.style.display = 'block';
}
