<!-- hide this script from non-javascript-enabled browsers

// The Array Function 

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

ideas = new makeArray(9);
ideas[0] = "68 percent of men and 66 percent of women in the U.S. use the Internet regularly.";
ideas[1] = "Top 5 search engines: Google, Yahoo, MSN, AOL and Ask.com";
ideas[2] = "A golf foursome with Tiger Woods sold on eBay for $425,000.";
ideas[3] = "Overall email performance: 88.5% delivery rate, 38.8% open rate, 8.3% click-through.";
ideas[4] = "Are banner ads still alive? 12% of internet users will click a banner ad each month.";
ideas[5] = "80 percent of Americans now have<br> Internet access.";
ideas[6] = "HTML Email has an overwhelmingly higher click-through rate than text-based messages";
ideas[7] = "70% of home buyers see a house for the first time on the internet.";
ideas[8] = "Top online shopping categories: clothing, computers, electronics, books, video games.";

// The random number generator.

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
        
var now = new Date()
var seed = now.getTime() % 0xffffffff
//-->
