<!-- Hide from JavaScript-Impaired Browsers
MaxSponsors=20;
number_of_sponsors=0;

var sctr=0;
var isn=new Array();
var durl=new Array();
var aSponsor = new LoadSponsor();
var nP=0;

for (i=0;i<MaxSponsors;i++){
  if (aSponsor[i]>'') {
    ++number_of_sponsors;
    nP=aSponsor[i].indexOf(";");
    isn[i]=new Image();
    isn[i].src=aSponsor[i].substring(nP+1);
    durl[i]=aSponsor[i].substring(0,nP);
  }
}

function LoadSponsor(){
this.length = MaxSponsors
// scrivi qui gli sponsor (URL_home_page;URL_Immagine)
this[0] = "http://www.fondoambiente.it/;/img/banner fai_250x250.gif"
this[1] = "http://www.parcoappiaantica.eu/it/pdf/Appia-card2008.pdf;/img/CartaAmici2008.jpg"
this[2] = "http://milluminodimeno.blog.rai.it/;/img/logo_millumino2009_large-150x150.jpg"
this[3] = ""
this[4] = ""
this[5] = ""
this[6] = ""
this[7] = ""
this[8] = ""
this[9] = ""
this[10] = ""
this[11] = ""
this[12] = ""
this[13] = ""
this[14] = ""
this[15] = ""
this[16] = ""
this[17] = ""
this[18] = ""
this[19] = ""
}

function rotateIt(){
  var nDelay=7000 //modifica questa valore per imostare i secondi per la rotazione: 1000=1 secondo
  sctr++;
  if (sctr>number_of_sponsors-1){sctr=0;}
  document.sponsor.src=isn[sctr].src;
  setTimeout("rotateIt()",nDelay);
}

function doIt(){
  var newW;
  newW=window.open(durl[sctr],"Sponsor","width=700,height=400,toolbar=yes,location=yes,status=yes,resizable=yes,scrollbars=yes");
 }

function dispIt(){
 parent.window.status=durl[sctr];
 }
// End Hiding -->
