<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var howMany = 20
var quote = new Array(howMany+1)
quote[0]="<b>There was never a genius without a tincture of insanity.</b> <br>-- Aristotle"
quote[1]="<b>A man with a new idea is a crank until he succeeds.</b> <br>-- Mark Twain"
quote[2]="<b>An expert is a man who has made all the mistakes, which can be made, in a very narrow field.</b> <br>-- Niels Bohr"
quote[3]="<b>It requires a very unusual mind to undertake the analysis of the obvious.</b> <br>-- Alfred North Whitehead"
quote[4]="<b>It is through science that we prove, but through intuition that we discover.</b> <br>-- Henri Poincare"
quote[5]="<b>The reasonable man adapts himself to the world;<br>the unreasonable one persists in trying to adapt the world to himself.<br>Therefore all progress depends on the unreasonable man.</b> <br>-- George Bernard Shaw"
quote[6]="<b>For every complex problem, there is a solution that is simple, neat, and wrong.</b> <br>-- H. L. Mencken"
quote[7]="<b>You'll come to learn a great deal if you study the Insignificant in depth.</b> <br>-- Odysseus Elytis"
quote[8]="<b>My own suspicion is that the universe is not only stranger than we suppose, but stranger than we can suppose.</b> <br>-- John Haldane"
quote[9]="<b>Any sufficiently advanced technology is indistinguishable from magic.</b> <br>-- Arthur C. Clarke"
quote[10]="<b>Give me a place to stand, and I will move the Earth.</b> <br>-- Archimedes"
quote[11]="<b>The most beautiful thing we can experience is the mysterious. It is the source of all true art and science.</b> <br>-- Albert Einstein"
quote[12]="<b>We live in a society exquisitely dependent on science and technology, in which hardly anyone knows anything about science and technology.</b> <br>-- Carl Sagan"
quote[13]="<b>There is a theory which states that if ever anybody discovers exactly what the Universe is for and why it is here, it will instantly disappear and be replaced by something even more bizarre and inexplicable.<P>There is another theory which states that this has already happened.</b> <br>-- Douglas Adams"
quote[14]="<b>The crux... is that the vast majority of the mass of the universe seems to be missing.</b> <br>-- William J. Broad"
quote[15]="<b>Anyone who has never made a mistake has never tried anything new.</b> <br>-- Albert Einstein"
quote[16]="<b>Kook... Oddball... Madman... &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Genius... Visionary... Scientist!<p>We are all of these things, all of these and more, my friend.<br>The sting of antiseptic thought still lingers in your mind,<br>and yet you remain, willing to question, to consider...<p>Well, then, consider this: you know nothing.<p>You disagree? Very well, I'll prove it. Tell me anything,<br>recite for me any 'fact' to which you may cling so dearly,<br>and I will tear it as the wind tears a child's kite.<p>Do not be too upset by this. I also once believed that the earth was simply 'round'.<br>As you can see, it is not enough to go through Life merely 'knowing' things.<br>You must Understand the World Around You if you are to prosper.<p>Ah, you wish to learn more. Excellent. We shall begin immediately.<br>Do you see that broom? The laboratory needs sweeping...</b><ul><ul><ul><ul><ul><font size=+1>-- Dr. Dystopia</font></ul></ul></ul></ul></ul>"
quote[17]="<b>Science is but a perversion of itself unless it has as its ultimate goal the betterment of humanity.</b> <br>-- Nikola Tesla"
quote[18]="<b>In spite of the opinions of certain narrow-minded people who would shut up the human race upon this globe, we shall one day travel to the moon, the planets, and the stars with the same facility, rapidity and certainty as we now make the ocean voyage from Liverpool to New York.</b> <br>-- Jules Verne, 1865"
quote[19]="<b>Clarke's Law: 'When a distinguished elder scientist states something is impossible,<br>he is almost always wrong.'</b> <br>-- Arthur C. Clarke"
quote[20]="<b>I wish these calculations had been executed by steam.</b> <br>-- Charles Babbage"

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('<CENTER CLASS=RegTextSmall>')
document.write('<P>')
document.write('<table width="80%">')
document.write('<tr align=center>')
document.write('<td>')
document.write(quox)
document.write('</td>')
document.write('</tr>')
document.write('</table>')
document.write('<P>')
document.write('</CENTER>')
// End -->