		function getPage(objName)
		{
			document.location.href=objName;
			return false;
		}
		
		function jumpPage()
		{
			if (document.layers)
			{
				myIndex = document.layers['theForm'].document.forms[0].elements[0].selectedIndex;
				myPage = document.layers['theForm'].document.forms[0].elements[0].options[myIndex].value;
			}
			else
			{
				myIndex = document.forms[0].elements[0].selectedIndex;
 				myPage = document.forms[0].elements[0].options[myIndex].value;
			}

			document.location.href=myPage;
			
			return false;

		}

		function openWindow(thePage, theWidth, theHeight)
		{
			myX=(screen.width - theWidth)/2;
			myY=(screen.availHeight - theHeight)/2;
			window.open(thePage,"mapWin","width=" + theWidth + ",height=" + theHeight + ",left=" + myX + ",top=" + myY);
			
			return false;
		}

		function getObject(imgName, layerName)
		{
			
			if (document.all || (navigator.userAgent.indexOf("Gecko", 0)) != -1)
			{
				// Internet Explorer

				return document.imgs[imgName];
				
			}
			else
			{
				
				// Other (Probably Netscape)
				return document.layers[layerName].document.imgs[imgName];
			}
				
			return false;
		}		
		
		function menuMOver(imgName)
		{
			onSrc = "imgs/" + imgName + "_ovr.gif";
			
			imgObj = getObject(imgName, "mainContent");
		
			imgObj.src = onSrc;
							
			return false;
		}

		function menuMOut(imgName, folderName, layerName)
		{
			offSrc = "imgs/" + imgName + "_off.gif";
			
			imgObj = getObject(imgName, "mainContent");
		
			imgObj.src = offSrc;				

			return false;
		}
					
