<!-- Original:  George Chuang -->



<!-- Begin
theDate= new Date();
var day = theDate.getDate();
var textdate = (theDate.getMonth() + 1) + '/' + theDate.getDate() + '/' + theDate.getYear();

var numquotes = 31;
var numnames = 31;
quotes = new Array(numquotes+1);
names = new Array(numnames+1);
quotes[1] = "A people that values its privileges above its principles soon loses both.";
names[1] = "Dwight D. Eisenhower";
quotes[2] = "It is wrong always, everywhere and for everyone to believe anything upon insufficient evidence.";
names[2] = "W. K. Clifford";
quotes[3] = "Be both a speaker of words and a doer of deeds.";
names[3] = "Homer";
quotes[4] = "The superior man understands what is right; the inferior man understands what will sell.";
names[4] = "Confucius";
quotes[5] = "Each problem that I solved became a rule which served afterwards to solve other problems.";
names[5] = "Rene Descartes";
quotes[6] = "Whether you think that you can, or that you can't, you are usually right.";
names[6] = "Henry Ford";
quotes[7] = "Politicians are the same all over. They promise to build a bridge even where there is no river.";
names[7] = "Nikita Khrushchev";
quotes[8] = "When choosing between two evils, I always like to try the one I've never tried before.";
names[8] = "Mae West";
quotes[9] = "Advice is what we ask for when we already know the answer but wish we didn't.";
names[9] = "Erica Jong";
quotes[10] = "The Argument from Intimidation is a confession of intellectual impotence.";
names[10] = "Ayn Rand";
quotes[11] = "People forget how fast you did a job - but they remember how well you did it.";
names[11] = "Howard Newton";
quotes[12] = "The public will believe anything, so long as it is not founded on truth.";
names[12] = "Edith Sitwell";
quotes[13] = "Force is all-conquering, but its victories are short-lived.";
names[13] = "Abraham Lincoln";
quotes[14] = "Bureaucracy defends the status quo long past the time when the quo has lost its status";
names[14] = "Laurence J. Petera";
quotes[15] = "He who asks is a fool for five minutes, but he who does not ask remains a fool forever.";
names[15] = "Chinese Proverb";
quotes[16] = "Cats are smarter than dogs. You can't get eight cats to pull a sled through snow.";
names[16] = "Jeff Valdez";
quotes[17] = "Assert your right to make a few mistakes. If people can't accept your imperfections, that's their fault.";
names[17] = "Dr. David M. Burns";
quotes[18] = "A person reveals his character by nothing so clearly as the joke he resents.";
names[18] = "Georg Christoph Lichtenberg";
quotes[19] = "Challenges are what make life interesting; overcoming them is what makes life meaningful.";
names[19] = "Joshua J. Marine";
quotes[20] = "Don't bother just to be better than your contemporaries or predecessors.  Try to be better than yourself.";
names[20] = "William Faulkner";
quotes[21] = "The price good men pay for indifference to public affairs is to be ruled by evil men.";
names[21] = "Plato";
quotes[22] = "While we are focusing on fear, worry, or hate, it is not possible for us to be experiencing happiness, enthusiasm or love.";
names[22] = "Bo Bennett";
quotes[23] = "If we don't change, we don't grow. If we don't grow, we aren't really living.";
names[23] = "Gail Sheehy";
quotes[24] = "Having children makes you no more a parent than having a piano makes you a pianist.";
names[24] = "Michael Levine";
quotes[25] = "Today's public figures can no longer write their own speeches or books, and there is some evidence that they can't read them either.";
names[25] = "Gore Vidal";
quotes[26] = "You don't get harmony when everybody sings the same note.";
names[26] = "Doug Floyd";
quotes[27] = "Conviction is worthless unless it is converted into conduct.";
names[27] = "Thomas Carlyle";
quotes[28] = "We will not know unless we begin.";
names[28] = "Peter Nivio Zarlenga";
quotes[29] = "Curiosity is one of the permanent and certain characteristics of a vigorous mind.";
names[29] = "Samuel Johnson";
quotes[30] = "When you make the finding yourself - even if you're the last person on Earth to see the light - you'll never forget it.";
names[30] = "Carl Sagan";


document.write(quotes[day] + ' ');
document.write('-' + ' ' + '<EM>' + names[day] + '</EM>');

//  End -->
