<!--
	function fnShowSubNav(iSubNavID, pParent){
		var pElement = document.getElementById("submenu"+iSubNavID);
		if(pElement){
			pElement.style.display = "";
			
			//alert(pParent.parentElement.parentElement.parentElement.parentElement.offsetLeft);
			
			pElement.style.left = pParent.offsetLeft+pParent.parentElement.parentElement.parentElement.offsetLeft+pParent.parentElement.parentElement.parentElement.parentElement.offsetLeft-20;
			pElement.style.top = 160;
		}
	}// fnShowSubNav
	function fnShowSubNavS(iSubNavID){
		var pElement = document.getElementById("submenu"+iSubNavID);
		if(pElement){
			pElement.style.display = "";
		}
	}// fnShowSubNavS
	function fnHideSubNav(iSubNavID){
		var pElement = document.getElementById("submenu"+iSubNavID);
		if(pElement){
			pElement.style.display="none";
		}
	}// fnHideSubNav
	
	function  photo_norm(pObject, iPhotoId){
		pObject.src = "images/photo_" + iPhotoId + ".jpg";
	}
			
	function  photo_gray(pObject, iPhotoId){
		pObject.src = "images/photo_" + iPhotoId + "_gray.gif";
	}
	
	function goUrl(dwURL){
		if(dwURL)
			window.location = dwURL;
	}
	
	function popUp(wname,wwidth,wheight) {
		var posX=Math.round((screen.width-wwidth)/2);
		var posY=Math.round((screen.height-wheight)/2);
		var posCode = "left="+posX+",top="+posY;
		var newwin = window.open("",wname,"toolbar=no,directories=no,menubar=no,scrollbars=yes,width=" + wwidth + ",height=" + wheight + ",resizable=no,"+posCode);//
	}
//-->