function losuj_pozycje(div_id) { var myWidth = 0, myHeight = 0, poz_x=5, poz_y=5; 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; } if (myWidth>410) { poz_x=Math.random(); } if (myHeight>150) { poz_y=Math.random(); } poz_x=poz_x*(myWidth-410); poz_y=poz_y*(myHeight-150); document.getElementById(div_id).style.marginTop=poz_y+"px"; document.getElementById(div_id).style.marginLeft=poz_x+"px"; setTimeout('losuj_pozycje("'+div_id+'")', 10000); }