function chinese() {
 url=window.location.href;
 urlString = url.split("eng/");
 toUrl = "../chi/"+urlString[urlString.length-1];
 window.location.href=toUrl;
 return false;
 }