<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
var howMany = 9
var quote = new Array(howMany+1)
quote[0]="<b>The abdomen, the chest, and the brain will forever be shut from the intrusion of the wise and humane surgeon.</b> <br>-- Sir John Eric Ericksen, British surgeon, appointed Surgeon-Extraordinary to Queen Victoria 1873."
quote[1]="<b>Heavier-than-air flying machines are impossible.</b> <br>-- Lord Kelvin, president, Royal Society, 1895."
quote[2]="<b>Professor Goddard does not know the relation between action and reaction and the need to have something better than a vacuum against which to react. He seems to lack the basic knowledge ladled out daily in high schools.</b> <br>-- 1921 New York Times editorial about Robert Goddard's revolutionary rocket work."
quote[3]="<b>Everything that can be invented has been invented.</b><br>-- Charles H. Duell, Commissioner, U.S. Office of Patents, 1899."
quote[4]="<b>Louis Pasteur's theory of germs is ridiculous fiction.</b><br>-- Pierre Pachet, Professor of Physiology at Toulouse, 1872."
quote[5]="<b>This 'telephone' has too many shortcomings to be seriously considered as a means of communication.<br>The device is inherently of no value to us.</b> <br>-- Western Union internal memo, 1876."
quote[6]="<b>Man will never reach the moon regardless of all future scientific advances.</b><br>-- Dr. Lee De Forest, inventor of the vacuum tube and father of television."
quote[7]="<b>The present generation will not [fly], and no practical engineer would devote himself to the problem now.</b> <br>-- Worby Beaumont, 1900."
quote[8]="<b>Men might as well project a voyage to the Moon<br>as attempt to employ steam navigation against the stormy North Atlantic Ocean.</b> <br>-- Dr. Dionysus Lardner (1793-1859), Professor of Natural Philosophy and Astronomy at University College, London."
quote[9]="<b>What can be more palpably absurd than the prospect held out of locomotives,<br>traveling twice as fast as stagecoaches?</b> <br>-- The Quarterly Review, England (March 1825)"

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 -->