// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] ="string theory is a part of 21st-century physics that fell by chance into the 20th century.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Edward Witten ";
Quotation[1] ="A technique succeeds in mathematical physics, not by a clever trick, or a happy accident, but because it expresses some aspect of a physical truth.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Sutton";
Quotation[2] ="For whatever a man may do, he does it in order to annihilate time, in order to revoke it, and that revocation is called space.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Hermann Broch";
Quotation[3] ="I do not like it, and I am sorry I ever had anything to do with it.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Erwin Schrödinger, (speaking of quantum mechanics).";
Quotation[4] ="Those who are not shocked when they first come across quantum mechanics cannot possibly have understood it.<img src=\"./images/quotes_right.gif\"><br/><div class=\"right\"> -Niels Bohr";
Quotation[5] ="God does not play dice with the cosmos.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Albert Einstein";
Quotation[6] ="Who are you to tell God what to do?<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Niels Bohr (in response to Einstein)";
Quotation[7] ="I think it is safe to say that no one understands quantum mechanics.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Richard Feynman";
Quotation[8] ="It's always fun to learn something new about quantum mechanics.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Benjamin Schumacher"; 
Quotation[9] ="If that turns out to be true, I'll quit physics.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Max von Laue, Nobel Laureate 1914, (of de Broglie's thesis on electrons having wave properties.)";
Quotation[10] ="Anyone wanting to discuss a quantum mechanical problem had better understand and learn to apply quantum mechanics to that problem.<img src=\"./images/quotes_right.gif\"><br/><div class=\"right\"> -Willis Lamb, Nobel Laureate 1955";
Quotation[11] ="If I have seen further, it is by standing on the shoudlers of giants.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Isaac Newton";
Quotation[12] ="The theory appeared to me then, and still does, the greatest feat of human thinking about nature, the most amazing combination of philosophical penetration, physical intuition, and mathematical skill. But its connections with experience were slender. It appealed to me like a great work of art, to be enjoyed and admired from a distance.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Max Born (speaking about General Relativity)";
Quotation[13] ="In science, 'fact' can only mean 'confirmed to such a degree that it would be perverse to withhold provisional assent.' I suppose that apples might start to rise tomorrow, but the possibility does not merit equal time in physics classrooms.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Stephen Jay Gould (1941-2002)";
Quotation[14] ="It's because somebody knows something about it that we can't talk about physics. It's the things that nobody knows anything about we can discuss.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Richard Feynman (1918 - 1988)";
Quotation[15] ="It is impossible to trap modern physics into predicting anything with perfect determinism because it deals with probabilities from the outset.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Sir Arthur Eddington (1882 - 1944)";
Quotation[16] ="The whole of science is nothing more than a refinement of everyday thinking.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Albert Einstein (1879 - 1955)";
Quotation[17] ="A consistent pursuit of classical physics forces a transformation in the very heart of that physics.<img src=\"./images/quotes_right.gif\"> <br/><div class=\"right\"> -Werner Heisenberg, (Philosophical Problems of Nuclear Science, New York: Fawcett 1966, p.13)";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
