<!-- TO INSTALL changeImage: --><!-- STEP ONE: Paste this code into the HEAD of your HTML document  --><!-- <script src="/includes/imagescript.js" language="javascript" type="text/javascript"></script> --><!-- STEP TWO: Use this code in the BODY of your HTML document --><!--	<a href="javascript:changeImage('imagefolder/image1.jpg')">Image 1</a>	--><!--	<a href="javascript:changeImage('imagefolder/image2.jpg')">Image 2</a>	--><!--	<img name="mainimage" src="imagefolder/default_image.jpg">	-->function changeImage(filename){	document.mainimage.src = filename;}<!-- </script> --> <!-- Free JavaScript provided by <a href="http://javascript.internet.com/miscellaneous/image-viewer.html">The JavaScript Source</a> --><!-- Update by Autograph Systems: add document. to main call for Netscape compatibility. -->
