if(typeof(curLang) == 'undefined'){
    var curLang = 'en';
}
var thisPage = window.location.pathname;
var ap = thisPage.split('/');
var pn = ap[ap.length-1];
if (pn == ''){  //default
    pn = 'index.html';
}

var nextPage = '';
if (pn.indexOf('list.asp') >= 0){
    if(curLang == 'chi'){
        nextPage = window.location.href.replace('lang=c', 'lang=e');
    }else{
        nextPage = window.location.href.replace('lang=e', 'lang=c');
    }
}else{
    if(curLang == 'chi'){
        nextPage = pn.replace('_chi', '');
    }else{
        nextPage = pn.replace('index', 'index_chi');
    }
}



var nextLink, homeLink, homeText;
if(curLang == 'chi'){
    nextLink = '<a href="' +nextPage + '">English</a>';
    homeLink = 'index_chi.html';
    homeText = '­º­¶';
}else{
    nextLink = '<a href="' +nextPage +'">¤¤¤å</a>';
    homeLink = 'index.html';
    homeText = 'Home';
}


document.write('  <tr>');
document.write('    <td background="images/index_01.jpg"><table width="300" border="0" align="right" cellpadding="0" cellspacing="0">');
document.write('      <tr>');
document.write('        <td width="171" rowspan="2"><img src="images/shim.gif" width="1" height="99" /></td>');
document.write('        <td width="129" height="77" valign="bottom"><font color="#000000" class="contBlod"><font size="2"><a href="'+homeLink +'">' + homeText+ '</a>¢x' +nextLink + '</font></font></td>');
document.write('      </tr>');
document.write('      <tr>');
document.write('        <td><img src="images/shim.gif" width="1" height="20" /></td>');
document.write('      </tr>');
document.write('    </table></td>');
document.write('  </tr>');