<!--
    var quotes = new Array(16) 
      quotes[0]="Your passion will be recognized and suitably rewarded.";
      quotes[1]="He who hurries through love and life cannot walk with dignity.";
      quotes[2]="Your relationship success and happiness must be earned with earnest efforts.";
      quotes[3]="Peace at home and in yourself contributes to peace in the world.";
      quotes[4]="Give your time and your partner will be grateful.";
      quotes[5]="Love, like life, is an adventure. Live and love strong.";
      quotes[6]="Your luck is about to change.";
      quotes[7]="Things will soon go your way.";
      quotes[8]="If you walk the road with love, you will never walk the road alone.";
      quotes[8]="Love is friendship set on fire.";
      quotes[9]="The only true gift is a portion of yourself";
      quotes[10]="There is nothing permanent about life except change.";
      quotes[11]="You haven't failed in your relationship until you've given up.";
      quotes[12]="Laughter is the closest distance between two people. ";
      quotes[13]="Live as if your were to die tomorrow. Learn as if you were to live forever.";
      quotes[14]="Never close your lips to those whom you have opened your heart.";
      quotes[15]="To love simply, you must show love.";

    function fortune(objID) {
      var rand_int = Math.floor(Math.random()*16); // Get a number for picking the quote
      document.getElementById(objID).innerHTML=(quotes[rand_int]); // Put the quote in the box
    }
    function numbers(objID) {
      var space = ('      ') // Spacer for between numbers
      var rand_inta = Math.floor(Math.random()*100); // Get first number
      var rand_intb = Math.floor(Math.random()*100); // Get second number
      var rand_intc = Math.floor(Math.random()*100); // Get third number
      var rand_intd = Math.floor(Math.random()*100); // Get fourth number
      var rand_inte = Math.floor(Math.random()*100); // Get fifth number
      document.getElementById(objID).innerHTML=(rand_inta+space+rand_intb+space+rand_intc+space+rand_intd+space+rand_inte); //Print it all into the second box
    }
//-->
