Back to Scripts page
Click in the text area below, select all and copy to grab the script
Script listing:
<HTML> <HEAD> <TITLE>Random Image</TITLE> <SCRIPT LANGUAGE=JAVASCRIPT TYPE="TEXT/JAVASCRIPT"> <!-- Hide script from old browsers myPix = new Array("images/redBanner.gif","images/blueBanner.gif","images/greenBanner.gif") imgCt = myPix.length function choosePic() { if (document.images) { randomNum = Math.floor((Math.random() * imgCt)) document.myPicture.src = myPix[randomNum] } } // End hiding script from old browsers --> </SCRIPT> </HEAD> <BODY BGCOLOR=WHITE onLoad="choosePic()"> <IMG SRC="images/spacer.gif" WIDTH=400 HEIGHT=75 NAME="myPicture"> </BODY> </HTML>