<!--

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

GoogleNewsGroups = new makeArray(9);
GoogleNewsGroups[0] = "Search the Usenet discussion forums.  Just type in your keyword(s).";
GoogleNewsGroups[1] = "Search the Usenet discussion forums.  Just type in your keyword(s).";
GoogleNewsGroups[2] = "Search the Usenet discussion forums.  Just type in your keyword(s).";
GoogleNewsGroups[3] = "Search the Usenet discussion forums.  Just type in your keyword(s).";
GoogleNewsGroups[4] = "Search the Usenet discussion forums.  Just type in your keyword(s).";
GoogleNewsGroups[5] = "Search the Usenet discussion forums.  Just type in your keyword(s).";
GoogleNewsGroups[6] = "Search the Usenet discussion forums.  Just type in your keyword(s).";
GoogleNewsGroups[7] = "Search the Usenet discussion forums.  Just type in your keyword(s).";
GoogleNewsGroups[8] = "Search the Usenet discussion forums.  Just type in your keyword(s).";

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff

//-->