<!--
function ChangeLang(aLang)
{
    var filenName = document.location.href.substring(document.location.href.lastIndexOf('/') + 1);

    if (aLang == "EN")
    {
    
        document.location.href = "EN/" + filenName;
    }
    else
    {
        document.location.href = "../" + filenName;
    }
}
//-->