function LoadRandomBanner() {
	var how_many_ads = 10;
	var html_string  = '';

	var now = new Date()
	var sec = now.getSeconds()
	var ad  = sec % how_many_ads;

	ad +=1;
	txt = "";
	width = "468";
	height = "60";

	if ( ad == 1 ) {
		url    = "http://www.ringsofhonor.org";
		alt    = "Rings of Honor";
		banner = "http://www.denizensofrhydin.com/images/banner_roh.jpg";
	}
	if ( ad == 2 ) {
		url    = "http://www.isauras.com/";
		alt    = "The Artist's Gallery";
		banner = "http://www.denizensofrhydin.com/images/banner_gallery.jpg";
	}
	if ( ad == 3 ) {
		url    = "http://www.denizensofrhydin.com/";
		alt    = "Denizens of RhyDin";
		banner = "http://www.denizensofrhydin.com/images/banner_dor.jpg";
	}
	if ( ad == 4 ) {
		url    = "http://www.duelingzone.com/";
		alt    = "Denizens of RhyDin";
		banner = "http://www.denizensofrhydin.com/images/dzbanner.jpg";
	}
	if ( ad == 5 ) {
		url    = "http://www.dragonsmark.com/";
		alt    = "Realm of RhyDin";
		banner = "http://www.denizensofrhydin.com/images/banner_dm.jpg";
	}
	if ( ad == 6 ) {
		url    = "http://www.templeofdivinelight.com/";
		alt    = "Temple of Divine Light";
		banner = "http://www.denizensofrhydin.com/images/banner_temple.jpg";
	}
	if ( ad == 7 ) {
		url    = "http://duelingzone.com/casino/";
		alt    = "Dueling Zone Casino";
		banner = "http://www.denizensofrhydin.com/images/dzcbanner.jpg";
	}
	if ( ad == 8 ) {
		url    = "http://www.angelfire.com/rpg2/blackswan/seabed.html";
		alt    = "The Black Swan - A Pirate Story";
		banner = "http://www.denizensofrhydin.com/images/blackswan.jpg";
	}
	if ( ad == 9 ) {
		url    = "http://www.xenograg.com/";
		alt    = "Library of Xenograg the Sorcerer";
		banner = "http://www.denizensofrhydin.com/images/xeno_banner.gif";
	}
	if ( ad == 10 ) {
		url    = "http://z3.invisionfree.com/famine/";
		alt    = "Library of Xenograg the Sorcerer";
		banner = "http://www.denizensofrhydin.com/images/longlink_banner.jpg";
	}
	
	html_string += '<center>';
	html_string += '<a href="' + url + '" target="_blank">';
	html_string += '<img src="' + banner + '" width="' + width + '" height="' + height + '" ';
	html_string += 'alt="' + alt + '" border="0"><br>';
	html_string += '</a>';
	html_string += '</center>';

	document.write(  html_string );
}
