
var numOfQuotes = 5;
function quote() {
var quote = new Array(numOfQuotes + 1);
quote[0]="<em>Data supply doesn't create information. Information doesn't automatically lead to knowledge. Knowledge doesn't lead directly to action. Business action and impact are the goal.</em><br><br>Peter G.W. Keen";
quote[1]="<em>If a magic fairy instantly gave you absolutely all the information resources the company would ever need, do you think people would instantly know what to do with it and how to use it well?</em><br><br>Peter G.W. Keen";
quote[2]="<em>Information is at the heart of any marketing activity. Not only that: it's also the basis on which a company's marketing either succeeds or fails.</em><br><br>Regis McKenna";
quote[3]="<em>As a rule, he or she who has the most information will have the greatest success in life.</em><br><br>Disraeli";
quote[4]="<em>Realise that everything connects to everything else.</em><br><br>Leonardo da Vinci";
quote[5]="<em>What information consumes is rather obvious: it consumes the attention of its recipients. Hence a wealth of information creates a poverty of attention, and a need to allocate that attention efficiently among the overabundance of information sources that might consume it.</em><br><br>Herbert Simon";

indxOfQuote = rndInteger();
strQuote = quote[indxOfQuote];
return strQuote;
} 

function rndInteger() {
var rndNumber = -1;
while (rndNumber <0 || rndNumber > numOfQuotes || isNaN(rndNumber)) {
     rndNumber = parseInt(Math.random() * (numOfQuotes + 1));
     }
return rndNumber;
}


