<html>
<head>
<title>Sample</title>
<script type="text/javascript"><!--
subWin = window.open("blank.html","sbwin","width=320,height=240");
// --></script>
</head>
<body>
ボタンを押すとサブウィンドウを閉じます。
<form>
<input type="button" value="サブウィンドウを閉じる" onClick="subWin.close()">
</form>
</body>
</html>
●blank.htmlファイル
<html>
<head>
<title>Sample</title>
</head>
<body>
サブウィンドウ
</body>
</html>