function get_random(maxNum)
{
  if (Math.random && Math.round)
  {
    var ranNum= Math.round(Math.random()*(maxNum-1));
    ranNum+=1;
    return ranNum;
  }
  else
  {
  today= new Date();
  hours= today.getHours();
  mins=   today.getMinutes();
  secn=  today.getSeconds();
  if (hours==23)
   hours=32;
  var ranNum= (((hours+1)*(mins+1)*secn)%maxNum)+1;
  return ranNum;
  }
}

function getaQuote()
{
 var maxQuotes=5;
 var whichQuote=get_random(maxQuotes);
 whichQuote--;

var quote=new Array(maxQuotes)
   quote[00] = ["Success involves doing the common things uncommonly well.", "Anon"];
   quote[01] = ["The minute you choose to do what you really want to do it's a different kind of life.", "Buckminster Fuller"];
   quote[02] = ["There are risks and costs to a program of action. But they are far less than the long-range risks and costs of comfortable inaction.", "John F Kennedy"];
   quote[03] = ["Change is the law of life. And those who look only to the past or the present are certain to miss the future.", "John F Kennedy"];
   quote[04] = ["There's only one corner of the universe you can be certain of improving and that's your own self.", "Aldous Huxley"];

document.write(
	'"',
	quote[whichQuote][0]+	
	'"<BR><BR> - ',
	'<I>',
	quote[whichQuote][1]+
	'</I>',
	''
	);

}

getaQuote();


