// JavaScript Document
var howMany = 4
var quote = new Array(howMany+1) 
quote[0]="You can rely on PVM Data Services to make your job easier."
quote[1]="You can rely on PVM Data Services to make your job easier."
quote[2]="You can rely on PVM Data Services to make your job easier." 
quote[3]="You can rely on PVM Data Services to make your job easier." 
quote[4]="You can rely on PVM Data Services to make your job easier." 

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) 

