function displayDate() {
    MonthArray = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
    
    var currentTime = new Date()
    var month = currentTime.getMonth()
    var year = currentTime.getFullYear()
    
    document.write(MonthArray[month] + " " + year)

}
function displayQuote() {
    // Begin
    var howMany = 16
    var quote = new Array(howMany + 1)
    quote[0] = "Knowing is not enough\; we must apply. Willing is not enough\; we must do.<br>Johann Wolfgang Von Goethe"
    quote[1] = "Risk comes from not knowing what you\'re doing. <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Warren Buffett"
    quote[2] = "...knowing what must be done does away with fear. <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Rosa Parks"
    quote[3] = "Ethics is knowing the difference between what you have a right to do and what is right to do. <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Potter Stewart"
    quote[4] = "People need to be made more aware of the need to work at learning how to live because life is so quick and sometimes it goes away too quickly. <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Andy Warhol"
    quote[5] = "One must always be aware, to notice even though the cost of noticing is to become responsible. <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Thylias Moss"
    quote[6] = "I\'m a reflection of the community. <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Tupac Shakur"
    quote[7] = "An identity would seem to be arrived at by the way in which the person faces and uses his experience.  <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;James Baldwin"
    quote[8] = "I am of the opinion that my life belongs to the community, and as long as I live it is my privilege to do for it whatever I can. <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;George Bernard Shaw"
    quote[9] = "If it\'s never our fault, we can\'t take responsibility for it. If we can\'t take responsibility for it, we\'ll always be its victim.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Richard Bach"
    quote[10] = "A world community can only exist with world communication, which means something more than extensive software facilities scattered about the globe. It means common understanding, a common tradition, common idea\'s and common ideals.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Robert M. Hutchins"
    quote[11] = "We don\'t accomplish anything in this world alone ... and whatever happens is the result of the whole tapestry of one\'s life and all the weavings of individual threads from one to another that creates something.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sandra Day O\'Connor"
    quote[12] = "We are at the very beginning of time for the human race. It is not unreasonable that we grapple with problems. But there are tens of thousands of years in the future. Our responsibility is to do what we can, learn what we can, improve the solutions, and pass them on.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Richard P. Feyman"
    quote[13] = "You cannot escape the responsibility of tomorrow by evading it today.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Abraham Lincoln"
    quote[14] = "An individual step in character training is to put responsibility on the individual.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Robert Baden-Powell"
    quote[15] = "A loud noise at one end and no sense of responsibility at the other.<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Jerome K. Jerome"
    quote[16] = "It means that through knowledge have come responsibility and hope, and through both, action. <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Edward Livingston"
    function rndnumber() {
        var randscript = -1
        while (randscript < 0 || randscript > howMany || isNaN(randscript)) {
            randscript = parseInt(Math.random() * (howMany + 1))
        }
        return randscript
    }
    quo = rndnumber()
    quox = quote[quo]
    document.write(quox)
    // End --> 
}
