@edit
wrrr...
Mam kod:
I chce aby kod html lub tekst który znajduje się w elemencie o id = window był zawsze po środku ekranu.
@edit
Nie chodzi o okno które otwiera się jako nowe okno przeglądarki tylko o WARSTWĘ.
Dziękuję, Babcia@Stefa
<script type="text/javascript"> function centeredPopUp(pPage) { var iMyWidth; var iMyHeight; var wWidth = 500; var wHeight = 150; iMyWidth = (window.screen.width/2) - wWidth/2; iMyHeight = (window.screen.height/2) - wHeight/2; var win2 = window.open(pPage,"Window2","status=no,height=120,width=450,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=no"); win2.focus(); } </script>