var Quotation=new Array() // do not change this!

Quotation[0] = "Temporary";
Quotation[1] = "Intermittant";
Quotation[2] = "Partial";
Quotation[3] = "Redundant";
Quotation[4] = "Total";
Quotation[5] = "Multiplexed";
Quotation[6] = "Inherent";
Quotation[7] = "Duplicated";
Quotation[8] = "Synchronous";
Quotation[9] = "Bidirectional";
Quotation[10] = "Serial";
Quotation[11] = "Asynchronous";
Quotation[12] = "Multiple";
Quotation[13] = "Replicated";
Quotation[14] = "Unregistered";
Quotation[15] = "Non-replicated";
Quotation[16] = "Non-specific";
Quotation[17] = "Generic";
Quotation[18] = "Migrated";
Quotation[19] = "Localised";
Quotation[20] = "Resignalled";
Quotation[21] = "Dereferenced";
Quotation[22] = "Nullified";
Quotation[23] = "Aborted";
Quotation[24] = "Serious";
Quotation[25] = "Minor";
Quotation[26] = "Major";
Quotation[27] = "Extraneous";
Quotation[28] = "Illegal";
Quotation[29] = "Insufficient";
Quotation[30] = "Viral";
Quotation[31] = "Unsupported";
Quotation[32] = "Outmoded";
Quotation[33] = "Legacy";
Quotation[34] = "Permanent";
Quotation[35] = "Invalid";
Quotation[36] = "Deprecated";
Quotation[37] = "Virtual";
Quotation[38] = "Unreportable";
Quotation[39] = "Undetermined";
Quotation[40] = "Unfiltered";
Quotation[41] = "Static";
Quotation[42] = "Dynamic";
Quotation[43] = "Delayed";
Quotation[44] = "Immediate";
Quotation[45] = "Fatal";
Quotation[46] = "Unvalidated";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();