<!--

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

GoogleNews = new makeArray(9);
GoogleNews[0] = "The latest headlines on a subject of your choosing.  Just type in your keyword(s).";
GoogleNews[1] = "The latest headlines on a subject of your choosing.  Just type in your keyword(s).";
GoogleNews[2] = "The latest headlines on a subject of your choosing.  Just type in your keyword(s).";
GoogleNews[3] = "The latest headlines on a subject of your choosing.  Just type in your keyword(s).";
GoogleNews[4] = "The latest headlines on a subject of your choosing.  Just type in your keyword(s).";
GoogleNews[5] = "The latest headlines on a subject of your choosing.  Just type in your keyword(s).";
GoogleNews[6] = "The latest headlines on a subject of your choosing.  Just type in your keyword(s).";
GoogleNews[7] = "The latest headlines on a subject of your choosing.  Just type in your keyword(s).";
GoogleNews[8] = "The latest headlines on a subject of your choosing.  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

//-->