";
Quotation[1] = "TIMETABLES TOO WIDE TO PRINT? TRY 'LIST FORMAT' INSTEAD ";
Quotation[2] = "THIS SERVICE WILL BE OFFLINE OCCASIONALLY AS TIMETABLES ARE UPDATED ";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
|