<!--

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

Dictionary = new makeArray(9);
Dictionary[0] = "To look up a word in the dictionary / thesaurus, type in a word & click search.";
Dictionary[1] = "To look up a word in the dictionary / thesaurus, type in a word & click search.";
Dictionary[2] = "To look up a word in the dictionary / thesaurus, type in a word & click search.";
Dictionary[3] = "To look up a word in the dictionary / thesaurus, type in a word & click search.";
Dictionary[4] = "To look up a word in the dictionary / thesaurus, type in a word & click search.";
Dictionary[5] = "To look up a word in the dictionary / thesaurus, type in a word & click search.";
Dictionary[6] = "To look up a word in the dictionary / thesaurus, type in a word & click search.";
Dictionary[7] = "To look up a word in the dictionary / thesaurus, type in a word & click search.";
Dictionary[8] = "To look up a word in the dictionary / thesaurus, 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

//-->