// in this section we set up the content to be placed dynamically on the page// customize movie tags and alternate html content below// The Central Randomizer 1.3 (C) 1997 by Paul Houle (houle@msc.cornell.edu)// See:  http://www.msc.cornell.edu/~houle/javascript/randomizer.htmlrnd.today=new Date();rnd.seed=rnd.today.getTime();function rnd() {        rnd.seed = (rnd.seed*9301+49297) % 233280;        return rnd.seed/(233280.0);};function rand(number) {        return Math.ceil(rnd()*number);}insert="images/topimage"+ rand(3) +".jpg";		var randimage = '<IMG SRC="'+insert+'" alt="" width="380" height="160" border="0">'		document.write(randimage);