var curMenu;
curMenu=0;
var arrowOff = new Image();
arrowOff.src = "images/blank.gif";
function mHiLite(el)
	{
	if (el != curMenu)
		{
		document.getElementById('m'+ el + 'b').className="menuHiLight";
		}
	}
function mUnHiLite(el)
	{
	if (el != curMenu)
		{
		document.getElementById('m'+ el + 'b').className="menuNormal";
		}
	}
function getURL(url, location, name, parms)
	{
	if (Menu[url] != curMenu)
		{
			if (curMenu !=0) 
				{
				document.getElementById('m'+ curMenu + 'b').className="menuNormal";
				}
			mHiLite(Menu[url]);
			mUnHiLite(curMenu);
			curMenu = Menu[url];
			document.getElementById("Content").src =	 url;
			document.getElementById("PhotoImg").src =	 "images/" + Photo[url];
			if (location != "null") newWin=window.open(location, name, parms);
		}
	}
