<html><head>
<script langulage="javascript">
function OpenNewWin(){
var newWin=window.open('','NewWindow','');
newWin.document.write('Hello, world');
newWin.document.close();
}
</script>
</head><body onLoad="OpenNewWin()">
OpenNewWin TEST
</body></html>

このスクリプトですが、IE6だとページを開くと同時に別のウインドウが
開くのですが、 NN7.1だと開きません。認証画面を別のウインドウに
出したいのですが、NNではどう対策すればいいのでしょうか?

<body onLoad="Alert('Hello')">はネスケでも効くんですけどね。