/*
To insert this script into your webpage save this file to the same directory as the html document
place the following line into the actually html document where you want the text to be generated.

<script src="quote.js"></script>

to update this script, right click on it and select Edit from the menu, it should open in Notepad, go to 
the next unoccuppied position and where it says document.write("") fill in the quote between the quotation 
marks. You have to type it in one continous line or the script will throw and error. There is a method to break
the lines up but it\'s overly complicated. 
To use quotation marks or a singe apostrophy precede it with a backslash (\) i.e. " = \" and \' = \\' for a line break 
use the html line break <br>. I used two of these between the quote and the attribution then one more after that 
but before the job, book etc.
you also have to move the comment mark down it is the backslash with the asterick. I have left it in the left margin 
so it is easy to find. I have also left the gaps where it needs to go. The point of this is to keep the script from
returning an empty value and to keep the script from having to run through all 1000 possiblities when they are not in use.


Below is part of the code with major repeating portions repeated. The first few lines, before Case 0, are basically setting
up the variables I use to control the script. Each Case represents one quote: the case respresents the randomly generated 
number, the line with the word \'check\' in it has to do with stopping the script as soon as a quote is found, the 
document.write() feeds the exact text in it to the HTML document, the break line ends the script once the text is written.
The default section at the end catches all the exception, it is neccessary for the incomplete script and recycles
the script back to run again until it it gets a quote.

I will show you an example of and update below the example text.
*/


       var check = 0
       while (check == 0)
       {
       var junk = Math.random()
       junk = junk * 1000
       junk = Math.round(junk)
       switch (junk)
       {
       case 0:
        check = 1
        document.write("\" The soul is dyed the color of its thoughts. Think only on those things that are in line with your principles and can bear the light of day. The content of your character is your choice. Day by day, what you do is who you become.\" <br> <br> Heraclitus 535-475 BC (approximately)<br> Philosopher and Author") 
        break

       case 1:
        check = 1
        document.write("\"People of mediocre ability sometimes achieve outstanding success because they don\'t know when to quit. Most people succeed because they are determined to.\" <br> <br> George E. Allen <br> 1832-1907, Publisher and Author")
        break
                
       case 2:
        check = 1
        document.write("\"Fantasies are more than substitutes for unpleasant reality; they are also dress rehearsals, plans. All acts performed in the world begin in the imagination.\" <br> <br> Barbara Grizzuti Harrison <br> Author and Publicist")
        break

       case 3:
        check = 1
        document.write("\"I never could have done what I have done without the habits of punctuality, order, and diligence, without the determination to concentrate myself on one subject at a time.\" <br> <br> Charles Dickens <br> 1812-1870, Writer")
        break 
        
       case 4:
        check = 1
        document.write("\"What we see depends mainly on what we look for.\" <br> <br> Sir John Lubbock <br> 1834-1913, British Statesman and Naturalist")
        break

       case 5:
        check = 1
        document.write("\"Most of the important things in the world have been accomplished by people who have kept on trying when there seemed to be no help at all.\" <br> <br> Dale Carnegie <br> 1888-1955, Author and Trainer")
        break   
        
       case 6:
        check = 1
        document.write("\"Those who love deeply never grow old; they may die of old age, but they die young.\" <br> <br> Benjamin Franklin <br> 1706-1790, Scientist, Publisher and Diplomat")
        break

       case 7:
        check = 1
        document.write("\"Every memorable act in the history of the world is a triumph of enthusiasm. Nothing great was ever achieved without it because it gives any challenge or any occupation, no matter how frightening or difficult, a new meaning. Without enthusiasm you are doomed to a life of mediocrity but with it you can accomplish miracles.\" <br> <br> Og Mandino <br> 1923-1996, Author and Speaker")
        break   
        
       case 8:
        check = 1
        document.write("\"There is no revenge so complete as forgiveness.\" <br> <br> Josh Billings <br> 1815-1885, Humorist and Lecturer")
        break

       case 9:
        check = 1
        document.write("\"Tenderness and kindness are not signs of weakness and despair, but manifestations of strength and resolutions.\" <br> <br> Kahlil Gibran <br> 1883-1931, Poet and Novelist")
        break
        
       case 10:
        check = 1
        document.write("\"I make the most of all that comes and the least of all that goes.\" <br> <br> Sara Teasdale <br> 1884-1933, Poet")
        break

       case 11:
        check = 1
        document.write("\"I expect to pass through this world but once. Any good therefore that I can do, or any kindness that I can show to any fellow creature, let me do it now. Let me not defer or neglect it, for I shall not pass this way again.\" <br> <br> William Penn <br> 1644-1718, Religious Leader and Founder of Pennsylvania")
        break
        
      case 12:
        check = 1
        document.write("\"Keep away from small people who try to belittle your ambitions. Small people always do that, but the really great make you feel that you, too, can become great.\" <br> <br> Mark Twain <br> 1835-1910, Writer and Humorist")
        break

       case 13:
        check = 1
        document.write("\"For anything worth having one must pay the price; and the price is always work, patience, love, self-sacrifice. No paper currency, no promises to pay, but the gold of real service.\" <br> <br> John Burroughs <br> 1837-1921, Author and Naturalist")
        break
        
       case 14:
        check = 1
        document.write("\"Champions aren\'t made in the gyms. Champions are made from something they have deep inside them - a desire, a dream, a vision.\" <br> <br> Muhammad Ali <br> American Boxer")
        break

       case 15:
        check = 1
        document.write("\"The greatest glory in living lies not in never falling, but in rising every time we fall.\" <br> <br> Nelson Mandela <br> Former President of South Africa")
        break
        
       case 16:
        check = 1
        document.write("\"It doesn\'t matter what you\'re trying to accomplish. It\'s all a matter of discipline. I was determined to discover what life held for me beyond the inner-city streets.\" <br> <br> Wilma Rudolph <br> 1940-1994, Olympic Gold Medallist in Track")
        break

       case 17:
        check = 1
        document.write("\"Yes, there are times when something is legitimately not our fault. Blaming others, however, keeps us in a stuck state and is ultimately rough on our own self-esteem.\" <br> <br> Eric Allenbaugh <br> Author of \"Wake-Up Calls\"")
        break
                        
       case 18:
        check = 1
        document.write("\"One\\'s philosophy is not best expressed in words; it is expressed in the choices one makes. In the long run, we shape our lives and we shape ourselves. The process never ends until we die. And, the choices we make are ultimately our own responsibility.\" <br> <br> Eleanor Roosevelt <br> 1884-1962, Former American First Lady")
        break

       case 19:
        check = 1
        document.write("\"Never does a man portray his character more vividly than his proclaiming the character of another.\" <br> <br> Winston Churchill <br> 1874-1965, Former British Prime Minister")
        break 
        
       case 20:
        check = 1
        document.write("\"Just as a small fire is extinguished by the storm whereas a large fire is enhanced by it - likewise a weak faith is weakened bypredicament and catastrophes whereas a strong faith is strengthened by them.\" <br> <br> Viktor E. Frankl <br> Austrian Psychiatrist and author")
        break

       case 21:
        check = 1
        document.write("\"Begin to free yourself at once by doing all that is possible with the means you have, and as you proceed in this spirit the way will open for you to do more.\" <br> <br> Robert Collier <br> Writer and Publisher")
        break   
        
       case 22:
        check = 1
        document.write("\"Achievement seems to be connected with action. Successful men and women keep moving. They make mistakes, but they don\\'t quit.\" <br> <br> Conrad Hilton <br> 1887-1979, Founder of Hilton Hotels")
        break

       case 23:
        check = 1
        document.write("\"I was asking myself why I was having these obstacles in my life...then I suddenly became aware that these obstacles were my life, and I began to enjoy them.\" <br> <br> John Kanary <br> Author of \"Breaking Through Limitations\"")
        break   
        
       case 24:
        check = 1
        document.write("\"Life is the movie you see through your own eyes. It makes little difference what\\'s happening out there. It\\'s how you take it that counts.\" <br> <br> Denis Waitley <br> Author of The Psychology of Winning")
        break

       case 25:
        check = 1
        document.write("\"Behold the turtle. He only makes progress when he sticks his neck out.\" <br> <br> James Bryant Conant <br> 1893-1978, Past President of Harvard University")
        break
        
       case 26:
        check = 1
        document.write("\"There are two primary choices in life: to accept conditions as they exist, or accept the responsibility for changing them.\" <br> <br> Denis Waitley <br> Author of The Psychology of Winning")
        break

       case 27:
        check = 1
        document.write("\"We are built to conquer environment, solve problems, achieve goals, and we find no real satisfaction or happiness in life without obstacles to conquer and goals to achieve.\" <br> <br> Maxwell Maltz <br> Author of \"Psycho-Cybernetics\"")
        break
        
      case 28:
        check = 1
        document.write("\"Part of being a champ is acting like a champ. You have to learn how to win and not run away when you lose. Everyone has bad stretches and real successes. Either way, you have to be careful not to lose your confidence or get too confident.\" <br> <br> Nancy Kerrigan <br> American Figure Skater")
        break

       case 29:
        check = 1
        document.write("\"To better the lives of others is one of your life\\'s greatest rewards.\" <br> <br> Captain Len Kaine US Navy (retired) <br> President Golden Rule Society")
        break
        
       case 30:
        check = 1
        document.write("\"Too often we underestimate the power of a touch, a smile, a kind word, a listening ear, an honest compliment, or the smallest act of caring, all of which have the potential to turn a life around.\" <br> <br> Leo Buscaglia <br> Author and Lecturer")
        break

       case 31:
        check = 1
        document.write("\"One should take good care not to grow too wise for so great a pleasure of life as laughter.\" <br> <br> Joseph Addison <br> 1672-1719, British Poet and Statesman")
        break
        
       case 32:
        check = 1
        document.write("\"No person was ever honored for what he received. Honor has been the reward for what he gave.\" <br> <br> Calvin Coolidge <br> 1872-1933, Thirtieth President of the United States")
        break

       case 33:
        check = 1
        document.write("\"Christmas waves a magic wand over this world, and behold, everything is softer and more beautiful.\" <br> <br> Dr. Norman Vincent Peale <br> 1898-1993, Speaker and Author")
        break
                        
       case 34:
        check = 1
        document.write("\"People who say that life is not worthwhile are really saying that they themselves have no personal goals which are worthwhile. Get yourself a goal worth working for. Better still, get yourself a project. Always have something ahead of you to look forward to...to work for and hope for.\" <br> <br> Dr. Maxwell Maltz <br> Author of \"Psycho-Cybernetics\"")
        break

       case 35:
        check = 1
        document.write("\"Far away there in the sunshine are my highest aspirations. I may not reach them, but I can look up and see their beauty, believe in them, and try to follow where they lead.\" <br> <br> Louisa May Alcott <br> 1832-1888, Author")
        break 
        
       case 36:
        check = 1
        document.write("\"Make it a rule of life never to regret and never to look back. Regret is an appalling waste of energy; you can\'t build on it, it\'s only good for wallowing in.\" <br> <br> Katherine Mansfield <br> 1888-1923, Author")
        break

       case 37:
        check = 1
        document.write("\"I have always believed that anybody with a little guts and the desire to apply himself can make it, can make anything he wants to make of himself.\" <br> <br> Willie Shoemaker <br> Horse Jockey and Trainer")
        break   
        
       case 38:
        check = 1
        document.write("\"I\'ve never understood why people consider youth a time of freedom and joy. It\'s probably because they have forgotten their own.\" <br> <br> Margaret Atwood <br> Novelist and Poet")
        break

       case 39:
        check = 1
        document.write("\"All blame is a waste of time. No matter how much fault you find with another, and regardless of how much you blame him, it will not change you. The only thing blame does is to keep the focus off you when you are looking for external reasons to explain your unhappiness or frustration. You may succeed in making another feel guilty about something by blaming him, but you won\'t succeed in changing whatever it is about you that is making you unhappy.\" <br> <br> Wayne Dyer <br> Psychotherapist, Author and Speaker")
        break   
        
       case 40:
        check = 1
        document.write("\"It\'s not that some people have willpower and some don\'t. It\'s that some people are ready to change and others are not.\" <br> <br> James Gordon <br> Medical Doctor")
        break

       case 41:
        check = 1
        document.write("\"Let us be about setting high standards for life, love, creativity, and wisdom. If our expectations in these areas are low, we are not likely to experience wellness. Setting high standards makes every day and every decade worth looking forward to.\" <br> <br> Greg Anderson <br> Author")
        break
        
       case 42:
        check = 1
        document.write("\"Have confidence that if you have done a little thing well, you can do a bigger thing well too.\" <br> <br> David Storey <br> Novelist and Playwright")
        break

       case 43:
        check = 1
        document.write("\"It is a lesson which all history teaches wise men, to put trust in ideas, and not in circumstances.\" <br> <br> Ralph Waldo Emerson <br> 1803-1882, Poet and Essayist")
        break
        
      case 44:
        check = 1
        document.write("\"The real winners in life are the people who look at every situation with an expectation that they can make it work or make it better.\" <br> <br> Barbara Pletcher <br> Author")
        break
	    
       case 45:
        check = 1
        document.write("\"I love those who can smile in trouble, who can gather strength from distress, and grow brave by reflection. \'Tis the business of little minds to shrink, but they whose heart is firm, and whose conscience approves their conduct, will pursue their principles unto death.\" <br> <br> Thomas Paine <br> 1737-1809, Political Theorist and Writer")
        break
        
       case 46:
        check = 1
        document.write("\"Things don\'t go wrong and break your heart so you can become bitter and give up. They happen to break you down and build you up so you can be all that you were intended to be.\" <br> <br> Charles Jones <br> Motivational Speaker and Author")
        break

       case 47:
        check = 1
        document.write("\"In the business world, everyone is paid in two coins: cash and experience. Take the experience first; the cash will come later.\" <br> <br> Harold S. Geneen <br> Accountant, Industrialist and CEO")
        break
        
       case 48:
        check = 1
        document.write("\"A positive attitude may not solve all your problems, but it will annoy enough people to make it worth the effort.\" <br> <br> Herm Albright <br> 1876-1944, Author")
        break

       case 49:
        check = 1
        document.write("\"Our real blessings often appear to us in the shape of pains, losses and disappointments; but let us have patience and we soon shall see them in their proper figures.\" <br> <br> Joseph Addison <br> 1672-1719, British Essayist and Statesman")
        break
                    
       case 50:
        check = 1
        document.write("\"Nothing will ever be attempted if all possible objections must first be overcome.\" <br> <br> Samuel Johnson <br> 1709-1784, Author")
        break

       case 51:
        check = 1
        document.write("\"The bravest thing you can do when you are not brave is to profess courage and act accordingly.\" <br> <br> Corra May Harris <br> 1869-1935, Author")
        break 
        
       case 52:
        check = 1
        document.write("\"Painful as it may be, a significant emotional event can be the catalyst for choosing a direction that serves us - and those around us - more effectively. Look for the learning.\" <br> <br> Eric Allenbaugh <br> Author")
        break

       case 53:
        check = 1
        document.write("\"He that cannot forgive others, breaks the bridge over which he himself must pass if he would ever reach heaven; for everyone has need to be forgiven.\" <br> <br> George Herbert <br> 1593-1632, Poet")
        break   
        
       case 54:
        check = 1
        document.write("\"By working together, pooling our resources and building on our strengths, we can accomplish great things.\" <br> <br> Ronald Reagan <br> 1911-2004, Fortieth President of the United States")
        break

       case 55:
        check = 1
        document.write("\"Let others lead small lives, but not you. Let others argue over small things, but not you. Let others cry over small hurts, but not you. Let others leave their future in someone else\'s hands, but not you.\" <br> <br> Jim Rohn <br> Author and Speaker")
        break   
        
       case 56:
        check = 1
        document.write("\"When your day isn\'t going well, there is comfort in knowing that a new day is less than 24 hours away.\" <br> <br> Joyce Prophet <br> Promotional Consultant")
        break

       case 57:
        check = 1
        document.write("\"Learn to enjoy every minute of your life. Be happy now. Don\'t wait for something outside of yourself to make you happy in the future. Think how really precious is the time you have to spend, whether it\'s at work or with your family. Every minute should be enjoyed and savored.\" <br> <br> Earl Nightingale <br> 1921-1989, Radio Announcer and Author")
        break
        
       case 58:
        check = 1
        document.write("\"It is essential to our well-being, and to our lives, that we play and enjoy life. Every single day do something that makes your heart sing.\"  <br> <br> Marcia Wieder <br> Author and Speaker")
        break

       case 59:
        check = 1
        document.write("\"You don\'t get to choose how you\'re going to die, or when. You can decide how you\'re going to live now.\" <br> <br> Joan Baez <br> Singer/Songwriter")
        break
        
      case 60:
        check = 1
        document.write("\"When you feel that you have reached the end and that you cannot go one step further, when life seems to be drained of all purpose; What a wonderful opportunity to start all over again, to turn over a new page.\"  <br> <br> Eileen Caddy <br> Author")
        break

       case 61:
        check = 1
        document.write("\"Trust your hunches. They\'re usually based on facts filed away just below the conscious level.\" <br> <br> Dr. Joyce Brothers <br> Psychologist and Television Personality")
        break
        
       case 62:
        check = 1
        document.write("\"Some tension is necessary for the soul to grow, and we can put that tension to good use. We can look for every opportunity to give and receive love, to appreciate nature, to heal our wounds and the wounds of others, to forgive, and to serve.\" <br> <br> Joan Borysenko <br> Clinical Psychologist and Author")
        break

       case 63:
        check = 1
        document.write("\"I have always struggled to achieve excellence. One thing that cycling has taught me is that if you can achieve something without a struggle it\'s not going to be satisfying.\" <br> <br> Greg LeMond <br> Cyclist, 3 Times Winner of the Tour de France")
        break
        
       case 64:
        check = 1
        document.write("\"My greatest point is my persistence. I never give up in a match. However down I am, I fight until the last ball. My list of matches shows that I have turned a great many so-called irretrievable defeats into victories.\" <br> <br> Bjorn Borg <br> Professional Tennis Player")
        break

       case 65:
        check = 1
        document.write("\"It\'s the repetition of affirmations that leads to belief. And once that belief becomes a deep conviction, things begin to happen.\" <br> <br> Claude M. Bristol <br> 1891-1951, Author")
        break
        
               
       case 66:
        check = 1
        document.write("\"What sunshine is to flowers, smiles are to humanity. These are but trifles, to be sure; but, scattered along life\'s pathway, the good they do is inconceivable.\" <br> <br> Joseph Addison <br> 1672-1719, British Statesman and Essayist")
        break

       case 67:
        check = 1
        document.write("\"It is good to have money and the things that money can buy, but it\'s good too, to check up once in a while and make sure you haven\'t lost the things money can\'t buy.\" <br> <br> George Lorimer <br> 1867-1937, Editor of \"Saturday Evening Post\"")
        break 
        
       case 68:
        check = 1
        document.write("\"Our subconscious minds have no sense of humor, play no jokes and cannot tell the difference between reality and an imagined thought or image. What we continually think about eventually will manifest in our lives.\" <br> <br> Sidney Madwed <br> Author and Consultant")
        break

       case 69:
        check = 1
        document.write("\"One of the things I learned the hard way was that it doesn\'t pay to get discouraged. Keeping busy and making optimism a way of life can restore your faith in yourself.\" <br> <br> Lucille Ball <br> 1911-1989, Comic Actress")
        break   
        
       case 70:
        check = 1
        document.write("\"Just don\'t give up trying to do what you really want to do. Where there\'s love and inspiration, I don\'t think you can go wrong.\" <br> <br> Ella Fitzgerald <br> 1917-1996, Jazz Singer")
        break

       case 71:
        check = 1
        document.write("\"Take chances, make mistakes. That\'s how you grow. Pain nourishes your courage. You have to fail in order to practice being brave.\" <br> <br> Mary Tyler Moore <br> Actress")
        break   
        
       case 72:
        check = 1
        document.write("\"Look at everything as though you were seeing it either for the first or last time. Then your time on earth will be filled with glory.\" <br> <br> Betty Smith <br> 1896-1972, Novelist")
        break

       case 73:
        check = 1
        document.write("\"I believe that persistent effort, supported by a character-based foundation, will enable you to get more of the things money will buy and all of the things money won\'t buy.\" <br> <br> Zig Ziglar <br> Author and Speaker")
        break
        
       case 74:
        check = 1
        document.write("\"What convinces is conviction. Believe in the argument you\'re advancing. If you don\'t, you\'re as good as dead. The other person will sense that something isn\'t there, and no chain of reasoning, no matter how logical or elegant or brilliant, will win your case for you.\" <br> <br> Lyndon B. Johnson <br> 1908-1973, Thirty-Sixth President of the United States")
        break

       case 75:
        check = 1
        document.write("\"I do not ask to walk smooth paths nor bear an easy load. I pray for strength and fortitude to climb the rock strewn road. Give me such courage and I can scale the hardest peaks alone, and transform every stumbling block into a stepping stone.\" <br> <br> Gale Brook Burket")
        break
        
      case 76:
        check = 1
        document.write("\"To know what people really think, pay regard to what they do, rather than what they say.\" <br> <br> Rene Descartes <br> 1596-1650, Philosopher and Scientist")
        break

       case 77:
        check = 1
        document.write("\"The first requisite for success is the ability to apply your physical and mental energies to one problem incessantly without growing weary.\" <br> <br> Thomas Edison <br> 1847-1931, Inventor and Entrepreneur")
        break
        
       case 78:
        check = 1
        document.write("\"When you paint success pictures in your mind, you initiate an inner process whereby your attitudes, hopes, aspirations, and enthusiasm are elevated in response to an image of a more promising future. Every person who aspires must first sell themselves hope, the promise of a better life.\" <br> <br> U.S. Andersen <br> Author and Speaker")
        break

       case 79:
        check = 1
        document.write("\"Times of great calamity and confusion have been productive for the greatest minds. The purest ore is produced from the hottest furnace. The brightest thunderbolt is elicited from the darkest storm.\" <br> <br> Charles Caleb Colton <br> 1780-1832, Sports Writer")
        break
        
       case 80:
        check = 1
        document.write("\"I long to accomplish a great and noble task, but it is my chief duty to accomplish small tasks as if they were great and noble.\" <br> <br> Helen Keller <br> 1880-1968, Blind/Deaf Author and Lecturer")
        break

       case 81:
        check = 1
        document.write("\"Adulthood is defined by the willingness to except full responsibility for where you are at in life; no longer blaming others or circumstances.\" <br> <br> Joe Westbrook <br> Networker and Student of Philosophy")
        break
        
             
       case 82:
        check = 1
        document.write("\"One of the greatest discoveries a man makes, one of his great surprises, is to find he can do what he was afraid he couldn\'t do.\" <br> <br> Henry Ford <br> 1863-1947, Industrialist and Founder of Ford Motor Company")
        break

       case 83:
        check = 1
        document.write("\"The only man I know who behaves sensibly is my tailor; he takes my measurements anew each time he sees me. The rest go on with their old measurements and expect me to fit them.\" <br> <br> George Bernard Shaw <br> 1856-1950, Playwright")
        break 
        
       case 84:
        check = 1
        document.write("\"Tolerance is giving to every other human being every right that you claim for yourself.\" <br> <br> Robert Green Ingersoll <br> 1833-1899, Orator and Political Speechmaker")
        break

       case 85:
        check = 1
        document.write("\"The greatest weapon against stress is our ability to choose one thought over another.\" <br> <br> William James <br> 1842-1910, Psychologist, Professor and Author")
        break   
        
       case 86:
        check = 1
        document.write("\"What is important is not what happens to us, but how we respond to what happens to us.\" <br> <br> Jean-Paul Sartre <br> 1905-1980, Writer and Philosopher")
        break

       case 87:
        check = 1
        document.write("\"You don\'t have to be a fantastic hero to do certain things; to compete. You can be just an ordinary person, sufficiently motivated to reach challenging goals. The intense effort, the giving of everything you\'ve got, is a very pleasant bonus.\" <br> <br> Sir Edmund Hillary <br> Mountaineer")
        break   
        
       case 88:
        check = 1
        document.write("\"Generosity is giving more than you can, and pride is taking less than you need.\" <br> <br> Kahlil Gibran <br> 1883-1931, Poet and Novelist")
        break

       case 89:
        check = 1
        document.write("\"The art of living lies less in eliminating our troubles than in growing with them.\" <br> <b> Bernard Baruch <br> 1870-1965, Financier and Government Adviser")
        break
        
       case 90:
        check = 1
        document.write("\"To swear off making mistakes is very easy. All you have to do is swear off having ideas.\" <br> <br> Leo Burnett <br> 1891-1971, Advertising Pioneer")
        break

       case 91:
        check = 1
        document.write("\"When I examine myself and my methods of thought, I come to the conclusion that the gift of fantasy has meant more to me than my talent for absorbing positive knowledge.\" <br> <br> Albert Einstein <br> 1879-1955, Physicist")
        break
        
      case 92:
        check = 1
        document.write("\"Every great achievement is the victory of a flaming heart.\" <br> <br> Ralph Waldo Emerson <br> 1803-1882, Poet and Essayist")
        break

       case 93:
        check = 1
        document.write("\"Not the maker of plans and promises, but rather the one who offers faithful service in small matters. This is the person who is most likely to achieve what is good and lasting.\" <br> <br> Johann Wolfgang Von Goethe <br> 1749-1832, Poet, Dramatist and Novelist")
        break
        
       case 94:
        check = 1
        document.write("\"One way to keep momentum going is to have constantly greater goals.\" <br> <br> Michael Korda <br> Publisher")
        break

       case 95:
        check = 1
        document.write("\"Find the good. It\'s all around you. Find it, showcase it and you\'ll start believing in it.\" <br> <br> Jesse Owens <br> 1913-1980, Gold Medal Olympic Track Athlete")
        break
        
       case 96:
        check = 1
        document.write("\"Society is like a crowd in carnival costumes with everyone fearful that others will see through his disguise.\" <br> <br> Vernon Howard <br> 1918-1992, Author and Speaker")
        break

       case 97:
        check = 1
        document.write("\"I can\'t do everything, but I can do something. If we all did something. We could conquer anything.\" <br> <br> Robert L. Shimmel <br> Humanitarian")
        break
        
              
       case 98:
        check = 1
        document.write("\"Any man\'s life will be filled with constant and unexpected encouragement if he makes up his mind to do his level best each day.\" <br> <br> Booker T. Washington <br> 1856-1915, Educator")
        break

       case 99:
        check = 1
        document.write("\"Every now and then go away, have a little relaxation, for when you come back to your work your judgment will be surer. Go some distance away because then the work appears smaller and more of it can be taken in at a glance and a lack of harmony and proportion is more readily seen.\" <br> <br> Leonardo Da Vinci <br> 1452-1519, Inventor, Architect, Painter, Scientist and Sculptor")
        break 
        
       case 100:
        check = 1
        document.write("\"It is not the straining for great things that is most effective; it is the doing of the little things, the common duties, a little better and better.\" <br> <br> Elizabeth Stuart Phelps <br> 1844-1911, Writer")
        break
   
       case 101:
        check = 1
        document.write("\"Happiness does not depend on outward things, but on the way we see them.\" <br> <br> Leo Tolstoy <br> 1828-1910, Novelist and Philosopher")
        break
                
       case 102:
        check = 1
        document.write("\"Never look down to test the ground before taking your next step; only he who keeps his eye fixed on the far horizon will find the right road.\" <br> <br> Dag Hammarskjold <br> 1905-1961, Statesman and Secretary-General of U.N.")
        break

       case 103:
        check = 1
        document.write("\"Don\'t spend your precious time asking \'Why isn\'t the world a better place?\' It will only be time wasted. The question to ask is \'How can I make it better?\' To that there is an answer.\" <br> <br> Leo Buscaglia <br> Author and Speaker")
        break 
        
       case 104:
        check = 1
        document.write("\"If we would only give, just once, the same amount of reflection to what we want to get out of life that we give to the question of what to do with a two week\'s vacation.\" <br> <br> Dorothy Canfield Fisher <br> 1879-1958, Writer")
        break

       case 105:
        check = 1
        document.write("\"Manners are a sensitive awareness of the feelings of others. If you have that awareness, you have good manners, no matter what fork you use.\" <br> <br> Emily Post <br> 1873-1960, Etiquette Author")
        break   
        
       case 106:
        check = 1
        document.write("\"The past cannot be regained, although we can learn from it; the future is not yet ours even though we must plan for it. Time is now. We have only today.\" <br> <br> Charles Hummell <br> Writer")
        break

       case 107:
        check = 1
        document.write("\"He that does good for good\'s sake seeks neither paradise nor reward, but he is sure of both in the end.\" <br> <br> William Penn <br> 1644-1718, Religious Leader and Founder of Pennsylvania")
        break   
        
       case 108:
        check = 1
        document.write("\"Talent is cheaper than table salt. What separates the talented individual from the successful one is a lot of hard work.\" <br> <br> Stephen King <br> Novelist")
        break

       case 109:
        check = 1
        document.write("\"We either make ourselves happy or miserable. The amount of work is the same.\" <br> <br> Carlos Castaneda <br> 1925-2000, Author")
        break
        
       case 110:
        check = 1
        document.write("\"Catch a passion for helping others and a richer life will come back to you!\" <br> <br> William H. Danforth <br> Author and Founder of Ralston Purina")
        break

       case 111:
        check = 1
        document.write("\"When you can do the common things of life in an uncommon way you will command the attention of the world.\" <br> <br> George Washington Carver <br> 1864-1943, Scientist")
        break
        
      case 112:
        check = 1
        document.write("\"I know of no more encouraging fact than the unquestionable ability of man to elevate his life by conscious endeavor.\" <br> <br> Henry David Thoreau <br> 1817-1862, Essayist, Poet and Naturalist")
        break

       case 113:
        check = 1
        document.write("\"Kindness can become its own motive. We are made kind by being kind.\" <br> <br> Eric Hoffer <br> 1902-1983, Author and Philosopher")
        break
        
       case 114:
        check = 1
        document.write("\"Look up, laugh loud, talk big, keep the color in your cheek and the fire in your eye, adorn your person, maintain your health, your beauty and your animal spirits.\" <br> <br> William Hazlitt <br> 1778-1830, Essayist")
        break

       case 115:
        check = 1
        document.write("\"Our life is what our thoughts make it. A man will find that as he alters his thoughts toward things and other people, things and other people will alter towards him.\" <br> <br> James Allen <br> 1864-1912, Author")
        break
        
       case 116:
        check = 1
        document.write("\"It is inevitable that some defeat will enter even the most victorious life. The human spirit is never finished when it is defeated... it is finished when it surrenders.\" <br> <br> Ben Stein <br> Professor and Writer")
        break

       case 117:
        check = 1
        document.write("\"There is no royal road to anything. One thing at a time, all things in succession. That which grows fast, withers as rapidly. That which grows slowly, endures.\" <br> <br> Josiah Gilbert Holland <br> 1819-1881, Author")
        break
        
                
       case 118:
        check = 1
        document.write("\"So many of our dreams at first seem impossible, then they seem improbable, and then when we summon the will, they soon become inevitable.\" <br> <br> Christopher Reeve <br> 1952-2004, Actor and Speaker")
        break

       case 119:
        check = 1
        document.write("\"Slow down and enjoy life. It\'s not only the scenery you miss by going too fast, you also miss the sense of where you are going and why.\" <br> <br> Eddie Cantor <br> 1892-1964, Comedian")
        break 
        
       case 120:
        check = 1
        document.write("\"Some people are making such thorough preparation for rainy days that they aren\'t enjoying today\'s sunshine.\" <br> <br> William Feather <br> 1889-1981, Author and Publisher")
        break

       case 121:
        check = 1
        document.write("\"Circumstances may cause interruptions and delays, but never lose sight of your goal. Prepare yourself in every way you can by increasing your knowledge and adding to your experience, so that you can make the most of opportunity when it occurs.\" <br> <br> Mario Andretti <br> Auto Racer")
        break   
        
       case 122:
        check = 1
        document.write("\"Great dancers are not great because of their technique; they are great because of their passion.\" <br> <br> Martha Graham <br> 1894-1991, Dancer, Teacher and Choreographer")
        break

       case 123:
        check = 1
        document.write("\"Wear a smile and have friends; wear a scowl and have wrinkles. What do we live for if not to make the world less difficult for each other?\" <br> <br> George Eliot <br> 1819-1880, Novelist")
        break   
        
       case 124:
        check = 1
        document.write("\"Your PURPOSE explains WHAT you are doing with your life. Your VISION explains how you are living your PURPOSE. Your GOALS enable you to realize your VISION.\" <br> <br> Bob Proctor <br> Author and Speaker")
        break

       case 125:
        check = 1
        document.write("\"A person of power embraces challenges in complete gratitude. No matter the situation life may bring, discontent is never justified, rather all is experienced as an opportunity and a privilege to adventure and grow.\" <br> <br> James Ray <br> Author and Speaker")
        break
        
       case 126:
        check = 1
        document.write("\"Courage means to keep working a relationship, to continue seeking solutions to difficult problems, and to stay focused during stressful periods.\" <br> <br> Denis Waitley <br> Author, Speaker and Trainer")
        break

       case 127:
        check = 1
        document.write("\"There are some people who live in a dream world, and there are some who face reality; and then there are those who turn one into the other.\" <br> <br> Douglas Everett")
        break
        
      case 128:
        check = 1
        document.write("\"The Creator has not given you a longing to do that which you have no ability to do.\" <br> <br> Orison Swett Marden")
        break

       case 129:
        check = 1
        document.write("\"Shall we make a new rule of life from tonight: always try to be a little kinder than is necessary.\" <br> <br> Sir James M. Barrie <br> 1860-1937, Playwright")
        break
        
       case 130:
        check = 1
        document.write("\"If you believe you can, you probably can. If you believe you won\'t, you most assuredly won\'t. Belief is the ignition switch that gets you off the launching pad.\" <br> <br> Denis Waitley <br> Author, Speaker and Trainer")
        break

       case 131:
        check = 1
        document.write("\"When you make a mistake, don\'t look back at it long. Take the reason of the thing into your mind, and then look forward. Mistakes are lessons of wisdom. The past cannot be changed. The future is yet in your power.\" <br> <br> Phyllis Bottome <br> 1884-1963, Writer")
        break
        
       case 132:
        check = 1
        document.write("\"There are no hopeless situations; there are only people who have grown hopeless about them.\" <br> <br> Clare Boothe Luce <br> 1902-1987, American Diplomat and Writer")
        break

       case 133:
        check = 1
        document.write("\"Start by doing what\'s necessary, then what\'s possible, and suddenly you are doing the impossible.\" <br> <br> St. Francis of Assisi <br> 1181-1226, Preacher, Founder of the Franciscan Order")
        break
                        
       case 134:
        check = 1
        document.write("\"Never measure the height of a mountain until you have reached the top. Then you will see how low it was.\" <br> <br> Dag Hammarskjold <br> 1905-1961, Swedish Statesman, Secretary-General of the U.N.")
        break

       case 135:
        check = 1
        document.write("\"The truest greatness lies in being kind, the truest wisdom in a happy mind.\" <br> <br> Ella Wheeler Wilcox <br> 1855-1919, Poet and Journalist")
        break 
        
       case 136:
        check = 1
        document.write("\"You can end half your troubles immediately by no longer permitting people to tell you what you want.\" <br> <br> Vernon Howard <br> 1918-1992, Author and Speaker")
        break

       case 137:
        check = 1
        document.write("\"Let there be nothing within thee that is not very beautiful and very gentle, and there will be nothing without thee that is not beautiful and softened by the spell of thy presence.\" <br> <br> James Allen <br> 1864-1912, Author")
        break   
        
       case 138:
        check = 1
        document.write("\"A good listener is not only popular everywhere, but after a while he gets to know something.\" <br> <br> Wilson Mizner <br> 1876-1933, Author")
        break

       case 139:
        check = 1
        document.write("\"A person cannot directly choose his circumstances, but he can choose his thoughts, and so indirectly, yet surely, shape his circumstances.\" <br> <br> James Allen <br> 1864-1912, Author of \"As a Man Thinketh\"")
        break   
        
       case 140:
        check = 1
        document.write("\"Let\'s choose today to quench our thirst for the \'good life\' we think others lead by acknowledging the good that already exists in our lives. We can then offer the universe the gift of our grateful hearts.\" <br> <br> Sarah Ban Breathnach <br> Author")
        break

       case 141:
        check = 1
        document.write("\"The victory of success is half won when one gains the habit of setting goals and achieving them. Even the most tedious chore will become endurable as you parade through each day convinced that every task, no matter how menial or boring, brings you closer to fulfilling your dreams.\" <br> <br> Og Mandino <br> 1923-1996, Author and Speaker")
        break
        
       case 142:
        check = 1
        document.write("\"Feeling grateful or appreciative of someone or something in your life actually attracts more of the things that you appreciate and value into your life.\" <br> <br> Christiane Northrup <br> Medical Doctor and Author")
        break

       case 143:
        check = 1
        document.write("\"Learn to enjoy every minute of your life. Be happy now. Don\'t wait for something outside of yourself to make you happy in the future. Think how really precious is the time you have to spend, whether it\'s at work or with your family. Every minute should be enjoyed and savored.\" <br> <br> Earl Nightingale <br> 1921-1989, Radio Announcer, Author and Speaker")
        break
        
      case 144:
        check = 1
        document.write("\"Re-examine all you have been told...Dismiss what insults your Soul.\" <br> <br> Walt Whitman <br> 1819-1892, Poet")
        break

       case 145:
        check = 1
        document.write("\"Feeling gratitude and not expressing it is like wrapping a present and not giving it.\" <br> <br> William Arthur Ward <br> 1921-1994, Pastor, Teacher, Author and Editor")
        break
        
       case 146:
        check = 1
        document.write("\"When we do the best that we can, we never know what miracle is wrought in our life, or in the life of another.\" <br> <br> Helen Keller <br> 1880-1968, Blind/Deaf Author, Lecturer")
        break

       case 147:
        check = 1
        document.write("\"You can't escape the responsibility of tomorrow by evading it today.\" <br> <br> Abraham Lincoln <br> 1809-1865, 16th U.S. President")
        break
 
       case 148:
        check = 1
        document.write("\"Often the difference between a successful person and a failure is not the one that has better abilities or ideas, but the courage that one has to bet on one\'s ideas, to take a calculated risk - and to act.\" <br> <br> Dr. Maxwell Maltz <br> Author")
        break

       case 149:
        check = 1
        document.write("\"Failure is a part of success. There is no such thing as a bed of roses all your life. But failure will never stand in the way of success if you learn from it.\" <br> <br> Hank Aaron <br> Hall of Fame Baseball Player")
        break
                    
       case 150:
        check = 1
        document.write("\"Obstacles can\'t stop you. Problems can\'t stop you. Most of all, other people can\'t stop you. Only you can stop you.\" <br> <br> Jeffrey Gitomer <br> Author and Sales Trainer")
        break

       case 151:
        check = 1
        document.write("\"Remember not only to say the right thing in the right place, but far more difficult still, to leave unsaid the wrong thing at the tempting moment.\" <br> <br> Benjamin Franklin <br> 1706-1790, Scientist, Publisher and Diplomat")
        break 
        
       case 152:
        check = 1
        document.write("\"No one ever attains very eminent success by simply doing what is required of him; it is the amount and excellence of what is over and above the required that determines the greatness of ultimate distinction.\" <br> <br> Charles Kendall Adams <br> 1835-1902, Professor of History and Author")
        break

       case 153:
        check = 1
        document.write("\"You can learn new things at any time in your life if you\'re willing to be a beginner. If you actually learn to like being a beginner, the whole world opens up to you.\" <br> <br> Barbara Sher <br> Author")
        break   
        
       case 154:
        check = 1
        document.write("\"Security is mostly a superstition. It does not exist in nature, nor do the children of men as a whole experience it. Avoiding danger is no safer in the long run than outright exposure. Life is either a daring adventure, or nothing.\" <br> <br> Helen Keller <br> 1880-1968, Blind/Deaf Author and Lecturer")
        break

       case 155:
        check = 1
        document.write("\"To be yourself in a world that is constantly trying to make you something else is the greatest accomplishment.\" <br> <br> Ralph Waldo Emerson <br> 1803-1882, Poet and Essayist")
        break   
        
       case 156:
        check = 1
        document.write("\"If a child is to keep alive his inborn sense of wonder without any such gift from the fairies, he needs the companionship of at least one adult who can share it, rediscovering with him the joy, excitement, and mystery of the world we live in.\" <br> <br> Rachel Carson <br> 1907-1964, Marine Biologist and Author")
        break

       case 157:
        check = 1
        document.write("\"You must give some time to your fellow men. Even if it\'s a little thing, do something for others - something for which you get no pay but the privilege of doing it.\" <br> <br> Albert Schweitzer <br> 1875-1965, Medical Missionary, Theologian and Philosopher")
        break
        
       case 158:
        check = 1
        document.write("\"Our goals can only be reached through a vehicle of a plan, in which we must fervently believe, and upon which we must vigorously act. There is no other route to success.\" <br> <br> Stephen A. Brennan <br> American Basketball Coach")
        break

       case 159:
        check = 1
        document.write("\"The goal you set must be challenging. At the same time, it should be realistic and attainable, not impossible to reach. It should be challenging enough to make you stretch, but not so far that you break.\" <br> <br> Rick Hansen <br> Wheelchair Athlete, Speaker and Founder of Man in Motion World Tour")
        break
        
      case 160:
        check = 1
        document.write("\"You don\'t have to be a fantastic hero to do certain things - to compete. You can be just an ordinary chap, sufficiently motivated to reach challenging goals.\" <br> <br> Sir Edmund Hillary <br> Mountaineer")
        break

       case 161:
        check = 1
        document.write("\"My philosophy of life is that if we make up our mind what we are going to make of our lives, then work hard toward that goal, we never lose - somehow we win out.\" <br> <br> Ronald Reagan <br> 1911-2004, Fortieth President of the United States")
        break
        
       case 162:
        check = 1
        document.write("\"I must always have a clear image of the form of a work before I begin. Otherwise there is no impulse to create.\" <br> <br> Barbara Hepworth <br> 1903-1975, Sculptor")
        break

       case 163:
        check = 1
        document.write("\"There are two big forces at work, external and internal. We have very little control over external forces such as tornadoes, earthquakes, floods, disasters, illness and pain. What really matters is the internal force. How do I respond to those disasters? Over that I have complete control.\" <br> <br> Leo Buscaglia <br> Author and Speaker")
        break
        
       case 164:
        check = 1
        document.write("\"It is our attitude at the beginning of a difficult task which, more than anything else, will affect its successful outcome.\" <br> <br> William James <br> 1842-1910, Psychologist, Professor and Author")
        break

       case 165:
        check = 1
        document.write("\"One should take good care not to grow too wise for so great a pleasure of life as laughter.\" <br> <br> Joseph Addison <br> 1672-1719, Essayist, Poet and Statesman")
        break
        
               
       case 166:
        check = 1
        document.write("\"Nothing can stop the man with the right mental attitude from achieving his goal; nothing on earth can help the man with the wrong mental attitude.\" <br> <br> Thomas Jefferson <br> 1743-1826, Third President of the United States")
        break

       case 167:
        check = 1
        document.write("\"Good humor is a tonic for mind and body. It is the best antidote for anxiety and depression. It is a business asset. It attracts and keeps friends. It lightens human burdens. It is the direct route to serenity and contentment.\" <br> <br> Grenville Kleiser <br> 1868-1953, Author")
        break 
        
       case 168:
        check = 1
        document.write("\"If you have a positive attitude and constantly strive to give your best effort, eventually you will overcome your immediate problems and find you are ready for greater challenges.\" <br> <br> Pat Riley <br> Professional Basketball Coach")
        break

       case 169:
        check = 1
        document.write("\"After seventeen years of research and twenty seven books, I can reduce the keys to raising high achieving children to three words...\'gentle but firm.\'\" <br> <br> Doug Wead <br> Author of The Raising of a President")
        break   
        
       case 170:
        check = 1
        document.write("\"Too often we underestimate the power of a touch, a smile, a kind word, a listening ear, an honest compliment, or the smallest act of caring, all of which have the potential to turn a life around.\" <br> <br> Leo Buscaglia <br> Author and Speaker")
        break

       case 171:
        check = 1
        document.write("\"The purpose of learning is growth, and our minds, unlike our bodies, can continue growing as we continue to live.\" <br> <br> Mortimer J. Adler <br> Educator and Philosopher")
        break   
        
       case 172:
        check = 1
        document.write("\"As long as you keep a person down, some part of you has to be down there to hold him down, so it means you cannot soar as you otherwise might.\" <br> <br> Marian Anderson <br> 1902-1993, Concert and Opera Singer")
        break

       case 173:
        check = 1
        document.write("\"Never continue in a job you don\'t enjoy. If you\'re happy in what you\'re doing, you\'ll like yourself, you\'ll have inner peace. And if you have that, along with physical health, you will have had more success than you could possibly have imagined.\" <br> <br> Johnny Carson <br> 1925-2005, Talk Show Host and Entertainer")
        break
        
       case 174:
        check = 1
        document.write("\"I will waste not even a precious second today in anger or hate or jealousy or selfishness. I know that the seeds I sow I will harvest, because every action, good or bad, is always followed by an equal reaction. I will plant only good seeds this day.\" <br> <br> Og Mandino <br> 1923-1996, Author and Speaker")
        break

       case 175:
        check = 1
        document.write("\"It doesn\'t matter which side of the fence you get off on sometimes. What matters most is getting off. You cannot make progress without making decisions.\" <br> <br> Jim Rohn <br> Author and Speaker")
        break
        
      case 176:
        check = 1
        document.write("\"The minute you settle for less than you deserve, you get even less than you settled for.\" <br> <br> Maureen Dowd <br> Newspaper Columnist")
        break

       case 177:
        check = 1
        document.write("\"The indispensable first step to getting the things you want out of life is this: Decide what you want.\" <br> <br> Ben Stein <br> Professor and Writer")
        break
        
       case 178:
        check = 1
        document.write("\"There are no hopeless situations; there are only people who have grown hopeless about them.\" <br> <br> Clare Boothe <br> 1903-1987, Author")
        break

       case 179:
        check = 1
        document.write("\"It\'s a sign of troubled times when the concept of \'pressure\' becomes an acceptable excuse for ethical shortcuts. Pressures are just temptations in disguise and it\'s never been acceptable to give in to temptation.\" <br> <br> Michael Josephson <br> Author and Speaker")
        break
        
       case 180:
        check = 1
        document.write("\"I am an old man and have known a great many troubles, but most of them never happened.\" <br> <br> Mark Twain <br> 1835-1910, Humorist and Writer")
        break

       case 181:
        check = 1
        document.write("\"It\'s not the will to win, but the will to prepare to win that makes the difference.\" <br> <br> Bear Bryant <br> 1913-1983, Football Coach")
        break
        
             
       case 182:
        check = 1
        document.write("\"No person was ever honored for what he received. Honor has been the reward for what he gave.\" <br> <br> Calvin Coolidge <br> 1872-1933, Thirtieth President of the United States")
        break

       case 183:
        check = 1
        document.write("\"Few will have the greatness to bend history itself, but each of us can work to change a small portion of events, and in the total of all those acts will be written the history of this generation.\" <br> <br> John F. Kennedy <br> 1917-1963, Thirty-Fifth President of the United States")
        break 
        
       case 184:
        check = 1
        document.write("\"Logic will get you from A to B. Imagination will take you everywhere.\" <br> <br> Albert Einstein <br> 1879-1955, Physicist")
        break

       case 185:
        check = 1
        document.write("\"Difficulty is the excuse history never accepts.\" <br> <br> Edward R. Murrow <br> 1908-1965, Journalist and Broadcaster")
        break   
        
       case 186:
        check = 1
        document.write("\"Live in such a way that you would not be ashamed to sell your parrot to the town gossip.\" <br> <br> Will Rogers <br> 1879-1935, Humorist and Actor")
        break

       case 187:
        check = 1
        document.write("\"Don\'t be distracted by criticism. Remember the only taste of success some people have is when they take a bite out of you.\" <br> <br> Zig Ziglar <br> Author and Speaker")
        break   
        
       case 188:
        check = 1
        document.write("\"When you speak of someone or about someone, you should speak as though they were in the room with you. The ears that you speak to today are attached to the mouth that could relay the message tomorrow.\" <br> <br> William \'Biddy\' Allen <br> 1903-2001, Bus Driver - Loving father of 7 children")
        break

       case 189:
        check = 1
        document.write("\"Whether or not we realize it each of us has within us the ability to set some kind of example for people. Knowing this would you rather be the one known for being the one who encouraged others, or the one who inadvertently discouraged those around you?\" <br> <br> Josh Hinds <br> Syndicated Columnist and Author")
        break
        
       case 190:
        check = 1
        document.write("\"Failure will never overtake me if my determination to succeed is strong enough.\" <br> <br> Og Mandino <br> 1923-1996, Author and Speaker")
        break

       case 191:
        check = 1
        document.write("\"The world can change in an instant. So can the way you choose to see it. Why not choose to see the good in yourself and others.\" <br> <br> Bob Perks <br> Author and Speaker")
        break
        
      case 192:
        check = 1
        document.write("\"Don\'t be afraid if things seem difficult in the beginning. That\'s only the initial impression. The important thing is not to retreat; you have to master yourself.\" <br> <br> Olga Korbut <br> Gymnast - Four Time Olympic Gold Medalist")
        break

       case 193:
        check = 1
        document.write("\"People who consider themselves victims of their circumstances will always remain victims unless they develop a greater vision for their lives.\" <br> <br> Stedman Graham <br> Speaker, Author and Educator")
        break
        
       case 194:
        check = 1
        document.write("\"I can feel guilty about the past, apprehensive about the future, but only in the present can I act.\" <br> <br> Abraham Maslow <br> 1908-1970, Psychologist")
        break

       case 195:
        check = 1
        document.write("\"Your enthusiasm will be infectious, stimulating and attractive to others. They will love you for it. They will go for you and with you.\" <br> <br> Norman Vincent Peale <br> 1898-1993, Pastor, Speaker and Author")
        break
        
       case 196:
        check = 1
        document.write("\"Gratitude unlocks the fullness of life. It turns what we have into enough, and more. It turns denial into acceptance, chaos to order, confusion to clarity. It can turn a meal into a feast, a house into a home, a stranger into a friend. Gratitude makes sense of our past, brings peace for today, and creates a vision for tomorrow.\" <br> <br> Melody Beattie <br> Author")
        break

       case 197:
        check = 1
        document.write("\"Even the most daring and accomplished people have undergone tremendous difficulty. In fact, the more successful they became, the more they attributed their success to the lessons learned during their most difficult times.\" <br> <br> Barbara Rose <br> Speaker and Author")
        break
        
              
       case 198:
        check = 1
        document.write("\"The world cares very little about what a man or woman knows; it is what a man or woman is able to do that counts.\" <br> <br> Booker T. Washington <br> 1856-1915, Educator")
        break

       case 199:
        check = 1
        document.write("\"An idea is never given to you without you being given the power to make it reality.\" <br> <br> Richard Bach <br> Author")
        break 
        
       case 200:
        check = 1
        document.write("\"Our ultimate freedom is the right and power to decide how anybody or anything outside ourselves will affect us.\" <br> <br> Stephen R. Covey <br> Author and Speaker")
        break
     
       case 201:
        check = 1
        document.write("\"Always reward your long hours of labor and toil in the very best way, surrounded by your family. Nurture their love carefully, remembering that your children need models, not critics, and your own progress will hasten when you constantly strive to present your best side to your children. And even if you have failed at all else in the eyes of the world, if you have a loving family, you are a success.\" <br> <br> Og Mandino <br> 1923-1996, Author and Speaker")
        break
                
       case 202:
        check = 1
        document.write("\"Everyone has inside of him a piece of good news. The good news is that you don\'t know how great you can be! How much you can love! What you can accomplish! And what your potential is!\" <br> <br> Anneliese Marie Frank <br> 1929-1945, German Jewish Refugee and Diarist")
        break

       case 203:
        check = 1
        document.write("\"Winners are losers who got up and gave it one more try.\" <br> <br> Dennis DeYoung <br> Rock Musician and Songwriter")
        break 
        
       case 204:
        check = 1
        document.write("\"The hardest arithmetic to master is that which enables us to count our blessings.\" <br> <br> Eric Hoffer <br> 1902-1983, Author and Philosopher")
        break

       case 205:
        check = 1
        document.write("\"Every great work, every great accomplishment, has been brought into manifestation through holding to the vision, and often just before the big achievement, comes apparent failure and discouragement.\" <br> <br> Florence Scovel Shinn <br> Artist and Author")
        break   
        
       case 206:
        check = 1
        document.write("\"It is the greatest of all mistakes to do nothing because you can do only a little. Do what you can.\" <br> <br> Sydney Smith <br> <br> 1771-1845, Writer and Clergyman")
        break

       case 207:
        check = 1
        document.write("\"Everywhere in life, the true question is not what we gain, but what we do.\" <br> <br> Thomas Carlyle")
        break   
        
       case 208:
        check = 1
        document.write("\"A person who is gifted sees the essential point and leaves the rest as surplus.\" <br> <br> Thomas Carlyle")
        break

       case 209:
        check = 1
        document.write("\"A man\'s felicity consists not in the outward and visible blessing of fortune, but in the inward and unseen perfections and riches of the mind.\" <br> <br> Thomas Carlyle")
        break
        
       case 210:
        check = 1
        document.write("\"A mentor is someone who sees more talent and ability within you, than you see in yourself, and helps bring it out of you.\" <br> <br> Bob Proctor <br> Author, Speaker and Success Coach")
        break

       case 211:
        check = 1
        document.write("\"The only thing that stands between a man and what he wants from life is often merely the will to try it and the faith to believe that it is possible.\" <br> <br> Richard M. DeVos <br> Co-Founder of Amway Corp.")
        break
        
      case 212:
        check = 1
        document.write("\"Whatever you want in life, other people are going to want it too. Believe in yourself enough to accept the idea that you have an equal right to it.\" <br> <br> Diane Sawyer <br> TV Personality")
        break

       case 213:
        check = 1
        document.write("\"Stand up to your obstacles and do something about them. You will find that they haven\'t half the strength you think they have.\" <br> <br> Norman Vincent Peale <br> 1898-1993, Pastor, Speaker and Author")
        break
        
       case 214:
        check = 1
        document.write("\"Good humor is a tonic for mind and body. It is the best antidote for anxiety and depression. It is a business asset. It attracts and keeps friends. It lightens human burdens. It is the direct route to serenity and contentment.\" <br> <br> Grenville Kleiser <br> 1868-1953, Author")
        break

       case 215:
        check = 1
        document.write("\"If you watch how nature deals with adversity, continually renewing itself, you can\'t help but learn.\" <br> <br> Bernie Siegel, MD <br> Doctor, Author and Lecturer")
        break
        
       case 216:
        check = 1
        document.write("\"I do not know anyone who has gotten to the top without hard work. That is the recipe. It will not always get you to the top, but it will get you pretty near.\" <br> <br> Margaret Thatcher <br> Former British Prime Minister")
        break

       case 217:
        check = 1
        document.write("\"Four short words sum up what has lifted most successful individuals above the crowd: a little bit more. They did all that was expected of them and a little bit more.\" <br> <br> A. Lou Vickery <br> Writer")
        break
        
                
       case 218:
        check = 1
        document.write("\"You can\'t get swept off your feet if you are sitting down. Stand up and be noticed!\" <br> <br> Claire Camden <br> Single Woman Standing Up, Motivational and Customer Service Consultant")
        break

       case 219:
        check = 1
        document.write("\"There is no use whatever trying to help people who do not help themselves. You cannot push anyone up a ladder unless he be willing to climb himself.\" <br> <br> Andrew Carnegie")
        break 
        
       case 220:
        check = 1
        document.write("\"Don\'t fight a problem, solve it!\" <br> <br> Millard Fuller <br> Founder of Habitat for Humanity International")
        break

       case 221:
        check = 1
        document.write("\"Never doubt that a small group of thoughtful, committed citizens can change the world; indeed, it\'s the only thing that ever has.\" <br> <br> Margaret Mead <br> 1901-1978, Anthropologist")
        break   
        
       case 222:
        check = 1
        document.write("\"Good timber does not grow with ease; the stronger the wind, the stronger the trees.\" <br> <br> J. Willard Marriott <br> Founder of Marriott Hotels")
        break

       case 223:
        check = 1
        document.write("\"What is important is not what happens to us, but how we respond to what happens to us.\" <br> <br> Jean-Paul Sartre")
        break   
        
       case 224:
        check = 1
        document.write("\"Security is mostly a superstition. It does not exist in nature nor do the children of man as a whole experience it. Avoiding danger is no safer in the long run than outright exposure. Life is either a daring adventure, or nothing.\" <br> <br> Helen Keller <br> 1880-1968, Blind/Deaf Author and Lecturer")
        break

       case 225:
        check = 1
        document.write("\"Nothing will ever be attempted if all possible objections must first be overcome.\" <br> <br> Samuel Johnson <br> 1709-1784, Author")
        break
        
       case 226:
        check = 1
        document.write("\"Things turn out best for the people who make the best of the way things turn out\" <br> <br> Art Linkletter <br> Radio and TV Personality")
        break

       case 227:
        check = 1
        document.write("\"It is inevitable that some defeat will enter even the most victorious life. The human spirit is never finished when it is defeated... it is finished when it surrenders.\" <br> <br> Ben Stein <br> Professor and Writer")
        break
        
      case 228:
        check = 1
        document.write("\"Plenty of people miss their share of happiness, not because they never found it, but because they didn\'t stop to enjoy it.\" <br> <br> William Feather <br> 1889-1981, Writer")
        break

       case 229:
        check = 1
        document.write("\"Someday\" may never come. So live each day better than the last. That way you\'ll wake up with so much excitement and anticipation you\'ll jump out of bed and shout \"I can\'t wait!\" <br><br> Bob Perks <br> Author and Speaker")
        break
        
       case 230:
        check = 1
        document.write("\"Look at everything as though you were seeing it either for the first or last time. Then your time on earth will be filled with glory.\" <br><br> Betty Smith <br> 1896-1972, Novelist")
        break

       case 231:
        check = 1
        document.write("\"To be upset about what you don\'t have is to waste what you do have.\" <br><br> Ken Keyes, Jr. <br> 1921-1995, Personal Growth Leader and Peace Advocate")
        break
        
       case 232:
        check = 1
        document.write("\"The secret of getting ahead is getting started. The secret of getting started is breaking your complex overwhelming tasks into small manageable tasks, and then starting on the first one.\" <br><br> Mark Twain")
        break

       case 233:
        check = 1
        document.write("\"If things are not going well with you, begin your effort at correcting the situation by carefully examining the service you are rendering, and especially the spirit in which you are rendering it.\" <br><br> Roger Babson <br> 1875-1967, Statistician and Columnist")
        break
                        
       case 234:
        check = 1
        document.write("\"Pain is temporary. It may last a minute, an hour, a day, or a year, but eventually it will subside and something else will take its place. If I quit, however, it lasts forever.\" <br><br> Lance Armstrong <br> Cancer Survivor and Athlete")
        break

       case 235:
        check = 1
        document.write("\"The wise man will be the master of his mind.  A fool will be its slave.\" <br><br> Publius Syrius")
        break 
        
       case 236:
        check = 1
        document.write("\"Great hearts steadily send forth the secret forces that incessantly draw great events.\" <br><br> Ralph Waldo Emerson <br> 1803-1882, Poet and Essayist")
        break

       case 237:
        check = 1
        document.write("\"The best job goes to the person who can get it done without passing the buck or coming back with excuses.\" <br><br> Napoleon Hill <br> 1883-1970, Speaker and Motivational Writer")
        break   
        
       case 238:
        check = 1
        document.write("\"One of the secrets of getting more done is to make a TO DO List every day, keep it visible, and use it as a guide to action as you go through the day.\" <br><br> Alan Lakein <br> Time Management Expert and Author")
        break

       case 239:
        check = 1
        document.write("\"The bravest thing you can do when you are not brave is to profess courage and act accordingly.\" <br><br> Corra May Harris <br> 1869-1935, Author")
        break   
        
       case 240:
        check = 1
        document.write("\"There is more treasure in books than in all the pirate\'s loot on Treasure Island...and best of all, you can enjoy these riches every day of your life.\" <br><br> Walt Disney <br> 1901-1966, Artist and Film Producer")
        break

       case 241:
        check = 1
        document.write("\"You must go after your wish. As soon as you start to pursue a dream, your life wakes up and everything has meaning.\" <br><br> Barbara Sher <br> Author")
        break
        
       case 242:
        check = 1
        document.write("\"I think what I represent is achieving what you want in life. It\'s a matter of your attitude. Some people have a negative attitude, and that\'s their disability.\" <br><br> Marla Runyan <br> Legally Blind US 1500M Olympic Hopeful")
        break

       case 243:
        check = 1
        document.write("\"A life of reaction is a life of slavery, intellectually and spiritually. One must fight for a life of action, not reaction.\" <br><br> Rita Mae Brown <br> Author")
        break
        
      case 244:
        check = 1
        document.write("\"The price of success is hard work, dedication to the job at hand, and the determination that whether we win or lose, we have applied the best of ourselves to the task at hand.\" <br><br> Vince Lombardi <br> 1913-1970, Football Coach")
        break

       case 245:
        check = 1
        document.write("\"If there is no struggle, there is no progress.\'\" <br><br> Fredrick Douglas")
        break
        
       case 246:
        check = 1
        document.write("\"If you have strength, you find times when you really need to use it. And if you don\'t have strength, you find times when you wish you did.\" <br><br> Brooks Kubik <br> Author of Dinosaur Training")
        break

       case 247:
        check = 1
        document.write("\"Man often becomes what he believes himself to be. If I keep on saying to myself that I cannot do a certain thing, it is possible that I may end by really becoming incapable of doing it. On the contrary, if I shall have the belief that I can do it, I shall surely acquire the capacity to do it, even if I may not have it at the beginning.\" <br><br> Mahatma Gandhi <br> 1869-1948, Indian Nationalist Leader")
        break
        
       case 248:
        check = 1
        document.write("\"You can\'t just sit there and wait for people to give you that golden dream. You\'ve got to get out there and make it happen for yourself.\" <br><br> Diana Ross <br> Singer and Actress")
        break

       case 249:
        check = 1
        document.write("\"Defeat is not the worst of failures. Not to have tried is the true failure.\" <br><br> George E. Woodberry <br> 1855-1930, Writer and Critic")
        break
                    
       case 250:
        check = 1
        document.write("\"Life has taught us that love does not consist in gazing at each other but in looking outward together in the same direction.\" <br><br> Antoine De Saint-Exupery <br> 1900-1944, Writer")
        break

       case 251:
        check = 1
        document.write("\"I don\'t subscribe to the thesis, \'Let the buyer beware,\' I prefer the disregarded one that goes, \'Let the seller be honest.\'\" <br><br> Isaac Asimov <br> 1920-1992, Writer")
        break 
        
       case 252:
        check = 1
        document.write("\"I can feel guilty about the past, apprehensive about the future, but only in the present can I act. The ability to be in the present moment is a major component of mental wellness.\" <br><br> Abraham Maslow <br> 1908-1970, Psychologist")
        break

       case 253:
        check = 1
        document.write("\"We act as though comfort and luxury were the chief requirements of life, when all that we need to make us really happy is something to be enthusiastic about.\" <br><br> Charles Kingsley <br> 1819-1875, Author and Clergyman")
        break   
        
       case 254:
        check = 1
        document.write("\"Reflect upon your present blessings, of which every man has plenty; not on your past misfortunes, of which all men have some.\" <br><br> Charles Dickens <br> 1812-1870, Novelist")
        break

       case 255:
        check = 1
        document.write("\"Inside of a ring or out, ain\'t nothing wrong with going down. It\'s staying down that\'s wrong.\" <br><br> Muhammad Ali <br> Boxer")
        break   
        
       case 256:
        check = 1
        document.write("\"Whatever course you decide upon, there is always someone to tell you that you are wrong. There are always difficulties arising which tempt you to believe that your critics are right. To map out a course of action and follow it to an end requires...courage.\" <br><br> Ralph Waldo Emerson <br> 1803-1882, Poet and Essayist")
        break

       case 257:
        check = 1
        document.write("\"I am responsible for my own well-being, my own happiness. The choices and decisions I make regarding my life directly influence the quality of my days.\" <br><br> Kathleen Andrus <br> Author")
        break
        
       case 258:
        check = 1
        document.write("\"It\'s tough to get ahead when you waste your time getting even.\" <br><br> Lou Holtz <br>Football Coach")
        break

       case 259:
        check = 1
        document.write("\"This one step - choosing a goal and staying to it - changes everything.\" <br><br> Scott Reed <br> Political Advisor and Speaker")
        break
        
      case 260:
        check = 1
        document.write("\"Happiness is to be found along the way, not at the end of the road, for then the journey is over and it is too late.\" <br><br> Robert R. Updegraff")
        break

       case 261:
        check = 1
        document.write("\"There is a way to look at the past. Don\'t hide from it. It will not catch you - if you don\'t repeat it.\" <br><br> Pearl Bailey <br> 1918-1990, Singer and Actress")
        break
        
       case 262:
        check = 1
        document.write("\"It is easy to sit up and take notice. What is difficult is getting up and taking action.\" <br><br> Al Batt <br> Writer and Speaker")
        break

       case 263:
        check = 1
        document.write("\"Most of the things worth doing in the world had been declared impossible before they were done.\" <br><br> Louis D. Brandeis <br> 1856-1941, American Judge")
        break
        
       case 264:
        check = 1
        document.write("\"The only person who succeeds is the person who is progressively realizing a worthy ideal. That\'s the person who says, \'I\'m going to become this\' - and then begins to work toward that goal.\" <br><br> Earl Nightingale <br><br> 1921-1989, Author")
        break

       case 265:
        check = 1
        document.write("\"Throughout all history, the great wise men and teachers, philosophers, and prophets have disagreed with one another on many different things. It is only on this one point that they are in complete and unanimous agreement. - We become what we think about.\" <br><br> Earl Nightingale <br> 1921-1989, Author")
        break
                       
       case 266:
        check = 1
        document.write("\"Look at the abundance all around you as you go about your daily business. You have as much right to this abundance as any other living creature. It\'s yours for the asking.\" <br><br> Earl Nightingale <br> 1921-1989, Author")
        break

       case 267:
        check = 1
        document.write("\"Strength does not come from winning. Your struggles develop your strength. When you go through hardship and decide not to surrender, that is strength.\" <br><br> Arnold Schwarzenegger <br> Actor and Governor of California")
        break 
        
       case 268:
        check = 1
        document.write("\"Don\'t be afraid of the space between your dreams and reality. If you can dream it, you can make it so.\" <br><br> Belva Davis <br> Award-Winning Journalist")
        break

       case 269:
        check = 1
        document.write("\"Most of our obstacles would melt away if, instead of cowering before them, we should make up our minds to walk boldly through them.\" <br><br> Orison Swett Marden <br> 1850-1924, Founder of Success Magazine")
        break   
        
       case 270:
        check = 1
        document.write("\"To accomplish great things, we must not only act, but also dream, not only plan, but also believe.\" <br><br> Anatole France <br> 1844-1924, French Novelist")
        break

       case 271:
        check = 1
        document.write("\"Obstacles don\'t have to stop you. If you run into a wall, don\'t turn around and give up. Figure out how to climb it, go through it, or work around it.\" <br><br> Michael Jordan <br> Basketball Player")
        break   
        
       case 272:
        check = 1
        document.write("\"Formulate and stamp indelibly on your mind a mental picture of yourself as succeeding. Hold this picture tenaciously and never permit it to fade. Your mind will seek to develop this picture!\" <br><br> Dr. Norman Vincent Peale <br> 1898-1993, Author of \"The Power of Positive Thinking\"")
        break

       case 273:
        check = 1
        document.write("\"It is no sin to attempt and fail. The only sin is to not make the attempt.\" <br><br> Suellen Fried <br> Author and Speaker")
        break
        
       case 274:
        check = 1
        document.write("\"Act as if everything you think, say and do determines your entire life - because in reality, it does!\" <br><br> Laurelle Adrian <br> Author")
        break

       case 275:
        check = 1
        document.write("\"It is not the straining for great things that is most effective; it is the doing of the little things, the common duties, a little better and better.\" <br><br> Elizabeth Stuart Phelps <br> 1844-1911, Writer")
        break
        
      case 276:
        check = 1
        document.write("\"I am determined to be cheerful and happy in whatever situation I may find myself. For I have learned that the greater part of our misery or unhappiness is determined not by our circumstance but by our disposition.\" <br><br> Martha Washington <br> 1732-1802, First American First Lady")
        break

       case 277:
        check = 1
        document.write("\"Success is liking yourself, liking what you do, and liking how you do it.\" <br><br> Maya Angelou <br> Poet and Writer")
        break
        
       case 278:
        check = 1
        document.write("\"The price of hating other human beings is loving one\'s own self less.\" <br><br> Eldridge Cleaver <br> 1935-1998, Writer and Activist")
        break

       case 279:
        check = 1
        document.write("\"You may be disappointed if you fail, but you are doomed if you don\'t try.\" <br><br> Beverly Sills <br> Opera Singer")
        break
        
       case 280:
        check = 1
        document.write("\"I know of no more encouraging fact than the unquestionable ability of man to elevate himself through conscious endeavor.\" <br><br> Dale Carnegie <br> 1888-1955, Author and Trainer")
        break

       case 281:
        check = 1
        document.write("\"Expect people to be better than they are; it helps them to become better. But don\'t be disappointed when they\'re not; it helps them to keep trying.\" <br><br> Merry Browne <br> Author")
        break
        
             
       case 282:
        check = 1
        document.write("\"Iron rusts from disuse, stagnant water loses its purity, and in cold weather becomes frozen: even so does inaction sap the vigors of the mind.\" <br><br> Leonardo da Vinci <br> 1452-1519, Inventor, Architect, Painter, Scientist and Sculptor")
        break

       case 283:
        check = 1
        document.write("\"Patience and perseverance have a magical effect before which difficulties disappear and obstacles vanish.\" <br><br> John Quincy Adams <br> 1767-1848, Sixth President of the United States")
        break 
        
       case 284:
        check = 1
        document.write("\"I was always looking outside myself for strength and confidence, but it comes from within. It is there all the time.\" <br><br> Anna Freud <br> 1895-1982, Child Psychology Expert and Author")
        break

       case 285:
        check = 1
        document.write("\"The habit of looking on the best side of every event is worth more than a thousand pounds a year.\" <br><br> Samuel Johnson <br> 1709-1784, Author")
        break   
        
       case 286:
        check = 1
        document.write("\"Select a few people to be particularly kind to today - those you were a little harsh with yesterday.\" <br><br> Norman Vincent Peale <br> 1898-1993, Author and Speaker")
        break

       case 287:
        check = 1
        document.write("\"Most wealth is inconspicuous. The man down the street driving the nice car and living in the mansion could easily have greater debt and a lower net worth than the stealthy and wealthy plumber who drives a beat-up truck but seems to work only when he doesn\'t feel like fishing.\" <br><br> Loral Langemeier <br> Author of The Millionaire Maker")
        break   
        
       case 288:
        check = 1
        document.write("\"A leader leads through inspiration. People like to work with people going places and are starved for the energy and excitement that business was always meant to have.\" <br><br> Loral Langemeier <br> Author")
        break

       case 289:
        check = 1
        document.write("\"If you want something new, you must do something different today. There\'s no finish line to this pursuit; you should always be planning for what\'s possible. Diligence, planning, knowing what you want - these are what it takes to get to a better place. Opportunities swirl around this planet constantly. I\'m sure that if each of us felt we deserved the best, we would believe more in ourselves, and in others, and in all that\'s out there to share, and we would reach out for a handful of that opportunity.\" <br><br> Loral Langemeier <br> Author")
        break
        
       case 290:
        check = 1
        document.write("\"One must learn by doing the thing, for though you think you know it, you have no certainty until you try.\" <br><br> - Aristotle")
        break
        
 /* page 41 */

     
       case 291:
        check = 1
        document.write("\"This became a credo of mine...attempt the impossible in order to improve your work.\"<br><br> Bette Davis <br> 1908-1989, Actress")
        break
        
       
      case 292:
        check = 1
        document.write("\"When plans are laid in advance, it is surprising how often the circumstances fit in with them.\" <br><br>Sir William Osler <br> 1849-1919, Physician")
        break

       case 293:
        check = 1
        document.write("\"To the dull mind all nature is leaden. To the illumined mind the whole world burns and sparkles with light.\"<br><br>Ralph Waldo Emerson<br>1803-1882, Poet and Essayist")
        break
        
       case 294:
        check = 1
        document.write("\"The fishermen know that the sea is dangerous and the storm terrible, but they have never found these dangers sufficient reason for remaining ashore.\"<br><br>Vincent Van Gogh<br>1853-1890, Painter")
        break

       case 295:
        check = 1
        document.write("\"Act well at the moment, and you have performed a good action for all eternity.\"<br><br>Johann Kaspar Lavater<br>1741-1801, Theologian")
        break
        
       case 296:
        check = 1
        document.write("\"I AM - the two most powerful words in the world, for whatever we put after them becomes our reality.\"<br><br>Susan Howson<br>Author and Coach")
        break

       case 297:
        check = 1
        document.write("\"Pressure is a word that is misused in our vocabulary. When you start thinking of pressure, it\'s because you\'ve started to think of failure.\"<br><br>Tommy Lasorda<br>American Baseball Manager")
        break
              
       case 298:
        check = 1
        document.write("\"So what do we do? Anything - something. So long as we just don\'t sit there. If we screw it up, start over. Try something else. If we wait until we\'ve satisfied all the uncertainties, it may be too late.\"<br><br>Lee Iacocca<br>Former Chairman of Chrysler Corporation")
        break

       case 299:
        check = 1
        document.write("\"I don\'t believe in pessimism. If something doesn\'t come up the way you want, forge ahead. If you think it\'s going to rain, it will.\"<br><br>Clint Eastwood<br>Actor and Director")
        break 
        
       case 300:
        check = 1
        document.write("\"Those who bring sunshine into the lives of others cannot keep it from themselves.\"<br><br>James Matthew Barrie<br>1860-1937, Author of Peter Pan")
        break
     
       case 301:
        check = 1
        document.write("\"One should take good care not to grow too wise for so great a pleasure of life as laughter.\" <br><br> Joseph Addison <br> 1672-1719, British Poet and Statesman")
        break
                
       case 302:
        check = 1
        document.write("\"You will find as you look back upon your life that the moments when you have truly lived are the moments when you have done things in the spirit of love.\"<br><br>Henry Drummond<br>1851-1897, Scientist, evangelist and Author")
        break

       case 303:
        check = 1
        document.write("\"All our dreams can come true, if we have the courage to pursue them.\"<br><br>Walt Disney<br>1901-1966, Cartoon Artist and Filmmaker")
        break 
        
       case 304:
        check = 1
        document.write("\"Nothing is as real as a dream. The world can change around you, but your dream will not. Responsibilities need not erase it. Duties need not obscure it. Because the dream is within you, no one can take it away.\"<br><br>Tom Clancy<br>Top Selling Author")
        break

       case 305:
        check = 1
        document.write("\"We will receive not what we idly wish for but what we justly earn. Our rewards will always be in exact proportion to our service.\"<br><br>Earl Nightingale<br>1922-1989, Author and Syndicated Radio Commentator")
        break   
        
       case 306:
        check = 1
        document.write("\"All of the great achievers of the past have been visionary figures; they were men and women who projected into the future. They thought of what could be, rather than what already was, and then they moved themselves into action, to bring these things into fruition.\"<br><br>Bob Proctor<br>Author and Speaker")
        break

       case 307:
        check = 1
        document.write("\"Keep on going and the chances are you will stumble on something, perhaps when you are least expecting it. I have never heard of anyone stumbling on something sitting down.\"<br><br>Charles F. Kettering<br>1876-1958, Engineer and Inventor")
        break   
        
       case 308:
        check = 1
        document.write("\"A happy person is not a person in a certain set of circumstances, but rather a person with a certain set of attitudes.\"<br><br>Hugh Downs<br>Veteran Journalist")
        break

       case 309:
        check = 1
        document.write("\"You can tell more about a person by what he says about others than you can by what others say about him.\"<br><br>Leo Aikman<br>Writer and Newspaper Editor")
        break
        
       case 310:
        check = 1
        document.write("\"Beginning today, treat everyone you meet as if they were going to be dead by midnight. Extend to them all the care, kindness and understanding you can muster, and do with no thought of any reward. Your life will never be the same again.\"<br><br>Og Mandino<br>1923-1996, Author of The Greatest Salesman in the World")
        break

       case 311:
        check = 1
        document.write("\"Yes, there are times when something is legitimately not our fault. Blaming others, however, keeps us in a stuck state and is ultimately rough on our own self-esteem.\"<br><br>Eric Allenbaugh<br>Author of Wake-Up Calls")
        break
        
      case 312:
        check = 1
        document.write("\"A sense of humor can help you overlook the unattractive, tolerate the unpleasant, cope with the unexpected, and smile through the unbearable.\"<br><br>Moshe Waldoks<br>Rabbi and Humorist")
        break

       case 313:
        check = 1
        document.write("\"We cannot tell what may happen to us in the strange medley of life. But we can decide what happens in us...how we can take it, what we can do with it...and that is what really counts in the end.\"<br><br>Joseph Fort Newton<br><br>Author")
        break
        
       case 314:
        check = 1
        document.write("\"In all affairs it\'s a healthy thing now and then to hang a question mark on the things you have long taken for granted.\"<br><br>Bertrand Russell<br>1872-1970, Author and Mathematician")
        break

       case 315:
        check = 1
        document.write("\"We are told that talent creates its own opportunities. But it sometimes seems that intense desire creates not only its own opportunities, but its own talents.\"<br><br>Eric Hoffer<br>1902-1983, Author and Philosopher")
        break
        
       case 316:
        check = 1
        document.write("\"There\'s no scarcity of opportunity to make a living at what you love. There is only a scarcity of resolve to make it happen.\"<br><br>Wayne Dyer<br>Author")
        break

       case 317:
        check = 1
        document.write("\"If you believe in unlimited quality and act in all your business dealings with total integrity, the rest will take care of itself.\"<br><br>Frank Perdue<br>Founder of Perdue Chicken")
        break
        
                
       case 318:
        check = 1
        document.write("\"A dream is just a dream. A goal is a dream with a plan and a deadline.\"<br><br>Harvey Mackay<br>Author")
        break

       case 319:
        check = 1
        document.write("\"Keep away from small people who try to belittle your ambitions. Small people always do that, but the really great make you feel that you, too, can become great.\"<br><br>Mark Twain<br>1835-1910, Writer and Humorist")
        break 
        
       case 320:
        check = 1
        document.write("\"Do you remember the things you were worrying about a year ago? How did they work out? Didn\'t you waste a lot of fruitless energy on account of most of them? Didn\'t most of them turn out all right after all?\"<br><br>Dale Carnegie<br>1888-1955, Author and Trainer")
        break

       case 321:
        check = 1
        document.write("\"It\'s the constant and determined effort that breaks down all resistance, sweeps away all obstacles.\"<br><br>Claude M. Bristol<br>1891-1951, Author\"")
        break   
        
       case 322:
        check = 1
        document.write("\"The gift of fantasy has meant more to me than my talent for absorbing knowledge.\"<br><br>Albert Einstein<br>1879-1955, Physicist")
        break

       case 323:
        check = 1
        document.write("\"In the presence of greatness, pettiness disappears. In the absence of a great dream, pettiness prevails.\"<br><br>Robert Fritz<br>Composer, Filmmaker and Author")
        break   
        
       case 324:
        check = 1
        document.write("\"Don\'t ask yourself what the world needs - ask yourself what makes you come alive, and then go do it. Because what the world needs is people who have come alive.\"<br><br>Harold Thurman Whitman<br>Philosopher and Theologian")
        break

       case 325:
        check = 1
        document.write("\"I have always believed, and I still believe, that whatever good or bad fortune may come our way we can always give it meaning and transform it into something of value.\"<br><br>Hermann Hesse<br>1877-1962, Novelist")
        break
        
       case 326:
        check = 1
        document.write("\"Without leaps of imagination, or dreaming, we lose the excitement of possibilities. Dreaming, after all, is a form of planning.\"<br><br>Gloria Steinem<br>Author and Journalist")
        break

       case 327:
        check = 1
        document.write("\"It is no great thing to be humble when you are brought low; but to be humble when you are praised is a great and rare attainment.\"<br><br>St. Bernard<br>1090-1153, French Theologian and Reformer")
        break
        
      case 328:
        check = 1
        document.write("\"To believe in something not yet proved and to underwrite it with our lives: it is the only way we can leave the future open.\"<br><br>Lillian Smith<br>1897-1966, Writer")
        break

       case 329:
        check = 1
        document.write("\"I am only one; but still I am one. I cannot do everything, but still I can do something. I will not refuse to do the something I can do.\"<br><br>Helen Keller<br>1880-1968, Author and Lecturer")
        break
        
       case 330:
        check = 1
        document.write("\"I live by this credo: Have a little laugh at life and look around you for happiness instead of sadness. Laughter had always brought me out of unhappy situations. Even in your darkest moment, you usually can find something to laugh about if you try hard enough.\"<br><br>Red Skelton<br>1913-1997, Comedian")
        break

       case 331:
        check = 1
        document.write("\"We can\'t fear the past. Fear is a future thing. And since the future\'s all in our heads, fear must be a head thing.\"<br><br>Tom Payne<br>Career Development Expert")
        break
        
       case 332:
        check = 1
        document.write("\"Make each day useful and cheerful and prove that you know the worth of time by employing it well. Then youth will be happy, old age without regret and life a beautiful success.\"<br><br>Louisa May Alcott<br>1832-1888, Author")
        break

       case 333:
        check = 1
        document.write("\"If you had a friend who talked to you like you sometimes talk to yourself, would you continue to hang around with that person?\"<br><br>Rob Bremer<br>Speaker")
        break
                        
       case 334:
        check = 1
        document.write("\"If we are ever to enjoy life, now is the time, not tomorrow or next year... Today should always be our most wonderful day.\"<br><br>Thomas Dreier<br>Author")
        break

       case 335:
        check = 1
        document.write("\"Think positively and masterfully, with confidence and faith, and life becomes more secure, more fraught with action, richer in achievement and experience.\"<br><br>Eddie Rickenbacker<br>1890-1973, Aviator and Businessman")
        break 
        
       case 336:
        check = 1
        document.write("\"I studied the lives of great men and women, and I found that the men and women who got to the top were those who did the jobs they had in hand, with everything they had of energy and enthusiasm and hard work.\"<br><br>Harry S. Truman<br>1884-1972, Thirty-Third U.S. President")
        break

       case 337:
        check = 1
        document.write("\"No one can make you feel inferior without your consent.\"<br><br>Eleanor Roosevelt<br>1884-1962, Former First Lady of the U.S.")
        break   
        
       case 338:
        check = 1
        document.write("\"I can feel guilty about the past, apprehensive about the future, but only in the present can I act. The ability to be in the present moment is a major component of mental wellness.\"<br><br>Abraham Maslow<br>1908-1970, Psychologist")
        break

       case 339:
        check = 1
        document.write("\"Make sure that your actions and behaviors live up to and reflect the words and ideas, promises and commitments that come out of your mouth.\"<br><br>Steve Farber")
        break   
        
       case 340:
        check = 1
        document.write("\"The clearest sign of wisdom is continued cheerfulness.\"<br><br>Michel de Montaigne<br>1533-1592, Essayist")
        break

       case 341:
        check = 1
        document.write("\"The greatest good you can do for another is not just to share your riches, but to reveal to him his own.\"<br><br>Benjamin Disraeli<br>1804-1881, Former British Prime Minister")
        break
        
       case 342:
        check = 1
        document.write("\"If we had no winter, the spring would not be so pleasant: if we did not sometimes taste of adversity, prosperity would not be so welcome.\"<br><br>Ann Bradstreet<br>1612-1672, Poet")
        break

       case 343:
        check = 1
        document.write("\"Focus more on your desire than on your doubt, and the dream will take care of itself. You may be surprised at how easily this happens. Your doubts are not as powerful as your desires, unless you make them so.\"<br><br>Marcia Wieder<br>Speaker and Author")
        break
        
      case 344:
        check = 1
        document.write("\"What a disgrace it is for a man to grow old without ever seeing the beauty and the strength of which his body is capable!\"<br><br>- Socrates")
        break

       case 345:
        check = 1
        document.write("\"To give real service you must add something which cannot be bought or measured with money, and that is sincerity and integrity.\"<br><br>Douglas Adams<br>Author")
        break
        
       case 346:
        check = 1
        document.write("\"No matter how small and unimportant what we are doing may seem, if we do it well, it may soon become the step that will lead us to better things.\"<br><br>Channing Pollock<br>Actor, Writer and Composer")
        break

       case 347:
        check = 1
        document.write("\"When you get into a tight place and everything goes against you, till it seems as though you could not hold on a minute longer, never give up then, for that is just the place and time that the tide will turn.\"<br><br>Harriet Beecher Stowe<br>1811-1896, Novelist")
        break
        
       case 348:
        check = 1
        document.write("\"Keeping score of old scores and scars, getting even and one-upping, always make you less than you are.\"<br><br>Malcolm Forbes<br>1919-1990, Author and Publisher")
        break

       case 349:
        check = 1
        document.write("\"Don\'t speak evil of someone if you don\'t know for certain, and if you do know, ask yourself why am I telling it?\"<br><br>Johann Kaspar Lavater<br>1741-1801, Theologian")
        break
                    
       case 350:
        check = 1
        document.write("\"Set your sights high, the higher the better. Expect the most wonderful things to happen, not in the future but right now. Realize that nothing is too good. Allow absolutely nothing to hamper you or hold you up in any way.\"<br><br>Eileen Caddy<br>Author")
        break

       case 351:
        check = 1
        document.write("\"You are never given a wish without also being given the power to make it come true.\"<br><br>Richard Bach<br>Writer")
        break 
        
       case 352:
        check = 1
        document.write("\"If we are basically positive in attitude, expecting and envisioning pleasure, satisfaction and happiness, we will attract and create people, situations, and events which conform to our positive expectations.\"<br><br>Shakti Gawain<br>Author of Creative Visualization")
        break

       case 353:
        check = 1
        document.write("\"Picture yourself vividly as winning and that alone will contribute immeasurably to success. Great living starts with a picture, held in your imagination, of what you would like to do or be.\"<br><br>Harry Emerson Fosdick<br>1878-1969, Minister")
        break   
        
       case 354:
        check = 1
        document.write("\"Our greatest weakness lies in giving up. The most certain way to succeed is always to try just one more time.\"<br><br>Thomas Edison<br>1847-1931, Inventor and Entrepreneur")
        break

       case 355:
        check = 1
        document.write("\"We act as though comfort and luxury were the chief requirements of life, when all that we need to make us really happy is something to be enthusiastic about.\"<br><br>Charles Kingsley<br>1819-1875, Author and Clergyman")
        break   
        
       case 356:
        check = 1
        document.write("\"Really big people are, above everything else, courteous, considerate and generous - not just to some people in some circumstances - but to everyone all the time.\"<br><br>Thomas J. Watson<br><br>1874-1956, Founder of IBM")
        break

       case 357:
        check = 1
        document.write("\"The key that unlocks energy is desire. It\'s also the key to a long and interesting life. If we expect to create any drive, any real force within ourselves, we have to get excited.\"<br><br>Earl Nightingale<br>1921-1989, Radio Announcer and Author")
        break
        
       case 358:
        check = 1
        document.write("\"When we accept tough jobs as a challenge and wade into them with joy and enthusiasm, miracles can happen.\"<br><br>Arland Gilbert<br>Writer")
        break

       case 359:
        check = 1
        document.write("\"One of the greatest discoveries a man makes, one of his great surprises, is to find he can do what he was afraid he couldn\'t do.\"<br><br>Henry Ford<br>1863-1947, Founder of Ford Motor Company")
        break
        
      case 360:
        check = 1
        document.write("\"I now realize there are millions of self-made millionaires who started with nothing. They dug inside themselves to find the answers and they succeeded. There is nothing anyone else can do that I can\'t do.\"<br><br>Dean Graziosi<br>Author of Totally Fulfilled")
        break

       case 361:
        check = 1
        document.write("\"Just don\'t give up trying to do what you really want to do. Where there is love and inspiration, I don\'t think you can go wrong.\"<br><br>Ella Fitzgerald<br>1917-1996, Jazz Singer")
        break
        
       case 362:
        check = 1
        document.write("\"Your living is determined not so much by what life brings you as by the attitude you bring to life; not so much by what happens to you as by the way your mind looks at what happens.\"<br><br>Lewis L. Dunnington<br>Author")
        break

       case 363:
        check = 1
        document.write("\"There is a law in psychology that if you form a picture in your mind of what you would like to be, and you keep and hold that picture there long enough, you will soon become exactly as you have been thinking.\"<br><br>William James<br>1842-1910, Psychologist and Author")
        break
        
       case 364:
        check = 1
        document.write("\"It\'s the repetition of affirmations that leads to belief. And once that belief becomes a deep conviction, things begin to happen.\"<br><br>Claude M. Bristol<br>1891-1951, Author of The Magic of Believing")
        break

       case 365:
        check = 1
        document.write("\"Sometimes when I consider what tremendous consequences come from little things. I am tempted to think there are no little things.\"<br><br>Bruce Barton<br>1886-1967, Author and Advertising Executive")
        break
        

       case 366:
        check = 1
        document.write("\"If you can dream it, you can do it. Always remember this whole thing was started by a mouse.\"<br><br>Walt Disney<br>1901-1966, Artist and Film Producer")
        break

       case 367:
        check = 1
        document.write("\"Treat your friends as you do your pictures, and place them in their best light.\"<br><br>Jennie Jerome Churchill<br>1854-1921, Mother of Winston Churchill")
        break

       case 368:
        check = 1
        document.write("\"How far you go in life depends on your being tender with the young, compassionate with the aged, sympathetic with the striving, and tolerant of the weak and strong. Because some day in life you will have been all these.\"<br><br>George Washington Carver<br>1864-1943, Scientist")
        break

       case 369:
        check = 1
        document.write("\"The greatest thief this world ever produced is procrastination, and he is still at large.\"<br><br>Henry Wheeler Shaw<br>1818-1885, Humorist")
        break

       case 370:
        check = 1
        document.write("\"The Law of Attraction attracts to you everything you need, according to the nature of your thought. Your environment and financial condition are the perfect reflection of your habitual thinking. Thought rules the world.\"<br><br>Dr. Joseph Edward Murphy<br>Surgeon")
        break
        
       case 371:
        check = 1
        document.write("\"Whenever you are asked if you can do a job, tell\'em, \'certainly I can!\' - and get busy and find out how to do it.\"<br><br>Theodore Roosevelt<br>1858-1919, Twenty-Sixth U.S. President")
        break

       case 372:
        check = 1
        document.write("\"It is inevitable that some defeat will enter even the most victorious life. The human spirit is never finished when it is defeated - it is finished when it surrenders.\"<br><br>Ben Stein<br>Professor and Writer")
        break
        
       case 373:
        check = 1
        document.write("\"Take pride in what you do. The kind of pride I\'m talking about is not the arrogant puffed-up kind; it\'s just the whole idea of caring - fiercely caring.\"<br><br>Red Aurbach<br>Professional Basketball Coach")
        break

       case 374:
        check = 1
        document.write("\"As life gets more frenzied, people are struggling to find balance and purpose. A coach simply helps you realize a more fulfilling and harmonious life, faster and easier.\"<br><br>Dayton Daily News")
        break
        
       case 375:
        check = 1
        document.write("\"Encourage one another. Many times a word of praise or thanks or appreciation or cheer has kept people on their feet.\"<br><br>Charles Swindoll<br>Pastor and Author")
        break

       case 376:
        check = 1
        document.write("\"Great opportunities to help others seldom come, but small ones surround us every day.\"<br><br>Sally Koch<br>Author")
        break
        
       case 377:
        check = 1
        document.write("\"The future is not a result of choices among alternative paths offered by the present, but a place that is created - created first in the mind and will, created next in activity. The future is not some place we are going to, but one we are creating. The paths are not to be found, but made, and the activity of making them, changes both the maker and the destination.\"<br><br>Deborah James<br>Business Consultant")
        break

       case 378:
        check = 1
        document.write("\"It is a very funny thing about life - if you refuse to accept anything but the best you very often get it.\"<br><br>W. Somerset Maugham<br>1874-1965, Novelist and Playwright")
        break
        
       case 379:
        check = 1
        document.write("\"Your success and happiness lie in you... Resolve to keep happy, and your joy and you shall form an invincible host against difficulties.\"<br><br>Helen Keller<br>1880-1968, Blind/Deaf Author and Lecturer")
        break

       case 380:
        check = 1
        document.write("\"It has been said that our anxiety does not empty tomorrow of its sorrow, but only empties today of its strength.\"<br><br>Charles Haddon Spurgeon<br>1834-1892, Preacher")
        break
        
       case 381:
        check = 1
        document.write("\"Often we allow ourselves to be upset by small things we should despise and forget. We lose many irreplaceable hours brooding over grievances that, in a year\'s time, will be forgotten by us and by everybody. No, let us devote our life to worthwhile actions and feelings, to great thoughts, real affections and enduring undertakings.\"<br><br>Andre Maurois<br>1885-1967, Writer")
        break

       case 382:
        check = 1
        document.write("\"Your chances of success are directly proportional to the degree of pleasure you desire from what you do. If you are in a job you hate, face the fact squarely and get out.\"<br><br>Michael Korda<br>Publisher")
        break
        
       case 383:
        check = 1
        document.write("\"Let us be about setting high standards for life, love, creativity, and wisdom. If our expectations in these areas are low, we are not likely to experience wellness. Setting high standards makes every day and every decade worth looking forward to.\"<br><br>Greg Anderson<br>Author of The 22 Non-Negotiable Laws of Wellness")
        break

       case 384:
        check = 1
        document.write("\"We cannot always control our thoughts, but we can control our words, and repetition impresses the subconscious, and we are then master of the situation.\"<br><br>Florence Scovel Shinn<br>Artist, Teacher and Author")
        break
        
       case 385:
        check = 1
        document.write("\"If you make the unconditional commitment to reach your most important goals, if the strength of your decision is sufficient, you will find the way and the power to achieve your goals.\"<br><br>Robert Conklin<br>Teacher, Author and Speaker")
        break
        
       case 386:
        check = 1
        document.write("\"When you face your fear, most of the time you will discover that it was not really such a big threat after all. We all need some form of deeply rooted, powerful motivation - it empowers us to overcome obstacles so we can live our dreams.\"<br><br>Les Brown<br>Speaker and Author")
        break

       case 387:
        check = 1
        document.write("\"Nothing in life is so hard that you can\'t make it easier by the way you take it.\"<br><br>Ellen Glasgow<br>1874-1945, Novelist")
        break
        
       case 388:
        check = 1
        document.write("\"Consciously or unconsciously, every one of us does render some service or other. If we cultivate the habit of doing this service deliberately, our desire for service will steadily grow stronger, and will make, not only our own happiness, but that of the world at large.\"<br><br>Mahatma Gandhi<br>1869-1948, Indian Political and Spiritual Leader")
        break

       case 389:
        check = 1
        document.write("\"The books that help you most are those which make you think the most. A great book that comes from a great thinker is a ship of thought, deep freighted with truth and beauty.\"<br><br>Theodore Parker<br>1810-1860, Minister")
        break
        
       case 390:
        check = 1
        document.write("\"The quality of a person\'s life is in direct proportion to their commitment to excellence, regardless of their chosen field of endeavor.\"<br><br>Vince Lombardi<br>1913-1970, Hall of Fame Football Coach")
        break
        
       case 391:
        check = 1
        document.write("\"The world cares very little about what a man or woman knows; it is what the man or woman is able to do that counts.\"<br><br>Booker T. Washington<br>1856-1915, Educator and Reformer")
        break

       case 392:
        check = 1
        document.write("\"The only opinion about your dream that really counts is yours. The negative comments of others merely reflect their limitations - not yours.\"<br><br>Cynthia Kersey<br>Author of Unstoppable")
        break
        
       case 393:
        check = 1
        document.write("\"You are what you repeatedly do. Excellence is not an event - it is a habit.\"<br><br>Aristotle<br>384-322 BC. Philosopher and Scientist")
        break

       case 394:
        check = 1
        document.write("\"People who have nothing positive to invest their emotions and passion in will seek things to complain about in order to achieve any emotional and passionate response whether they realize it or not.\"<br><br>Heather Jefferies")
        break
        
       case 395:
        check = 1
        document.write("\"If you take any activity, any art, any discipline, any skill, take it and push it as far as it has ever been pushed before, push it into the wildest edge of edges, then you force it into the realm of real Magic.\" <br><br>Tom Robbins")
        break
        
       case 396:
        check = 1
        document.write("\"Even a mistake may turn out to be the one thing necessary to a worth while achievement.\"<br><br>Henry Ford<br>1863-1947, American Industrialist")
        break

       case 397:
        check = 1
        document.write("\"A great attitude does much more than turn on the lights in our worlds; it seems to magically connect us to all sorts of serendipitous opportunities that were somehow absent before we changed.\"<br><br>Earl Nightingale<br>1921-1989, Author and Radio Personality")
        break
        
       case 398:
        check = 1
        document.write("\"Don\'t be afraid of the space between your dreams and reality. If you can dream it, you can make it so.\"<br><br>Belva Davis<br>Award-Winning Journalist")
        break

       case 399:
        check = 1
        document.write("\"You have to find something that you love enough to be able to take risks, jump over the hurdles and break through the brick walls that are always going to be placed in front of you. If you don\'t have that kind of feeling for what it is you are doing, you\'ll stop at the first giant hurdle.\"<br><br>George Lucas<br>Film Producer")
        break
        
       case 400:
        check = 1
        document.write("\"To accomplish great things, we must not only act, but also dream, not only plan, but also believe.\"<br><br>Anatole France<br>1844-1924, Novelist")
        break
        
       case 401:
        check = 1
        document.write("\"Our real problem is not our strength today; it is rather the vital necessity of action today to ensure our strength tomorrow.\"<br><br>Calvin Coolidge<br>1872-1933, Thirtieth President of the United States")
        break

       case 402:
        check = 1
        document.write("\"One can choose to go back toward safety or forward toward growth. Growth must be chosen again and again; fear must be overcome again and again.\"<br><br>Abraham Maslow<br>1908-1970, Psychologist")
        break
        
       case 403:
        check = 1
        document.write("\"Every achiever that I have ever met says, \'My life turned around when I began to believe in me.\'\"<br><br>Dr. Robert Schuller<br>Minister and Author")
        break

       case 404:
        check = 1
        document.write("\"I\'ve missed over 9,000 shots in my career. I\'ve lost almost 300 games. 26 times I\'ve been trusted to take the game-winning shot...and missed. I\'ve failed over and over and over again in my life. And that is why I succeed.\"<br><br>Michael Jordan<br>Professional Basketball Player")
        break
        
       case 405:
        check = 1
        document.write("\"To be a great champion you must believe you are the best. If you\'re not, pretend you are.\"<br><br>Muhammad Ali<br>World Champion Boxer")
        break
        
       case 406:
        check = 1
        document.write("\"The first requisite for success is the ability to apply your physical and mental energies to one problem incessantly without growing weary.\"<br><br>Thomas Edison<br>1847-1931, Inventor")
        break

       case 407:
        check = 1
        document.write("\"Only put off until tomorrow what you are willing to die having left undone.\"<br><br>Pablo Picasso<br>1881-1973, Artist")
        break
        
       case 408:
        check = 1
        document.write("\"The difference between the impossible and the possible lies in a person\'s determination.\"<br><br>Tommy Lasorda<br>Professional Baseball Manager")
        break

       case 409:
        check = 1
        document.write("\"The young do not know enough to be prudent, and therefore they attempt the impossible - and achieve it, generation after generation.\"<br><br>Pearl S. Buck<br>1892-1973, Pulitzer and Nobel Prize Winning Author")
        break
                
       case 410:
        check = 1
        document.write("\"Nurture your mind with great thoughts, for you will never go any higher than you think.\"<br><br>Benjamin Disraeli<br>1804-1881, British Statesman and Prime Minister")
        break
        
       case 411:
        check = 1
        document.write("\"Joy is what happens when we allow ourselves to recognize how good things really are.\"<br><br>Marianne Williamson<br>Author of A Return To Love")
        break

       case 412:
        check = 1
        document.write("\"If you know what to do to reach your goal, it\'s not a big enough goal.\"<br><br>Bob Proctor<br>Speaker and Author")
        break
        
       case 413:
        check = 1
        document.write("\"Please understand my friend, that where you find yourself tomorrow is a function of the positive decisions and actions you take today.\"<br><br>Akin A. Awolaja<br>Educator")
        break

       case 414:
        check = 1
        document.write("\"If pleasures are greatest in anticipation, just remember that this is also true of trouble.\"<br><br>Elbert Hubbard<br>1859-1915, Author and Publisher")
        break
        
       case 415:
        check = 1
        document.write("\"I see knowledge increasing and human power increasing. I see ever-increasing possibilities before life, and I see no limits set to it at all.\"<br><br>Herbert George Wells<br>1866-1946, Author")
        break
        
       case 416:
        check = 1
        document.write("\"Anyone in the world can learn to forgive those who have injured them, however great or small that injury may be.\"<br><br>Immaculee Ilibagiza<br>Survivor and Author of Left to Tell")
        break

       case 417:
        check = 1
        document.write("\"It is difficult to know what counts in the world. Most of us count credits, honor, dollars. But at the bulging center of mid-life, I am beginning to see that the things that really matter take place not in the boardrooms, but in the kitchens of the world.\"<br><br>Gary Allen Sledge<br>Writer")
        break

 /* page 58
        
       case 418:
        check = 1
        document.write("")
        break

       case 419:
        check = 1
        document.write("")
        break
                        
       case 420:
        check = 1
        document.write("")
        break
        
       case 421:
        check = 1
        document.write("")
        break

       case 422:
        check = 1
        document.write("")
        break
        
       case 423:
        check = 1
        document.write("")
        break

       case 424:
        check = 1
        document.write("")
        break
        
       case 425:
        check = 1
        document.write("")
        break
        
       case 426:
        check = 1
        document.write("")
        break

       case 427:
        check = 1
        document.write("")
        break
        
       case 428:
        check = 1
        document.write("")
        break

       case 429:
        check = 1
        document.write("")
        break
        
+++++Lots of repeating code skipped here+++++++
*/


       default:
        check = 0
        /*document.write("error") */
       }
       } 
/*
===========EXAMPLE UPDATE BELOW=====================
This is the sample code I will update. As you can see the first one is filled in and the second is the one I will fill in.
You might want to take note of the slash asterik (/*) in between, that will have to be moved down or the new phrase will
never come up.

       case 30:
        check = 1
        document.write("\"One should take good care not to grow too wise for so great a pleasure of life as laughter.\" <br><br> Joseph Addison <br> 1672-1719, British Poet and Statesman")
        break

       case 31:
        check = 1
        document.write("")
        break

       case 32:
        check = 1
        document.write("")
        break

===========STEP ONE=====================
Fill in your quote. For the purpose of making an example I will leave all the quotes (") and apostrophies out of this one
so I can show you that step next. You will notice there are quotes at the beginning and end. That is part of the 
language. Because they are used in that way, if you just throw them in your actual wording without the next step
the code witll read the first quote as the beginning of the phrase and whatever set it encounters next as the end
the rest of the text will cause the script to throw an error.

So you can see I filled in some text in case 31, that is all

       case 30:
        check = 1
        document.write("\"One should take good care not to grow too wise for so great a pleasure of life as laughter.\" <br><br> Joseph Addison <br> 1672-1719, British Poet and Statesman")
        break

       case 31:
        check = 1
        document.write("To all the people of all the world I say, Ich bin ein Berliner. JFK US President")
        break

       case 32:
        check = 1
        document.write("")
        break

===========STEP TWO=====================
I know it\'s an incredibly stupid quote but it\'s the best I could come up with off the top of my head. So If I ran that 
right now it would print:

To all the people of all the world I say, Ich bin ein Berliner. JFK US President

which isn\'t what I want it to look like. First I want to add quotes we do that with the backslash(\), it\'s the one above the
enter key. You will notice it preceeds the quote mark and apostrophy. You have to use it on both, it\'s just a part of
the language.


       case 30:
        check = 1
        document.write("\"One should take good care not to grow too wise for so great a pleasure of life as laughter.\" <br><br> Joseph Addison <br> 1672-1719, British Poet and Statesman")
        break

       case 31:
        check = 1
        document.write("\"To all the people of all the world I say,\\' Ich bin ein Berliner\\'\". JFK US President")
        break

       case 32:
        check = 1
        document.write("")
        break

===========STEP THREE=====================
Now the test looks like:

"To all the people of all the world I say,\' Ich bin ein Berliner\'". JFK US President

Only the quotes and apostrophies with the backslash stay. The one at the front and back go away.
The quote looks better but it still doesn\'t match your desired formating. Next we add line breaks. Do NOT just press enter
where you want them, that wil break the code. Instead realize that whatever is in the quotes that is not preceeded by
the aforementioned backslash will be passed literally to the HTML document. So add and HTML break (<BR> or <BR />)in there
This will give you the spacing you want.


       case 30:
        check = 1
        document.write("\"One should take good care not to grow too wise for so great a pleasure of life as laughter.\" <br><br> Joseph Addison <br> 1672-1719, British Poet and Statesman")
        break

       case 31:
        check = 1
        document.write("\"To all the people of all the world I say,\\' Ich bin ein Berliner\\'\".<BR><BR> JFK<BR>US President")
        break

       case 32:
        check = 1
        document.write("")
        break

===========STEP THREE=====================
the text now is:

"To all the people of all the world I say,\' Ich bin ein Berliner\'". 

JFK 
US President

I think that looks more like what you want. Using the rules I have given you, you shoud be able to make whatever you like
within the confines of the script. There is one last step before this code is readable. The slash asterik is the beginning
of a multiline comment. Code 31 still fall within that comment which means it will not be compiled or read. This is designed
to avoid getting blank quote fields and to keep the script smaller when it is actually being run. I hope to not bog
down your customers computers with this huge script.
So all we do is cut it from where it is and paste it into the next blank line as is done below.

       case 30:
        check = 1
        document.write("\"One should take good care not to grow too wise for so great a pleasure of life as laughter.\" <br><br> Joseph Addison <br> 1672-1719, British Poet and Statesman")
        break

       case 31:
        check = 1
        document.write("\"To all the people of all the world I say,\\' Ich bin ein Berliner\\'\".<BR><BR> JFK<BR>US President")
        break

       case 32:
        check = 1
        document.write("")
        break

+++++++++++++++++++FINISHED+++++++++++
That\'s it. You have just added a new quote to your script and it should run. There is only one way I know of to test for
sure add the following line of code, except replace N with the case number you filled in:

junk = N

So for our example it is: junk = 31
This is case sensitive and it goes in the front portion of the code as I am about to show below (compare it to the same 
ath the beginning of this document):

       var check = 0
       while (check == 0)
       {
       var junk = Math.random()
       junk = junk * 1000
       junk = Math.round(junk)
junk = 31
       switch (junk)
       {
       case 0:
        check = 1
        document.write("\"The soul is dyed the color of its thoughts. Think only on those things that are in line with your principles and can bear the light of day. The content of your character is your choice. Day by day, what you do is who you become.\" <br> <br> Heraclitus 535-475 BC (approximately)<br> Philosopher and Author") 
        break

That code will cause the code to always go to that case number, so delete it after you have test. I like toleave mine all 
way to the left like that because I can find it easier and no one will ever see it because I will delete it.

I think that covers everything. I am happy to answer further questions. 
This code is for your use primarily. I may try to take advantage of a variation on it now that I have written it.
I don\'t really care if you give it to a couple people but don\'t pass it around a lot. I have invested more time than
I care to admit to myself on it. -- */