//store the quotations in arrays
quotes = new Array(63);
quotes[0] = "The hardest thing in the world to understand is the income tax.";
quotes[1] = "Reality is merely an illusion, albeit a very persistent one.";
quotes[2] = "The only real valuable thing is intuition.";
quotes[3] = "I never think of the future. It comes soon enough.";
quotes[4] = "The eternal mystery of the world is its comprehensibility.";
quotes[5] = "Anyone who has never made a mistake has never tried anything new.";
quotes[6] = "Great spirits have always encountered violent opposition from mediocre minds.";
quotes[7] = "The whole of science is nothing more than a refinement of everyday thinking.";
quotes[8] = "Technological progress is like an axe in the hands of a pathological criminal.";
quotes[9] = "We can't solve problems by using the same kind of thinking we used when we created them.";
quotes[10] = "The important thing is not to stop questioning. Curiosity has its own reason for existing.";
quotes[11] = "Two things are infinite: the universe and human stupidity; and I'm not sure about the the universe.";
quotes[12] = "As far as the laws of mathematics refer to reality, they are not certain, as far as they are certain, they do not refer to reality.";
quotes[13] = "Whoever undertakes to set himself up as a judge of Truth and Knowledge is shipwrecked by the laughter of the gods.";
quotes[14] = "The most beautiful thing we can experience is the mysterious. It is the source of all true art and all science.";
quotes[15] = "Not everything that counts can be counted, and not everything that can be counted counts.";
quotes[16] = "When you sit with a nice girl for two hours, it seems like two minutes. When you sit on a hot stove for two minutes, it seems like two hours. That's relativity.";
quotes[17] = "As far as the laws of mathematics refer to reality, they are not certain; as far as they are certain, they do not refer to reality.";
quotes[18] = "If we knew what it was we were doing, it would not be called research, would it?";
quotes[19] = "If the facts don't fit the theory, change the facts.";
quotes[20] = "Sometimes one pays most for the things one gets for nothing.";
quotes[21] = "Everything should be made as simple as possible, but not simpler.";
quotes[22] = "The whole of science is nothing more than a refinement of everyday thinking.";
quotes[23] = "God does not care about our mathematical difficulties. He integrates empirically.";
quotes[24] = "Science is a wonderful thing if one does not have to earn one's living at it.";
quotes[25] = "Science without religion is lame, religion without science is blind.";
quotes[26] = "Do not worry about your problems with mathematics, I assure you mine are far greater.";
quotes[27] = "I maintain that cosmic religiousness is the strongest and most noble driving force of scientific research.";
quotes[28] = "The process of scientific discovery is, in effect, a continual flight from wonder.";
quotes[29] = "I have no particular talent. I am merely inquisitive.";
quotes[30] = "It's not that I'm so smart, it's just that I stay with problems longer.";
quotes[31] = "The only source of knowledge is experience.";
quotes[32] = "The pursuit of truth and beauty is a sphere of activity in which we are permitted to remain children all our lives.";
quotes[33] = "A hundred times every day I remind myself that my inner and outer life are based on the labors of others.";
quotes[34] = "It is the supreme art of the teacher to awaken joy in creative expression and knowledge.";
quotes[35] = "Teaching should be such that what is offered is perceived as a valuable gift and not as a hard duty.";
quotes[36] = "Joy in looking and comprehending is nature's most beautiful gift.";
quotes[37] = "Try not to become a man of success but rather to become a man of value.";
quotes[38] = "The only reason for time is so that everything doesn't happen at once.";
quotes[39] = "Weakness of attitude becomes weakness of character.";
quotes[40] = "A man should look for what is, and not for what he thinks should be.";
quotes[41] = "All these constructions and the laws connecting them can be arrived at by the principle of looking for the mathematically simplest concepts and the link between them.";
quotes[42] = "Concern for man and his fate must always form the chief interest of all technical endeavors. Never forget this in the midst of your diagrams and equations.";
quotes[43] = "I am enough of an artist to draw freely upon my imagination.";
quotes[44] = "I think and think for months and years. Ninety-nine times, the conclusion is false. The hundredth time I am right.";
quotes[45] = "Insanity: doing the same thing over and over again and expecting different results.";
quotes[46] = "Intellectuals solve problems, geniuses prevent them.";
quotes[47] = "It has become appallingly obvious that our technology has exceeded our humanity.";
quotes[48] = "Knowledge of what is does not open the door directly to what should be.";
quotes[49] = "Logic will get you from A to B. Imagination will take you everywhere.";
quotes[50] = "Look deep into nature, and then you will understand everything better.";
quotes[51] = "No amount of experimentation can ever prove me right; a single experiment can prove me wrong.";
quotes[52] = "Once we accept our limits, we go beyond them.";
quotes[53] = "Pure mathematics is, in its way, the poetry of logical ideas.";
quotes[54] = "Politics is for the present, but an equation is for eternity.";
quotes[55] = "Small is the number of people who see with their eyes and think with their minds.";
quotes[56] = "The difference between stupidity and genius is that genius has its limits.";
quotes[57] = "The distinction between the past, present and future is only a stubbornly persistent illusion.";
quotes[58] = "The grand aim of all science is to cover the greatest number of empirical facts by logical deduction from the smallest number of hypotheses or axioms.";
quotes[59] = "The monotony and solitude of a quiet life stimulates the creative mind.";
quotes[60] = "The more success the quantum theory has, the sillier it looks.";
quotes[61] = "You ask me if I keep a notebook to record my great ideas. I've only ever had one.";
quotes[62] = "You can never solve a problem on the level on which it was created.";
index = Math.floor(Math.random() * quotes.length);
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("</DL>\n");
