// How many banner ads are there in total? Change the number below as needed.
var totalAds = 5;

// Select a random ad to display -- Don't touch this part
var now = new Date()
var sec = now.getSeconds()
var banner = sec % totalAds;
banner +=1;

// Display the ad

if (banner==1) {
	url = "http://www.subwaystamp.com/";
	bannerLocation = "http://virtualstampclub.com/ad/subwayad.gif";
	width = "468";
	height = "60";
	alt = "Please support our sponsors";
	}
	
if (banner==3) {
	url = "http://www.virtualstampclub.com/adrates.html";
	bannerLocation = "http://virtualstampclub.com/ad/vsc_msgbdads.jpg";
	width = "468";
	height = "60";
	alt = "Please support our sponsors";
	}	
	
if (banner==4) {
	url = "http://www.dragoncards.biz";
	bannerLocation = "http://virtualstampclub.com/ad/dgn_msgboard.jpg";
	width = "468";
	height = "60";
	alt = "Please support our sponsors";
	}	

if (banner==2) {
	url = "http://www.norphil.co.uk/";
	bannerLocation = "http://virtualstampclub.com/ad/norvic.gif";
	width = "468";
	height = "60";
	alt = "Please support our sponsors";
	}
	
if (banner==5) {
	url = "http://www.virtualstampclub.com";
	bannerLocation = "http://virtualstampclub.com/ad/vsc_msgboard.jpg";
	width = "468";
	height = "60";
	alt = "Please support our sponsors";
	}	

document.write('<a href=\"' + url + '\" target=\"_top\">');
document.write('<img src=\"' + bannerLocation + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0>');

