Почему указанный ниже скрипт открывает во всех браузерах окно в середине экрана, а в IE в верхнем левом углу?
     <script language="javascript">
        var xx=Math.round(screen.width/2-250);
        var yy=Math.round(screen.height/2-150); 
        wintip=window.open("",\'Tips\',\'location=no, height=300, width=500, toolbar=no, screenX=\'+xx+\', screenY=\'+yy);
        wintip.document.write(\'SUPER WINDOW\');
     </script>