
// -------------------------------------------------------------------
// --- FUNCTION to SHOW/HIDE DIVs ---
// -------------------------------------------------------------------
	function toggleShowHide( tagID ) {
		//alert(id);
		ul = tagID;
		ulElement = document.getElementById( ul );
		if ( ulElement ) {
			if ( ulElement.className == 'closedBlock' ) {
				ulElement.className = "openBlock";
			} else {
				ulElement.className = "closedBlock";
			}
		}
	}
// -------------------------------------------------------------------


