// JavaScript Document

function hiLite(divID) {
document.getElementById(divID).style.color = '#ff9000';}
function hiLiteOff(divID) {
document.getElementById(divID).style.color = '#067ab4';}

function showLangBoxUS() {
//document.getElementById('lang-box-us').style.display = 'block';
document.getElementById('lang-box-china').style.display = 'none';
}
function showLangBoxChina() {
document.getElementById('lang-box-china').style.display = 'block';
document.getElementById('lang-box-us').style.display = 'none';
}
function hideLangBox() {
document.getElementById('lang-box-us').style.display = 'none';
document.getElementById('lang-box-china').style.display = 'none';
}