
   adImages = new Array("../images/banner_wilson.gif","../images/banner_54blue.gif","../images/banner_wilson.gif","../images/banner_ffwd.gif")
   adURL = new Array("http://www.wilson.com","http://www.54blue.com","http://www.wilson.com","http://www.greatwest.ca/ffwd/")
   thisAd = 0
   imgCt = adImages.length

   function rotate() {
     if (document.images) {
       if (document.adBanner.complete) {
         thisAd++
         if (thisAd == imgCt) {
           thisAd = 0
         }
         document.adBanner.src=adImages[thisAd]
       }
          setTimeout("rotate()", 4 * 2800)
        }
   }
   
   
function clickLink(){

myWindow = window.open(adURL[thisAd],"customize_news","width=800,height=600,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes");


  }

