var howMany = 7
  
  var quote = new Array(howMany+1) 
  
  quote[0]="<font class=quo>You are God's gift to indexing!</font><BR><font class=smtxt>-- M.T., editor of engineering and  specialized technical books</FONT>" 
  
  quote[1]="<font class=quo>You’re our Number 1 indexer!</font> <BR><font class=smtxt>-- M.S., editor at publisher of business books</FONT>" 
  
  quote[2]="<font class=quo>This  looks like a very strong index.</font><BR><font class=smtxt>-- N.B., editor of encyclopedia of inventors and entrepreneurs</FONT>" 
  
  quote[3]="<font class=quo>The author... couldn't stop raving about [the index] </font><BR><font class=smtxt>-- P.A., editor of books on stock market strategies.</FONT>" 
  
  quote[4]="<font class=quo>The authors told me that they were very pleased... <BR>one of the most thorough indexes they’ve ever seen.</font><BR><font class=smtxt>-- P.A., editor of books on stock market strategies. </FONT>" 
  
  quote[5]="<font class=quo>Index <u>EMERGENCY?</u></font><BR><font class=smtxt>Help is here! At WordCo we handle many rush projects each year.</font>" 
  
  quote[6]="<font class=quo>...It was as if you had a deep knowledge of the subject matter... <BR>by far the best index in all of [the author's] books.</font><BR><font class=smtxt>-- P.A., editor of books on stock market strategies.</FONT>" 

  quote[7]="<font class=quo>Thanks for your good work--the author was very happy with the index. And thanks for the great catches in your query list.</font><BR><font class=smtxt>-- N.O. </FONT>" 
 
  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) 