    // domyslna wartosc dla przesuniecia
    var modyfikator = 5;
    var poprawiaj_boczne = 0;
    
    var nowy_modyf = 0;
    var nowe_poprawiaj = 0;
    
    function popraw(){
        if(nowy_modyf && nowy_modyf>0)
            modyfikator = nowy_modyf;
        if(nowe_poprawiaj)
            poprawiaj_boczne = 1;
            
        if(!document.getElementById('__calosc').clientWidth )return true;
        
        if(poprawiaj_boczne) {
            f = document.documentElement.clientHeight - document.getElementById('__calosc').offsetTop-10;
            document.getElementById('_boczne').style.height = f+'px';
        }

        liczba = document.documentElement.clientWidth  - document.getElementById('_boczne').clientWidth  - modyfikator ;
        //alert(liczba);
        if(liczba>0)
            if(document.all){
				//if (document.getElementById('_prawa').style.display=='inline') {
					document.getElementById('_prawa').style.width = liczba;
					/*alert(1);
				} 
				if (document.getElementById('_wstawka').style.display=='inline') {
					document.getElementById('_wstawka').style.width = liczba;
					alert(2);
				}*/
            }
            else{
                //if (document.getElementById('_prawa').style.display=='inline') {
					document.getElementById('_prawa').style.width = liczba + 'px';
					/*alert(3);
				}
				if (document.getElementById('_wstawka').style.display=='inline') {
					document.getElementById('_wstawka').style.width = liczba + 'px';
					alert(4);
				}*/
        }
        window.onresize=popraw;
        return true;
    }

