	function toggleDisplay(theID) {
		theObj = document.getElementById(theID);
		if (theObj.style.display == 'block') {
			theObj.style.display = 'none'
		}
		else {
			theObj.style.display = 'block'
		}
	}

