サブウィンドウに文字や画像を書き出すには

<html>
<head>
<title>Sample</title>
<script type="text/javascript"><!--
subWin = window.open("blank.html","sbwin","width=320,height=240");
function writeSubWin(fObj)
{
txt = fObj.srcText.value;
subWin.document.open();
subWin.document.write("<hr>");
subWin.document.write(txt);
subWin.document.write("<hr>");
subWin.document.close();
}
// --></script>
</head>
<body>
ボタンを押すとサブウィンドウに文字を表示します。
<form>
<input type="text" value="書き出す文字を入れて" name="srcText"><br>
<input type="button" value="サブウィンドウに表示" onClick="writeSubWin(this.form)">
</form>
</body>
</html>

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

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