var Quotation=new Array()

Quotation[0] = "Prince's first tour was as the support act for The Rolling Stones in October 1981.";
Quotation[1] = "The Purple Rain tour sold 1.7 million tickets.";
Quotation[2] = "The Jam of the Year Tour was one of the highest grossing tours in 1998.";
Quotation[3] = "In 2004, defeating all the odds, Prince's Musicology tour sold more tickets than any other US tour that year (1.47 million).";
Quotation[4] = "In 1980, Prince toured as the support act for Rick James' \"Fire It Up tour\".";
Quotation[5] = "The 2007 Earth Tour sold 140,000 tickets for it's London shows in just 20 minutes, 378,000 tickets in total were sold over its 21 night stint.";
Quotation[6] = "The 2007 Earth Tour was performed over 21 dates on London, each show was sold out at the 23,000 capacity arena, The O2.";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();