<!--//-- Generate a random number between 0 and max.  function randomNum(max) {    var rNum="NaN"    while (isNaN(rNum)) {      rNum=Math.floor(Math.random()*(max))    }    return rNum  }//Rotate PR Images with Unique URLs   var myPICS = new Array()    myPICS[0]="images/js/random/fuco_nitro.jpg"    myPICS[1]="images/js/random/whit_ibeam.jpg"     myPICS[2]="images/js/random/whit_resin.jpg"    myPICS[3]="images/js/random/katie_joe_measure.jpg"    myPICS[4]="images/js/random/christian_comp.jpg"    myPICS[5]="images/js/random/das_dma.jpg"    myPICS[6]="images/js/random/katie_drill.jpg"      var myLink = new Array()    myLink[0] = "previousphotos.html"    myLink[1] = "previousphotos.html"    myLink[2] = "previousphotos.html"    myLink[3] = "previousphotos.html"    myLink[4] = "previousphotos.html"    myLink[5] = "previousphotos.html"    myLink[6] = "previousphotos.html"       var myAlt = new Array()    myAlt[0] = "Fuco Cooling Resin Down w/ Liquid Nitrogen"    myAlt[1] = "I-beam Test"    myAlt[2] = "Weighing Resin"    myAlt[3] = "Saturation Thickness Test"    myAlt[4] = "Christian Measuring Viscosity"    myAlt[5] = "Das Using the DMA"    myAlt[6] = "Katie Drilling her project"      //randomNum has been defined    var prRand = randomNum(myPICS.length)    var //picsLine = "<a href='" + myLink[prRand] + "'>"    picsLine = "<img border=0 src='"  + myPICS[prRand] + "' "    picsLine += "alt='" + myAlt[prRand] + "' "    picsLine += "width=760 height=130>"    //-->