//get the current path
path=window.location.pathname; 

//If the upper directory is a language - remove it
slash_position=path.indexOf('/',1);
if (slash_position!=-1) {if ("chinese german spanish french italian japanese hungarian portuguese slovene".indexOf(path.substr(1,slash_position-1))!=-1) path=path.substr(slash_position)}

//Remove _gb and _big5 for chinese source pages
path=path.replace(/_gb.htm/i,".htm");
path=path.replace(/_big5.htm/i,".htm");

// Add _gb and _big5 for the chinese links. If there is no filename, add index.html or /index.html
if (path.indexOf('.')==-1) {if (path.substr(path.length-1)=="/") {path_chinese=path+"index.html"} else {path_chinese=path+"/index.html"}} else {path_chinese=path};
dot_loc=path_chinese.indexOf(".")
path_gb=path_chinese.substr(0,dot_loc)+"_gb"+path_chinese.substr(dot_loc);
path_big5=path_chinese.substr(0,dot_loc)+"_big5"+path_chinese.substr(dot_loc);

document.write(' <img src="/pics/langmap10.gif" usemap="#language" WIDTH=468 HEIGHT=60 BORDER=0 align="top" alt="Click to switch to your favourite language" ><MAP NAME="language"><AREA SHAPE=RECT COORDS="100,5,163,30" HREF="/chinese'+path_gb+'" ALT="Chinese GB"  target="_top"><AREA SHAPE=RECT COORDS="164,5,202,30" HREF="/chinese'+path_big5+'" ALT="Chinese Big5"  target="_top"><AREA SHAPE=RECT COORDS="203,5,258,30" href="/german'+path+'" ALT="Deutsch" target="_top"><AREA SHAPE=RECT COORDS="259,5,309,30" HREF="'+path+'" ALT="English" target="_top"><AREA SHAPE=RECT COORDS="310,5,365,30" HREF="/spanish'+path+'" ALT="Espa&ntilde;ol" target="_top"><AREA SHAPE=RECT COORDS="91,31,154,255" href="/french'+path+'" ALT="Fran&ccedil;ais" target="_top"><AREA SHAPE=RECT COORDS="159,31,207,55" href="/italian'+path+'" ALT="Italian" target="_top"><AREA SHAPE=RECT COORDS="210,31,249,55" HREF="/japanese'+path+'" ALT="Japanese" target="_top"><AREA SHAPE=RECT COORDS="252,31,302,55" HREF="/hungarian'+path+'" ALT="Magyar" target="_top">  <AREA SHAPE=RECT COORDS="304,31,369,55" HREF="/portuguese'+path+'" ALT="Português" target="_top">  </MAP>');