// switch language
function switchlang() {
 var loc = window.location + "";
 if (loc.indexOf("/eng/")>0)
    loc = loc.replace("/eng/","/chi/");
 else if (loc.indexOf("/chi/")>0)
    loc = loc.replace("/chi/","/eng/"); 
 window.location = loc;
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function OpenWindows(){
   newWIN=window.open("","","height=200,width=400")
   newWIN.document.write("<HTML><HEAD><TITLE>WINDOW TEST</TITLE></HEAD>")
   newWIN.document.write("<BODY>TEST</BODY></HTML>")
   newWIN.document.close()
   }


