var quotes = new Array (
"Science without religion is lame, religion without science is blind.",
"To be without some of the things you want is an indispensable part of happiness.",
"Be the change you want to see in the world.",
"Hate the sin and love the sinner.",
"The worst sinner has a future, even as the greatest saint has had a past.<br>No one is so good or so bad as he imagines.",
"God exists since mathematics is consistent,<br>and the Devil exists since we cannot prove it.",
"When in doubt, tell the truth.",
"Courage is resistance to fear, mastery of fear - not absence of fear.",
"Of all the animals, man is the only one that is cruel.<br>He is the only one that inflicts pain for the pleasure of doing it.",
"Where prejudice exists it always discolors our thoughts.",
"A life spent making mistakes is not only more honorable<br>but more useful than a life spent doing nothing.",
"If I were to select a research problem without regard to scientific feasibility,<br>it would be ... how to persuade human beings to design and play games that all can win.",
"In a stupid nation the man of genius becomes a god:<br>everybody worships him and nobody does his will.",
"The goal may be distant, but arise, awake and stop not till the goal is reached.",
"Complex models are rarely useful (unless for those writing their dissertations).",
"Our doubts are traitors,<br>And make us lose the good we oft might win<br>By fearing to attempt.",
"Life is a thing you do<br>Now or never -- which do you?",
"It is not knowledge, but the act of learning, not possesion but the act of getting there,<br>which grants the greatest enjoyment.",
"धीरे धीरे रे मना, धीरे सब कुछ होय | <br> माली सींचे सौ घड़ा ऋतु आए फल होय ||",
"A journey of a thousand miles starts from where one stands."
);

var authors = new Array (
"Albert Einstein",
"Bertrand Russell",
"Mahatma Gandhi",
"Mahatma Gandhi",
"Sarvepalli Radhakrishnan",
"Andre Weil",
"Mark Twain",
"Mark Twain",
"Mark Twain",
"Mark Twain",
"George Bernard Shaw",
"Herbert Simon",
"George Bernard Shaw",
"Swami Vivekananda",
"V. I. Arnold",
"William Shakespeare",
"Piet Hein",
"Carl Friedrich Gauss",
"सन्त कबीर",
"Lao Tzu"
);

var index = Math.floor(Math.random()*quotes.length);
//var index = quotes.length-1;
document.writeln("<center><table>");
document.writeln("<tr><td width=\"100%\">");
document.writeln("<i>"+quotes[index]+"</i>");
document.writeln("</td></tr><tr><td width=\"100%\" align=\"right\">");
document.writeln("--&nbsp;"+authors[index]);
document.writeln("</td></tr></table></center>");
