function pozycjonuj(){

  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
  
  /* Zmiana wysokości ramka_srodek i top stopka jablko */
  h=document.getElementById('kontent').offsetHeight;
  
  wys_ramka_gora=document.getElementById('ramka_gora').offsetHeight;
  top_ramka_gora=document.getElementById('ramka_gora').offsetTop;

  top_ramka_srodek=wys_ramka_gora+top_ramka_gora;

  document.getElementById('ramka_srodek').style.height=h+"px";
  document.getElementById('ramka_srodek').style.top=top_ramka_srodek+"px";
  //document.getElementById('biale_tlo_srodek').style.height=h+"px";
  
  document.getElementById('ramka_dol').style.top=h+top_ramka_srodek+"px";
  
  //document.getElementById('biale_tlo_dol').style.top=h+top_ramka_srodek+"px";
  
  wys_stopka=document.getElementById('stopka').offsetHeight;
  wys_wino=document.getElementById('wino').offsetHeight;
  wys_ramka_dol=document.getElementById('ramka_dol').offsetHeight;
  wys_strona=h+top_ramka_srodek+wys_ramka_dol-40;
  wys_okno = myHeight-wys_stopka;
  wys_max=Math.max(wys_okno, wys_strona, wys_wino)
  
  document.getElementById('stopka').style.top="";
  document.getElementById('stopka').style.bottom=0+"px";
  document.getElementById('jablko').style.top="";
  document.getElementById('jablko').style.bottom=0+"px";
  document.getElementById('cala_strona').style.height=wys_max+wys_stopka+"px";
  
 
  
  /* START Zmiana polozenia WIDTH elementow: */
  widthGranica=1120;
  widthGranica05=widthGranica*0.5;
  myWidth05=myWidth*0.5;  
  widthTytul=document.getElementById('tytul').offsetWidth; 
  if (myWidth>widthGranica) {
    /* cala_strona */
    widthCalaStrona=widthGranica-2;
    widthCalaStrona05=widthCalaStrona*0.5;
    document.getElementById('cala_strona').style.width=widthCalaStrona+"px";
    document.getElementById('cala_strona').style.left=myWidth05-widthCalaStrona05+"px";
  }   else if (widthTytul<myWidth && myWidth<=widthGranica) {
    widthCalaStrona=myWidth-2;
    widthCalaStrona05=widthCalaStrona*0.5;
    document.getElementById('cala_strona').style.width=widthCalaStrona+"px";
    document.getElementById('cala_strona').style.left=0+"px";
  }   else if (myWidth<=widthTytul) {
    widthCalaStrona=widthTytul-2;
    widthCalaStrona05=widthCalaStrona*0.5;
    document.getElementById('cala_strona').style.width=widthCalaStrona+"px";
    document.getElementById('cala_strona').style.left=0+"px";
  }


    /* Tytuł: */
    widthElement05=document.getElementById('tytul').offsetWidth*0.5;
    document.getElementById('tytul').style.left=widthCalaStrona05-widthElement05+"px";
    /* menu */
    widthElement05=document.getElementById('menu').offsetWidth*0.5;
    document.getElementById('menu').style.left=widthCalaStrona05-widthElement05+"px";
    /* ramka_gora */
    //widthElement05=document.getElementById('biale_tlo_gora').offsetWidth*0.5;
    //document.getElementById('biale_tlo_gora').style.left=widthCalaStrona05-widthElement05+"px";
    widthElement05=document.getElementById('ramka_gora').offsetWidth*0.5;
    document.getElementById('ramka_gora').style.left=widthCalaStrona05-widthElement05+"px";
    /* ramka_srodek */
    //widthRamkaSrodek05=document.getElementById('biale_tlo_srodek').offsetWidth*0.5;
    //document.getElementById('biale_tlo_srodek').style.left=widthCalaStrona05-widthRamkaSrodek05+"px";
    widthRamkaSrodek05=document.getElementById('ramka_srodek').offsetWidth*0.5;
    document.getElementById('ramka_srodek').style.left=widthCalaStrona05-widthRamkaSrodek05+"px";
    /* kontent */
    widthElement05=document.getElementById('kontent').offsetWidth*0.5;
    document.getElementById('kontent').style.left=widthRamkaSrodek05-widthElement05+"px";
    /* ramka_dol */
    //widthElement05=document.getElementById('biale_tlo_dol').offsetWidth*0.5;
    //document.getElementById('biale_tlo_dol').style.left=widthCalaStrona05-widthElement05+"px";
    widthElement05=document.getElementById('ramka_dol').offsetWidth*0.5;
    document.getElementById('ramka_dol').style.left=widthCalaStrona05-widthElement05+"px";
    /* stopka */
    widthElement05=document.getElementById('stopka').offsetWidth*0.5;
    document.getElementById('stopka').style.left=widthCalaStrona05-widthElement05+"px";
    /* jablko */
    document.getElementById('jablko').style.left="";
    document.getElementById('jablko').style.right=0+"px";
    /* wino */
    document.getElementById('wino').style.left=0+"px";
      /*
    if (widthCalaStrona>1100) {
      document.getElementById('wino').style.left=0+"px";
    } else {
      leftElement05=(widthCalaStrona-1100)*0.5;
      document.getElementById('wino').style.left=leftElement05+"px";
    }
    /*preloader*/
    //document.getElementById('preloader').style.visibility="hidden";    
    //document.getElementById('cala_strona').style.visibility="visible";
}


onload=pozycjonuj
onresize=pozycjonuj

