<!-- Begin
var howMany = 2
var quote = new Array(howMany+1)
quote[0]="<img width=370 height=307 border=0 src='./images/hi_s.jpg' alt='The Hawaiian Islands viewed from NASAs MODIS sensor'>"
quote[1]="<img width=370 height=307 border=0 src='./images/hurr_linda.jpg' alt='Hurricane Linda'>"
quote[2]="<img width=370 height=307 border=0 src='./images/splash1.jpg' alt='Landsat Composite of Hawai&acute;i Island'>"

function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = quote[quo]
document.write(quox)
// End -->