<!--

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

Froogle = new makeArray(9);
Froogle[0] = "Simply type in the name of the item you want to find and click search.";
Froogle[1] = "Simply type in the name of the item you want to find and click search.";
Froogle[2] = "Simply type in the name of the item you want to find and click search.";
Froogle[3] = "Simply type in the name of the item you want to find and click search.";
Froogle[4] = "Simply type in the name of the item you want to find and click search.";
Froogle[5] = "Simply type in the name of the item you want to find and click search.";
Froogle[6] = "Simply type in the name of the item you want to find and click search.";
Froogle[7] = "Simply type in the name of the item you want to find and click search.";
Froogle[8] = "Simply type in the name of the item you want to find and click search.";

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff

//-->