<!--
function selectLang()
{
    var idx = document.AuthenticationForm.selectLanguage.selectedIndex;
    if(document.AuthenticationForm.selectLanguage[idx].value != '')
    {
        var t1 =  window.location.search.substring(1);
        var langPage = 'index.php?lang=' + document.AuthenticationForm.selectLanguage[idx].value;
        self.location.href = langPage;
    }
}
-->
