function get_random(maxNum)
{
  if (Math.random && Math.floor)
  {
    var ranNum= Math.floor(Math.random()*(maxNum));
    return ranNum;
  }
}

function getaQuote()
{
 if (Math.random && Math.floor)
  {
   var maxQuotes=5;
   var whichQuote=get_random(maxQuotes);

    var quote=new Array(maxQuotes)
     quote[0]="I always hear that I am supposed to keep track of this information. Now I can.";
     quote[1]="I can use InfoWallet from my USB drive even though I'm not allowed to install software on my work computer.";
     quote[2]="I've never seen anything like the timeline for my life.";   
     quote[3]="Great value. For the price of a nice dinner I can have this forever.";
     quote[4]="The Family license is a great value.";
  
 	 document.write(quote[whichQuote]);
   
  }
}
