ff'in window.opener.window.close(); komutunu calistirmamasi ve msie'in screenX ozelligini tanimamasi sorununu cozemedim.
belki isine yarayabilir diye son halini yazayim:
Kod:
<script>
var win2 = window.open("window_popup2.HTML","foobar","width="+window.innerWidth+",height="+window.innerHeight+",menubar=yes,location=yes,resizable=no,scrollbars=yes,status=yes,toolbar=yes");
</script>
popup2.
HTML
Kod:
<script>
window.resizeTo(window.screen.width,window.screen.height);
window.outerWidth=window.screen.width;
window.outerHeight=window.screen.height;
window.screenX=0;
window.screenY=0;
window.opener.window.close();
</script>