Back to Scripts page
Click in the box below, select all and copy to grab the script
<HTML> <HEAD> <TITLE>Child Window</TITLE> <SCRIPT LANGUAGE=JAVASCRIPT> <!-- Hide script from old browsers // This script copyright 1997, Tom Negrino and Dori Smith. // This script is from "JavaScript for the WWW, Visual QuickStart Guide, 2nd Ed." // For more information, see <http://www.chalcedony.com/javascript/>. // This script may be used and modified, but the copyright notice must remain intact. function updateParent(newURL) { opener.document.location = newURL } // End hiding script from old browsers --> </SCRIPT> </HEAD> <BODY BGCOLOR=WHITE> <CENTER><H1>Control Panel</H1> <H3><A HREF="javascript:updateParent('toc.html')">Table of Contents</A><BR> <A HREF="javascript:updateParent('chapter.html')">Sample Chapter</A><BR> <A HREF="javascript:updateParent('authors.html')">About the Authors</A><BR> <A HREF="javascript:updateParent('buy.html')">Buy the book!</A></H3> </CENTER> </BODY> </HTML>