TotalNumerOfURLs = 6;

function MakeArray(n) {
   this.length = n;
   for (var i = 1; i <= n; i++) { 
     this[i] = 0 }
     return this
   }

AddressToGo = new MakeArray(TotalNumerOfURLs);

var dt = new Date();
var RandomNumber = (dt.getSeconds()%TotalNumerOfURLs)+1;

AddressToGo[1] = "http://www.sbcountywineguide.com"
AddressToGo[2] = "http://www.newspress.com/2003fiesta/index.html"
AddressToGo[3] = "http://www.newspress.com/sceneonline/index.html"
AddressToGo[4] = "http://www.newspress.com/npsite/sbnpemploy.html"
AddressToGo[5] = "mailto:kclark@newspress.com"
AddressToGo[6] = "http://www.newspress.com/ezpay/ezpay3.htm"

function ShowTheBanner() {
   document.write('<CENTER>');
   document.write('<A HREF="', AddressToGo[RandomNumber], '" target="_top"><IMG SRC="http://www.newspress.com/npsite/ads/localtest/banner', RandomNumber, '.gif" ALT="Visit Our Sponsor!" ALIGN="middle" BORDER="0"></A>');
   document.write('</CENTER>');
   }
