
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "<I>\"Not to be missed\!\"</i><br>Birmingham Evening Mail";
Quotation[1] = "<I>\"Absolutely spellbinding\"</i><br>S.O.L.O";
Quotation[2] = "<I>\"No two shows are ever the same.\"</i><br>Kingsley Theatre Audience Member";
Quotation[3] = "<I>\"The show was a real eye opener\!\"</i><br>Bookmark Theatre Audience Member";




// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
