		//<![CDATA[	
			
			function showMe(layer_ref, pixLeft, pixTop) {
				state = 'inline';

				if (document.all) { //IS IE 4 or 5 (or 6 beta)
					eval( "document.all." + layer_ref + ".style.display = state");
					eval( "document.all." + layer_ref + ".style.marginLeft = pixLeft");
					eval( "document.all." + layer_ref + ".style.marginTop = pixTop");
				}
				if (document.layers) { //IS NETSCAPE 4 or below
					document.layers[layer_ref].display = state;
					document.layers[layer_ref].marginLeft = pixLeft;
					document.layers[layer_ref].marginTop = pixTop;
				}
				if (document.getElementById &&!document.all) {
					hza = document.getElementById(layer_ref);
					hza.style.display = state;
					hza.style.marginLeft = pixLeft;
					hza.style.marginTop = pixTop;
				}
			}

			function hideMe(layer_ref) {
				hideState = 'none';
				
				if (document.all) { //IS IE 4 or 5 (or 6 beta)
					eval( "document.all." + layer_ref + ".style.display = hideState");
					eval( "document.all." + layer_ref + ".style.marginLeft = 0");
					eval( "document.all." + layer_ref + ".style.marginTop = 0");
				}
				if (document.layers) { //IS NETSCAPE 4 or below
					document.layers[layer_ref].display = hideState;
					document.layers[layer_ref].marginLeft = "0";
					document.layers[layer_ref].marginTop = "0";
				}
				if (document.getElementById &&!document.all) {
					hza = document.getElementById(layer_ref);
					hza.style.display = hideState;
					hza.style.marginLeft = "0";
					hza.style.marginTop = "0";
				}
			}
		//]]>
