Код: Выделить всё
NewWin=window.opener.open(... много всего...);
Код: Выделить всё
...
NewWin.moveTo(Math.min(screen.width/2+100, screen.width/0.4), 10);
NewWin.resizeTo(Math.max(400, screen.width/4), 350);
NewWin.document.open();
NewWin.document.write('... ну... понятно....');
NewWin.document.location=".... тоже понятно....";
...
Заранее благодарбю за помощь.