function switchLanguage(lang) {
        u = location.href.split('/');
        u[3] = lang;
        location.href = u.join('/');
    }
