function openShowroom(lang) {
    
    if(lang == 'en') {
        var url = 'http://www.v-showroom.com/8200488/productgroup/';
    } else {
        var url = 'http://www.v-showroom.com/de/8200488/productgroup/';
    }
    
    var height = 580;
    var width = 780;
    var top = ((screen.availHeight)/2 -height/2);
    var left = ((screen.width)-width)-20;

    showroomWindow = window.open(url, "showroomWindow", "resizable=no,location=no,scrollbars=no,width="+width+",height="+height+",left="+left+",top="+top);
    showroomWindow.focus();
}



function openPopUp(url) {
    
    var sheight = 750;
    var swidth = 1000;
    var stop = ((screen.availHeight)/2 -sheight/2);
    var sleft = ((screen.width)-swidth)-20;

    spopupWindow = window.open(url, "spopup", "resizable=yes,location=yes,scrollbars=yes,width="+swidth+",height="+sheight+",left="+sleft+",top="+stop);
    spopupWindow.focus();
}