<!--

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

Weather = new makeArray(9);
Weather[0] = "To get a current weather report, simply type in an area code or city name.";
Weather[1] = "To get a current weather report, simply type in an area code or city name.";
Weather[2] = "To get a current weather report, simply type in an area code or city name.";
Weather[3] = "To get a current weather report, simply type in an area code or city name.";
Weather[4] = "To get a current weather report, simply type in an area code or city name.";
Weather[5] = "To get a current weather report, simply type in an area code or city name.";
Weather[6] = "To get a current weather report, simply type in an area code or city name.";
Weather[7] = "To get a current weather report, simply type in an area code or city name.";
Weather[8] = "To get a current weather report, simply type in an area code or city name.";

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff

//-->