// JavaScript Document
// Long Advertisements

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_cnt2 = 3;
var ad1 = rand(ad_cnt2);
var link2;
var adBanner2;
var width2
var height2
if (ad1==1) {
link2="http://www.championsgategolf.com/";
adBanner2="http://www.thebeatofsports.com/ads/ChampionsGate.jpg";
width2="630";
height2="65";
alt2="Champions Gate Golf";
}
if (ad1==2) {
link2="http://www.championsgategolf.com/";
adBanner2="http://www.thebeatofsports.com/ads/ChampionsGate.jpg";
width2="630";
height2="65";
alt2="Champions Gate Golf";
}
if (ad1==3) {
link2="http://www.championsgategolf.com/";
adBanner2="http://www.thebeatofsports.com/ads/ChampionsGate.jpg";
width2="630";
height2="65";
alt2="Champions Gate Golf";
}

document.write('<center><a href="' + link2 + '" target="_blank">');
document.write('<img src="' + adBanner2 + '" width=' + width2 + ' height=' + height2 + ' border=0 alt="' + alt2 + '" vspace="4"></a>');
document.write('</center>');
