function toggleThis(objName) {
	// Toggle element
	var which = document.getElementById(objName);
	which.style.display = (which.style.display != 'none' ? 'none' : '' );
	if (which.style.display != 'none') {
		// Open the Section
		which.style.display = 'block';
	}
	else {
		// Close the Section
		which.style.display = 'none';
	}
}




