function toggleComments(elem) {
	var reactiesContainer = elem.parentNode.parentNode;
	if (nodeHasClass(reactiesContainer, 'gesloten')) {
		reactiesContainer.className = 'reactiesContainer geopend';
		setFocus(getElementsByTagNameFromStartNode('FORM', reactiesContainer)[0]);
	} else
		reactiesContainer.className = 'reactiesContainer gesloten';
}