<!-- Hide from older Browsers


// Start of variable declarations
var how_many_ads = 3;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1; 

// Start of Banner Scripts Collection

if (ad==1) {
txt=""; 
url="http://www.sentex.net/~dvanhorn/donsplace/";
alt="Don's Place";
banner="../images/banner_4.gif";
}

if (ad==2) {
txt="";
url="http://www.mothcomix.com/";
alt="MothComix.com";
banner="../images/banner_5.gif";
}

if (ad==3) {
txt="";
url="http://www.dragonberry.com/auctions/";
alt="Dragonberry Comic Art Auctions";
banner="../images/banner_6.gif";
}

//end of BannerScripts collection

// Send banner selection to the screen
document.write('<center>');
document.write('<a href=\"' + url + '\" target=\"_blank\">');
document.write('<img src=\"' + banner + '\" width=450 height=50 ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('<font size="2">' + txt + '</font></a>');
document.write('</center>');

// End -->


