// JavaScript Document
function langSwitch(lang) {
	var goPath;
	var pagePath=parent.document.location.href;
	
		if (lang=='eng') { //change to English version
			pagePath = pagePath.replace("_c.htm",".htm");
		}
		if (lang=='tch') { //change to traditional chinese version
			pagePath = pagePath.replace(".htm","_c.htm");

		}
		
	parent.document.location=pagePath;
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
