function formLastMod(inDate)
{
	var dm = new Date(inDate)
	var outDate
	var months = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
	var thisMonth = months[dm.getMonth()]
	var thisDate = dm.getDate()
	var thisYear = dm.getFullYear()
	outDate = " " + thisMonth + " " + thisDate + ", " + thisYear
	return outDate
}

function getQOD()
{
	var qod
	var quotes = new Array()
	quotes[0] = "<blockquote><font color='#FCFF00'>It would appear that we have reached the limits of what is possible to achieve with computer technology, although one should be careful with such statements, as they tend to sound pretty silly in 5 years.</font><blockquote>-John von Neumann (circa 1949)</blockquote></blockquote>"
	quotes[1] = "<blockquote><font color='#FCFF00'>Any suffieciently advanced technology is indistinguishable from magic.</font><blockquote>-Arthur C. Clarke, \"Technology and the Future\"</blockquote></blockquote>"
	quotes[2] = "<blockquote><font color='#FCFF00'>To do his work well, a workman must first sharpen his tools.</font><blockquote>-Chineses proverb</blockquote></blockquote>"
	quotes[3] = "<blockquote><font color='#FCFF00'>Too often we forget that genius...depends upon the data withi its reach, that Archimedes could not have devised Edison's inventions.</font><blockquote>-Ernest Dimnet</blockquote></blockquote>"
	quotes[4] = "<blockquote><font color='#FCFF00'>Sure as one plus one is two...</font><blockquote>-Mac Davis</blockquote></blockquote>"
	quotes[5] = "<blockquote><font color='#FCFF00'>There are no mistakes. The events we bring upon ourselves, no matter how unpleasant, are necessary in order to learn what we need to learn; whatever steps we take, they're necessary to reach the places we've chosen to go.</font><blockquote>-Richard Bach, \"The Bridge Across Forever\"</blockquote></blockquote>"
	quotes[6] = "<blockquote><font color='#FCFF00'>If you don't control your mind, someone else will.</font><blockquote>-John Allston</blockquote></blockquote>"
	quotes[7] = "<blockquote><font color='#FCFF00'>Captain, I am detecting an array of holometric radiation clusters at the edge of sensor range.</font><blockquote>-Worf, Star Trek: The Next Generation</blockquote></blockquote>"
	quotes[8] = "<blockquote><font color='#FCFF00'>program - a set of instructions, given to the computer, describing the sequence of steps the computer performs in order to accomplish a specific task. The task must be specific, such as balancing your checkbook or editing your text. A general task, such as working for world peace, is something we can all do, but not something we can currently write programs to do.</font><blockquote>-From Unix User's Manual, Supplementary Documents</blockquote></blockquote>"
	quotes[9] = "<blockquote><font color='#FCFF00'>After all, all he did was string together a lot of old, well-known quotations.</font><blockquote>-H. L. Mencken on Shaksespeare</blockquote></blockquote>"
	quotes[10] = "<blockquote><font color='#FCFF00'>I haven't failed. I've found 10,000 ways that don't work.</font><blockquote>-Thomas Edison</blockquote></blockquote>"
	quotes[11] = "<blockquote><font color='#FCFF00'>People are like stained-glass windows. They sparkle and shine when the sun is out, but when darkness sets in, their true beauty is revealved only if there is a light from within.</font><blockquote>-Elisabeth Kubler-Ross, \"To Live Until We Say Good-Bye\"</blockquote></blockquote>"
	quotes[12] = "<blockquote><font color='#FCFF00'>And as imagination bodies forth, The forms of things unknown, the poet's pen, Turns them to shapes, and gives to airy nothing, A local habitation and a name.</font><blockquote>-William Shakespeare, \"A Midsummer Nights Dream\"</blockquote></blockquote>"
	quotes[13] = "<blockquote><font color='#FCFF00'>What is required is simply a little trust and even that only for a little while, for the sooner a man begins to verify all he hears the better it is for him.</font><blockquote>-George Gurdjieff</blockquote></blockquote>"
	quotes[14] = "<blockquote><font color='#FCFF00'>Warning: fortune cookies don't care what  happens to you.</font><blockquote>-Mason Cooley</blockquote></blockquote>"
	quotes[15] = "<blockquote><font color='#FCFF00'>That which is static and repetitive is boring. That which is dynamic and random is confusing. In between lies art.</font><blockquote>-John A. Locke</blockquote></blockquote>"
	quotes[16] = "<blockquote><font color='#FCFF00'>I paint objects as I think them, not as I see them.</font><blockquote>-Pablo Picasso</blockquote></blockquote>"
	quotes[17] = "<blockquote><font color='#FCFF00'>Warning: Objects in mirror may be closer than they appear.</font><blockquote>"
	quotes[18] = "<blockquote><font color='#FCFF00'>Never check for an error condition you don't know how to handle.</font><blockquote>-Anonymous</blockquote></blockquote>"
	quotes[19] = "<blockquote><font color='#FCFF00'>It is of interest to note that while some dolphins are reported to have learned English-up to fifty words used in context-no human being has been reported to have learned dolphinese.</font><blockquote>-Carl Sagan</blockquote></blockquote>"
	quotes[20] = "<blockquote><font color='#FCFF00'>As soon as we started programming, we found to our surprise that it wasn't as easy to get programs right as we had thought. Debugging had to be discovered. I can remember the exact instant when I realized that a large part of my life from then on was going to be spent in finding mistakes in my own programs.</font><blockquote>-Maurice Wilkes discovers debugging, 1949</blockquote></blockquote>"
	quotes[21] = "<blockquote><font color='#FCFF00'>Let no one suppose that evolution will ever exempt us from struggles. \"You forget,\" said the the Devil, with a chuckle, \"That I have been evovling too.\"</font><blockquote>-William Ralph Inge</blockquote></blockquote>"
	quotes[22] = "<blockquote><font color='#FCFF00'>Without tolerance, our world turns into hell.</font><blockquote>-Friedrich Durrenmatt, \"About Tolerance\"</blockquote></blockquote>"
	quotes[23] = "<blockquote><font color='#FCFF00'>The measure of a man's real character is what he would do if he knew he would never be found out.</font><blockquote>-Thomas B. Macaulay</blockquote></blockquote>"

var randNum = Math.floor(Math.random() * quotes.length)
qod = quotes[randNum]
return qod

}