function switchLanguage(sDistPrefix) {
    var path = window.location.href.toLowerCase();
    window.location.href = path.replace(/\/(en|cn)(?=\/|$)/i, "/" + sDistPrefix);
}
