adImages = new Array(
"../images/blanco.gif"


)
adUrl = new Array(
"http://www.laprensadelosangeles.com"


)
thisAd = 0
imgCt = adImages.length

function rotate() {
   if (document.images) {
      thisAd++
      if (thisAd == imgCt) {
         thisAd = 0
      }
      document.adBanner.src=adImages[thisAd]
      setTimeout("rotate()", 10 * 1000)
   }
}

function newLocation() {
   document.location.href = adUrl[thisAd]
}