Back to Scripts page
Click in the box below, select all and copy to grab the script
<HTML> <HEAD> <TITLE>Front 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. mapWindow = window.open('barnum.gif', 'mapWin', 'toolbar=yes,scrollbars=yes,width=300,height=300') directionsWindow = window.open('window12a.html', 'pageWin', 'width=225,height=200') function mapToFront() { mapWindow.focus() } function directionsToFront() { directionsWindow.focus() } // End hiding script from old browsers --> </SCRIPT> </HEAD> <BODY BGCOLOR=WHITE> <CENTER><H1>LAMG General Meeting</H1> <H3>Featuring (again) the fabulous Tom and Dori show</H3> <A HREF="javascript:mapToFront()">Look at the map</a> <A HREF="javascript:directionsToFront()">Look at the directions</a> </CENTER> </BODY> </HTML>