Back to Scripts page
Click in the text area below, select all and copy to grab the script
Script listing:
<HTML> <HEAD> <TITLE>Window Placement</TITLE> <SCRIPT LANGUAGE=JAVASCRIPT TYPE="TEXT/JAVASCRIPT"> <!-- Hide script from old browsers leftPos = 0 if (screen) { leftPos = screen.width-225 } newWindow = window.open('cpanel.html', 'newWin', 'width=225,height=200,left='+leftPos+',top=0') // End hiding script from old browsers --> </SCRIPT> </HEAD> <BODY BGCOLOR=WHITE> <CENTER> <H1>JavaScript for the World Wide Web, 3rd Edition</H1> <H2>by Tom Negrino and Dori Smith</H2> <IMG SRC="js3-sm.gif" WIDTH=109 HEIGHT=140> </CENTER> </BODY> </HTML>