<!--

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

Quotation = new makeArray(9);
Quotation[0] = "To find a famous quotation, type in a word & click search.";
Quotation[1] = "To find a famous quotation, type in a word & click search.";
Quotation[2] = "To find a famous quotation, type in a word & click search.";
Quotation[3] = "To find a famous quotation, type in a word & click search.";
Quotation[4] = "To find a famous quotation, type in a word & click search.";
Quotation[5] = "To find a famous quotation, type in a word & click search.";
Quotation[6] = "To find a famous quotation, type in a word & click search.";
Quotation[7] = "To find a famous quotation, type in a word & click search.";
Quotation[8] = "To find a famous quotation, type in a word & click search.";

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff

//-->