function runSponsorShow(){
   if (document.all){
      document.images.SponsorShow.style.filter="blendTrans(duration=2)"
      document.images.SponsorShow.style.filter="blendTrans(duration=crossFadeDuration)"
      document.images.SponsorShow.filters.blendTrans.Apply()      
   }
   document.images.SponsorShow.src = pLoad[k].src
   if (document.all){
      document.images.SponsorShow.filters.blendTrans.Play()
   }
   k = k + 1
   if (k > (l-1)) k=0
   w = setTimeout('runSponsorShow()', sponsorShowSpeed)
}

