<!--

	if (document.layers) {
		printLayers();
	}
	else if ((document.all) || (document.getElementById)) {
		printOther();
	}

	function printLayers() {

		var width = screen.width;
		width = width / 2 - 222;

		document.write('<layer id="menu1" position="absolute" top="87" left="' + width + '" width="309" height="262" visibility="hidden">');
		document.write('<table cellpadding="0" cellspacing="0" border="0"><tr><td colspan="3"><a href="#" onMouseOver="hideAll()"><img src="images/pixel.gif" width="267" height="40" alt="" border="0"></a></td></tr><tr><td><a href="#" onMouseOver="hideAll()"><img src="images/pixel.gif" width="40" height="262" alt="" border="0"></a></td><td><img src="images/menu.gif" usemap="#menu" border="0" width="187" height="262" alt=""></td><td><a href="#" onMouseOver="hideAll()"><img src="images/pixel.gif" width="40" height="262" alt="" border="0"></a></td></tr><tr><td colspan="3"><a href="#" onMouseOver="hideAll()"><img src="images/pixel.gif" width="267" height="40" alt="" border="0"></a></td></tr></table>');
		document.write('</layer>');
	}

	function printOther() {

		var width = screen.width;
		width = width / 2 - 222;

		document.write('<div id="menu1" style="position:absolute;left:' + width + ';top:87;width:309;height:262;visibility:hidden;">');
		document.write('<table cellpadding="0" cellspacing="0" border="0"><tr><td colspan="3"><a href="#" onMouseOver="hideAll()"><img src="images/pixel.gif" width="267" height="40" alt="" border="0"></a></td></tr><tr><td><a href="#" onMouseOver="hideAll()"><img src="images/pixel.gif" width="40" height="262" alt="" border="0"></a></td><td><img src="images/menu.gif" usemap="#menu" border="0" width="187" height="262" alt=""></td><td><a href="#" onMouseOver="hideAll()"><img src="images/pixel.gif" width="40" height="262" alt="" border="0"></a></td></tr><tr><td colspan="3"><a href="#" onMouseOver="hideAll()"><img src="images/pixel.gif" width="267" height="40" alt="" border="0"></a></td></tr></table>');
		document.write('</div>');
	}

	function showIt(menu) {

		hideAll();
		if (document.all) {
			document.all[menu].style.visibility = "visible";
		}
		else if (document.getElementById) {
			document.getElementById(menu).style.visibility = "visible";
		}
		else if (document.layers) {
			document.layers[menu].visibility = "visible";
		}
	}

	function hideAll() {
		if (document.all) {
			document.all.menu1.style.visibility = "hidden";
		}
		else if (document.getElementById) {
			document.getElementById('menu1').style.visibility = "hidden";
		}
		else if (document.layers) {
			document.layers.menu1.visibility = "hidden";
		}
	}

//-->