function pokazOferte(){
    //szer = szerokoscPrzgladarki();
    //margLef = ((szer - 900)/2)-8;
    $('oferta').style.display='block';
    $('przyciemnioneTlo').style.display='block';
    //document.body.style.overflow = "hidden";
}

function zamknijLightboxa(){
    $('oferta').style.display='none';
    $('przyciemnioneTlo').style.display='none'
    //document.body.style.overflow = "scroll";
}

function szerokoscPrzgladarki(){
var myWidth = 0;
if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
myWidth = document.documentElement.clientWidth;
} else if( document.documentElement && document.documentElement.clientWidth ) {
//IE 6+ in 'standards compliant mode'
myWidth = document.documentElement.clientWidth;
} else if( document.body && document.body.clientWidth ) {
//IE 4 compatible
myWidth = document.body.clientWidth;
}
return myWidth;
}

function wysokoscPrzegladarki() {
var myHeight = 0;
if( typeof( window.innerWidth ) == 'number' ) {
//Non-IE
myHeight = document.documentElement.clientHeight;
} else if( document.documentElement && document.documentElement.clientHeight ) {
//IE 6+ in 'standards compliant mode'
myHeight = documentElement.clientHeight;
} else if( document.body && document.body.clientHeight ) {
//IE 4 compatible
myHeight = document.body.clientHeight;
}
return myHeight;
}
