

<!-- This script selects a random picture -->

<!-- Begin
var howMany2 = 5
var pic = new Array(howMany+1)
pic[0]="profa.gif"
pic[1]="profb.gif"
pic[2]="profc.gif"
pic[3]="profd.gif"
pic[4]="profe.gif"
pic[5]="proff.gif"

function rndnumber2(){
var randscript2 = -1
while (randscript2 < 0 || randscript2 > howMany2 || isNaN(randscript2)){
randscript2 = parseInt(Math.random()*(howMany2 + 1))
}
return randscript2
}

