adrotation = new Array ("/ads/360duml.gif")

adURL = new Array ("/insider/multimedia/duml360s")


adrotation2 = new Array ("/ads/360forest.gif")

adURL2 = new Array ("/insider/multimedia/forest360s")


imgCt = adrotation.length

imgCt2 = adrotation2.length


function chooseAd() {
  if (document.images) {
  randomNum = Math.floor ((Math.random()* imgCt))
  document.ad.src = adrotation[randomNum]
}
}

function chooseAd2() {
  if (document.images) {
  randomNum2 = Math.floor ((Math.random()* imgCt2))
  document.ad2.src = adrotation2[randomNum2]
}
}

function newLocation() {
   document.location.href = adURL[randomNum]
}

function newLocation2() {
   document.location.href = adURL2[randomNum2]
}