﻿function fnESDTopNavMOver(obj) {
	obj.className = "menulink1over";
	obj.style.background = "url(/images/submenu2_over.jpg)";
	obj.style.cursor = "pointer";
	obj.style.cursor = "hand";
}

function fnESDTopNavMOut(obj) {
	obj.className = "menulink1";
	obj.style.background = "url(/images/submenu2_bg.jpg)";
}

function fnESDTopNavShowSub(strDivID) {
	var objSubMenu = document.getElementById(strDivID);
	objSubMenu.style.display = "";
}

function fnESDTopNavHideSub(strDivID) {
	var objSubMenu = document.getElementById(strDivID);
	objSubMenu.style.display = "none";
}

/*
function fnESDTopNavSwapLang(strTarget) {
	var strUrl = document.location.toString();
	
	if (strTarget == "e") {
		location.href = strUrl.replace("\/chi\/", "\/en\/");
	} else {
		location.href = strUrl.replace("/en/", "/chi/");
	}
}
*/

function fnESDTopNavNewTargetLink(strUrl) {
	var newWindow = window.open(strUrl, '_blank');
	newWindow.focus();
	return false;
}