function GetMOTD()
{
	var theMsg = '';
	var myRnd = Math.floor(Math.random()*12);
	var QOTDtext = new Array(
				'People demand freedom of speech to make up for the freedom of thought which they avoid.<br><br>- Kierkegaard (1813-1855)',
				'Computers and lawyers are like Old Testament gods;lots of rules and no mercy.<br><br>-Joseph Campbell',
				'Civilization is the limitless multiplication of unnecessary necessities.<br><br>-Mark Twain',
				'All you need is ignorance and confidence and the success is sure.<br><br>-Mark Twain',
				'A person with a new idea is a crank until the idea succeeds.<br><br>-Mark Twain',
				'A person who never made a mistake never tried anything new.<br><br>-Albert Einstein',
				'Without knowledge, life is not more than the shadow of death.<br><br>-Moliere',
				'There is no desire more natural than the desire of knowledge.<br><br>-Michel de Montaigne',
				'The learning and knowledge that we have, is, at the most, <br>but little compared with that of which we are ignorant.<br><br>-Plato',
				'I am the wisest man alive, for I know one thing, and that is that I know nothing.<br><br>-Socrates',
				'A creative man is motivated by the desire to achieve, not by the desire to beat others.<br><br>-Ayn Rand',
				'The best thing about the future is that it comes one day at a time.<br><br>-Abraham Lincoln',
				'The distance between insanity and genius is measured only by success.<br><br>- Bruce Feirstein');
				
	theMsg = QOTDtext[myRnd];
	if ( theMsg =='' ) theMsg ='The distance between insanity and <br>genius is measured only by success.<br><br>- Bruce Feirstein';
	return ( theMsg );
}

