
function checkLang()
{
    var lang = navigator.language || navigator.userLanguage;
        
    //alert(lang);
        
    if (lang.substr(0,2) == 'zh')
        window.location.replace('index_zh.html');
    else
        window.location.replace('index_en.html');
}

