<!-- Begin
var howMany = 4
var quote = new Array(howMany+1)
quote[0]="&quot;A wonderful place to play in the gravitational fields of the Lord.&quot;<br><i>&#151;Robin Williams</i>"
quote[1]="&quot;I have found the Exploratorium, on my many visits there, to be a wonderful and unique experience.&quot;<br><i>&#151;Phyllis C. Wattis</i>"
quote[2]="&quot;Supporting the Exploratorium is a wonderful way for me to share my fascination with science.&quot;<br><i>&#151;Alejandro Zaffaroni, Founder and Co-Chairman, ALZA Corporation</i>"
quote[3]="&quot;There are two great models for great American amusement centers...Disneyland and the Exploratorium. This place feeds all the senses.&quot;<br><i>&#151;Newsweek</i>"
quote[4]="&quot;The Exploratorium is an investment in all our futures.&quot;<br><i>&#151;Andrew S. Grove, Chairman, Intel Corporation</i>"


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)
// End -->
