function openFlash(swf, w, h){
    window.open("/flash_lejatszo?f="+swf+"&w="+w+"&h="+h, "_blank", "width="+w+", height="+h);
}

function setMaxHeight(){
    var winW = 630, winH = 460;
    if (document.body && document.body.offsetWidth) {
     winW = document.body.offsetWidth;
     winH = document.body.offsetHeight;
    }
    if (document.compatMode=='CSS1Compat' &&
        document.documentElement &&
        document.documentElement.offsetWidth ) {
     winW = document.documentElement.offsetWidth;
     winH = document.documentElement.offsetHeight;
    }
    if (window.innerWidth && window.innerHeight) {
     winW = window.innerWidth;
     winH = window.innerHeight;
    }
    document.body.style.height = (winH-40)+'px'
}

window.onresize = window.onload = function(){
    //setMaxHeight();
}

