// JavaScript Document

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 = 5;
var ad1 = rand(ad_cnt1);
var link1;
var adBanner1;
var width1
var height1
if (ad1==1) {
link1="http://www.bhsn.com/";
adBanner1="http://www.thebeatofsports.com/ads/BHSN.jpg";
width1="300";
height1="230";
alt1="Protechnica";
}
if (ad1==2) {
link1="http://www.bhsn.com/";
adBanner1="http://www.thebeatofsports.com/ads/BHSN.jpg";
width1="300";
height1="230";
alt1="Bright House Sports Network";
}
if (ad1==3) {
link1="http://www.ufl-football.com/florida-tuskers";
adBanner1="http://www.thebeatofsports.com/ads/Tuskers_largeAd.jpg";
width1="300";
height1="230";
alt1="UKnight";
}
if (ad1==4) {
link1="http://ucfathletics.cstv.com/tickets/footbl-tickets-08.html";
adBanner1="http://www.thebeatofsports.com/ads/UKnight_LargeAd.jpg";
width1="300";
height1="230";
alt1="Florida Tuskers";
}
if (ad1==5) {
link1="http://www.ufl-football.com/florida-tuskers/";
adBanner1="http://www.thebeatofsports.com/ads/Tuskers_largeAd.jpg";
width1="300";
height1="230";
alt1="Protechnica ";
}
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>');