	function hidediv3() {
		if (document.getElementById) { // DOM3 = IE5, NS6
			document.getElementById('subnav3').style.visibility = 'hidden';
		} 
	}
	
	function showdiv3() {
		if (document.getElementById) { // DOM3 = IE5, NS6
			document.getElementById('subnav3').style.visibility = 'visible';
		} 
	}