/* <rde-dm:attribute mode="write" attribute="rdeResponseMimetype" source="request" value="text/JavaScript" /> */
function toggleSection( toggleID )
{
	sectionDivObj = document.getElementById( toggleID );
	if (sectionDivObj != null) {
		currentDisplayStyle = sectionDivObj.style.display;
		if (currentDisplayStyle == 'block') {
			sectionDivObj.style.display = 'none';
		} else {
			sectionDivObj.style.display = 'block';
		}
	}
}
