


<!--
	//Browser Detection
	IE4 = (document.all) ? 1 : 0;
	NS4 = (document.layers) ? 1 : 0;
	ver4 = (IE4 || NS4) ? 1 : 0;
	secondM = "";
	secondML = ""; 
	//NS Resize Style Reset
	if (NS4) {
		origWidth = innerWidth;
		origHeight = innerHeight;
	}

	function reDo() {
		if (innerWidth != origWidth || innerHeight != origHeight) 
		location.reload();
	}
	if (NS4) onresize = reDo;
	
	//Layer based Rollovers
	if (ver4) {
		secondM = "<img src='img/menu_on.gif' width=128 height=361 usemap='#m_menu' border=0>";
		secondML = "<img src='img/menu_on.gif' width=128 height=361 border=0>";
 			mPopups = new Array();
 			bMPopups = new Array();
	}else { 
		secondM = "";
		secondML = ""; 
		}

	function setBeginEnd(which,wLeft,wTop,wRight,wBot) {
			mPopups[which] = new Array();
			mPopups[which][0] = wTop;
			mPopups[which][1] = wLeft;
			mPopups[which][2] = wBot;
			mPopups[which][3] = wRight;	
	}

	if (ver4) {
		// Left Menu
		setBeginEnd(2,6,1,60,55);
		setBeginEnd(3,5,121,121,175);
		setBeginEnd(4,67,1,121,55);
		setBeginEnd(5,6,181,60,235);
		setBeginEnd(6,6,240,60,294);
		setBeginEnd(7,6,61,60,115);
	}		

	function mapOver(which,on,inLayer,pLayer) {
		if (!ver4) { return }
		if (IE4) { 
			lStr = "document.all." + inLayer + "Over.style";
			whichEl = eval(lStr);
		}else { 
			theOLayer = inLayer + "Over";
			lStr = "document.base.document." + pLayer + ".document." + theOLayer;
			whichEl = eval(lStr); 
		}

		if (!on) { whichEl.visibility = "hidden"; return }
		
		clTop = mPopups[which][0];
		clLeft = mPopups[which][1];
		clBot = mPopups[which][2];
		clRight = mPopups[which][3];
					
		if (NS4) {
			whichEl.clip.top = clTop;
			whichEl.clip.left = clLeft;
			whichEl.clip.bottom = clBot;
			whichEl.clip.right = clRight;
		}
		else {
			whichEl.clip = "rect(" + clTop + "px " + clRight + "px " + clBot + "px " + clLeft + "px)";
		}

		whichEl.visibility = "visible";
	}
//-->

