Back to Scripts page
Click in the box below, select all and copy to grab the script
<HTML> <HEAD> <TITLE>Image Test</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. if (document.images) { arrowRed = new Image arrowBlue = new Image arrowRed.src = 'redArrow.gif' arrowBlue.src = 'blueArrow.gif' } else { arrowRed = "" arrowBlue = "" document.arrow = "" } // End hiding script from old browsers --> </SCRIPT> </HEAD> <BODY BGCOLOR="WHITE"> <A HREF="next.html" onmouseover="document.arrow.src=arrowRed.src" onmouseout="document.arrow.src=arrowBlue.src"><H1>Next page</H1></A><BR> <IMG SRC="blueArrow.gif" WIDTH="147" HEIGHT="82" NAME="arrow"> </BODY> </HTML>