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) {
var result = Math.ceil(rnd()*number);
if (!result)result++;
return result
};

var ad_cnt1 = 4;
var ad1 = rand(ad_cnt1);
var link1;
var adBanner1;
var width1
var height1
if (ad1==1) {

link1="ads/slimsix";
adBanner1="ads/images/slim610721772-5.gif";
width1="728";
height1="90";
alt1="Lose Weight with Slim-in-6 !";
}

if (ad1==2) {
link1="ads/psx90";
adBanner1="ads/images/psx9010832396.gif";
width1="728";
height1="90";
alt1="Get Ripped in 90 Days !";
}

if (ad1==3) {
link1="ads/scrapbook";
adBanner1="ads/images/scrapbook-728x90.jpg";
width1="728";
height1="90";
alt1="Scrapbook Superstore!";
}



document.write('<center><a href="' + link1 + '" target="_blank">');
document.write('<img src="' + adBanner1 + '" width=' + width1 + ' height=' + height1 + ' border=0 alt="' + alt1 + '"></a>');
document.write('</center>');
