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