  rot = false
  rnd = 0
  secondi = 11
  speed = secondi*1000

  link_ban = new Array()
  link_ban[0] = "http://www.romaexplorer.it/marketplace/uff.htm"
  link_ban[1] = "http://www.romaexplorer.it/marketplace/reg_utente.htm"
  link_ban[2] = "http://www.romaexplorer.it/marketing/email_marketing.htm"
  num_ban = link_ban.length

function adBanner() {
  if (rot) {
    now = new Date()
    rnd = (now.getSeconds() % num_ban)
    document.images["ban"].src = "banner/ban_" + rnd + ".gif"
  }
  rot = true
  setTimeout(adBanner,speed)
}

function go() {
//  alert(link_ban[rnd])
  window.open(link_ban[rnd],'_self');
}
