function Wysokna(){
if( typeof( window.innerHeight ) == 'number' ) {
//Nie-IE
wysok = window.innerHeight;
} else if ( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
      if (typeof document.body.style.maxHeight != "undefined") {
      //obsługa 'min-max' = IE 7, mozilla, safari, opera 9
      popraw=0;
      } else {
       // IE6
       popraw=10;
      }
//IE6, IE7 'standard'
wysok = document.documentElement.clientHeight-popraw;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
//IE 4 
wysok = document.body.clientHeight;
}
///////
if (wysok>580){document.getElementById("gl").style.top=((wysok-580)/2)+"px";}

setTimeout("Wysokna()",1000);
}
