// Random quote generator
// Author : David Henderson
// Date : 1-4-00

  quotes = new Array
  quotes[0] = "To be poor means to be insignificant."
  quotes[1] = "At least 80% of humanity lives on less than $10 a day."
  quotes[2] = "The poorest 40 percent of the world's population accounts for 5 percent of global income.  The richest 20 percent accounts for three-quarters of world income."
  quotes[3] = "Poverty kills 30,000 children daily.  They die quietly in some of the poorest villages on earth, far removed from the scrutiny and conscience of the world.  Being meek and weak in life makes these dying multitudes even more invisible in death."
  quotes[4] = "Nearly a billion people entered the 21st century unable to read a book or sign their names."
  quotes[5] = "Less than one percent of what the world would spend every year on weapons was needed to put every child into school by the year 2000 and yet it didn't happen."
  quotes[6] = "2.2 million children die each year because they are not immunized."
  quotes[7] = "15 million children are orphaned due to HIV.  That's comparable to the total child population in the United Kingdom."
  quotes[8] = "We have two ears and one mouth so that we can listen twice as much as we speak."
  quotes[9] = "The world spends 8,000,000,000 USD on cosmetics annually.  It only spends 6,000,000,000 USD on basic education for all."
  quotes[10] = "The world spends 780 billion dollars for military purposes.  It spends 13 billion dollars on the basic health and nutrition of its people."
  quotes[11] = "There can be no justice so long as rules are absolute."
  quotes[12] = "Don't let school interfere with your education."
  quotes[13] = "Character is power."

  people = new Array
  people[0] = "Gustavo Gutierrez"
  people[1] = "globalissues.org"
  people[2] = "globalissues.org"
  people[3] = "globalissues.org"
  people[4] = "globalissues.org"
  people[5] = "globalissues.org"
  people[6] = "globalissues.org"
  people[7] = "globalissues.org"
  people[8] = "Epictetus"
  people[9] = "globalissues.org"
  people[10] = "globalissues.org"
  people[11] = "Patrick Stewart"
  people[12] = "Mark Twain"
  people[13] = "Booker T. Washington"

  var rand = Math.floor(Math.random()* quotes.length)

  document.write('<i><FONT SIZE="2" COLOR="#FFFFFF" FACE="Bookman Old Style, Times">' + quotes[rand] + '</i><br>')
  document.write('<p align="right"><FONT FACE="verdana" SIZE="1" COLOR="#FFFFFF">-' + people[rand] + '</p>')

