function showLangs() {
    return false;
    document.getElementById('otherLangs').style.display = 'inline';
}

function hideLangs2() {
    return false;
    document.getElementById('otherLangs').style.display = 'none';
}


function hideLangs() {
    return false;
    setTimeout("hideLangs2();", 1000);
}

