	switchDiv = function(o) {
	
		// has the browser DOM support?
		if (!document.getElementById) return;
		var div = document.getElementById(o); // get object of DOM
		var display = div.style.display; // to switch the display

		if (display == 'block')	div.style.display = 'none';
		else div.style.display = 'block';
	}