// JavaScript Document

var howMany = 7

var quote = new Array(howMany+1) 

quote[0]="Which conversion factors are used?"

quote[1]="Which markets are covered by PVM?"

quote[2]="Can I see an index overview (indexlist) of all indices?" 

quote[3]="Can I use PVM&rsquo;s data in any RM-Software?" 

quote[4]="Do you have a history of data to fill my database?" 

quote[5]="In which file format do you offer your data?"
quote[6]="Do you offer a holiday calendar?"
quote[7]="How many months ahead are covered?"


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)
