サブウィンドウから親ウィンドウ内のページを変更するには

<html>
<head>
<title>Sample</title>
<script type="text/javascript"><!--
window.open("swctrl.html","sbwin","width=320,height=240");
// --></script>
</head>
<body>
サブウィンドウから、このウィンドウのURLを変更します。<br>
</body>
</html>

●swctrl.html
<html>
<head>
<title>Sample</title>
<script type="text/javascript"><!--
function setParentWinURL(jpURL)
{
window.opener.location.href = jpURL;
}
// --></script>
</head>
<body>
<form>
<input type="button" value="OpenSpaceのページを表示" onClick="setParentWinURL('http://www.openspc2.org/')"><br>
<input type="button" value="Googleのページを表示" onClick="setParentWinURL('http://www.google.co.jp/')"><br>
</form>
</body>
</html>

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