function isNewDesign() {
        return true;
        /*var parts = window.location.pathname.split('/');
        var ozz = new Array();
        ozz['austria'] = true;
        ozz['armenia'] = true;
        ozz['azerbaijan'] = true;
        ozz['belgium'] = true;
        ozz['bulgaria'] = true;
        ozz['canada'] = true;
        ozz['croatia'] = true;
        ozz['czechia'] = true;
        ozz['worldwide'] = true;
        ozz['denmark'] = true;
        ozz['england'] = true;
        ozz['estonia'] = true;
        ozz['finland'] = true;
        ozz['france'] = true;
        ozz['germany'] = true;
        ozz['greece'] = true;
        ozz['gulf'] = true;
        ozz['holland'] = true;
        ozz['hungary'] = true;
        ozz['ireland'] = true;
        ozz['israel'] = true;
        ozz['italy'] = true;
        ozz['latvia'] = true;
        ozz['lebanon'] = true;
        ozz['lithuania'] = true;
        ozz['macedonia'] = true;
        ozz['northamerica'] = true;
        ozz['norway'] = true;
        ozz['poland'] = true;
        ozz['romania'] = true;
        ozz['russia'] = true;
        ozz['serbia'] = true;
        ozz['slovakia'] = true;
        ozz['slovenia'] = true;
        ozz['spain'] = true;
        ozz['sweden'] = true;
        ozz['swiss'] = true;
        ozz['turkey'] = true;
        ozz['ukraine'] = true;
        if (ozz[parts[2]]) return true;
        return false;*/
    }

function isBrowserMSIE55(){
    var reg = "MSIE 5.5";
    //browName = navigator.appName;
    browVerze = String(navigator.appVersion);
    
    if (browVerze.match(reg)) {
        return true;
    } else {
        return false;
    }

}
