function toggle_display(idName) {
	var theElem = document.getElementById(idName);
	if(theElem.style.display != 'inline') {
		theElem.style.display = 'inline';
	} else {
		theElem.style.display = 'none';
	}
}
