 quotes = new Array(23);

 quotes[1] = "Because I could not stop for death, He kindly stopped for me; The carriage held but just ourselves and immortality. ––Emily Dickinson";
 quotes[2] = "Cowards die many times before their deaths; the valiant never taste of death but once. ––William Shakespeare";
 quotes[3] = "Death comes to all. But great achievements build a monument which shall endure until the sun grows cold. ––George Fabricus";
 quotes[4] = "Death is a commingling of eternity with time; in the death of a good man, eternity is seen looking through time. ––Johann Wolfgang von Goethe";
 quotes[5] = "Death leaves a heartache no one can heal, love leaves a memory no one can steal. ––Anonymous";
 quotes[6] = "He who has gone, so we but cherish his memory, abides with us, more potent, nay, more present than the living man. ––Antoine de Saint Éxupéry";
  quotes[7] = "Hope is grief's best music. ––Unknown";
 quotes[8] = "The courage of life is often a less dramatic spectacle than the courage of the final moment; but it is no less a magnificent mixture of triumph and tragedy. ––John F. Kennedy";
 quotes[9] = "The joy in life is to be used for a purpose. I want to be used up when I die. ––George Bernard Shaw";
  quotes[10] = "The length of your education is less important than its breadth, and the length of your life is less important than its depth. ––Marilyn vos Savant";
 quotes[11] = "In the great scheme of things, what matters is not how long you live, but why you live, what you stand for, and what you are willing to die for. ––Paul Watson";
 quotes[12] = "Let us endeavor to live so that when we come to die, even the undertaker will be sorry. ––Mark Twain";
  quotes[13] = "My sun sets to rise again. ––Robert Browning";
 quotes[14] = "No one's death comes to pass without making some impression, and those close to the deceased inherit part of the liberated soul and become richer in their humanness. ––Hermann Broch";
 quotes[15] = "They never fail who die in a great cause. ––George Gordon (Lord Byron)";
  quotes[16] = "This memory brightens o'er the past; as when the sun, concealed; behind some cloud that near us hangs; shines on a distant field. ––Henry Wadsworth Longfellow";
 quotes[17] = "Those who love deeply never grow old; they may die of old age, but they die young. ––A.W. Piñero";
 quotes[18] = "To live in hearts we leave behind is not to die. ––Clyde Campbell";
  quotes[19] = "We shall draw from the heart of suffering itself the means of inspiration and survival. ––Sir Winston Churchill";
 quotes[20] = "What we do for ourselves dies with us. What we do for others and the world remains and is immortal. ––Albert Pine";
 quotes[21] = "While we are mourning the loss of our friend, others are rejoicing to meet him behind the veil. ––John Taylor";
 quotes[22] = "Death ends a life, not a relationship. ––Jack Lemmon";




//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL style=\"border:1px solid #CCCCCC;padding:5px;margin:5px\">\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("</DL>\n");

//done

 