ウィンドウ/サブウィンドウのサイズを変えるには

<html>
<head>
<title>Sample</title>
<script type="text/javascript"><!--
subWin = window.open("blank.html","sbwin","width=320,height=240");
function resizeWin()
{
resizeTo(512,384);
}
function resizeSubWin()
{
subWin.resizeTo(480,360);
}
// --></script>
</head>
<body>
ウィンドウ/サブウィンドウサイズを変更します。<br>
<form>
<input type="button" value="ウィンドウサイズを変更" onClick="resizeWin()"><br>
<input type="button" value="サブウィンドウサイズを変更" onClick="resizeSubWin()"><br>
</form>
</body>
</html>

●blank.html
<html>
<head>
<title>Sample</title>
</head>
<body>
サブウィンドウ
</body>
</html>

・サンプルを実行
・サンプルをダウンロード
逆引きクイックリファレンス JavaScript 説明などは本書を参考にしてください。