pub_banurl = new Array;
pub_banimageUrl=new Array;
pub_alt=new Array;
pub_txt=new Array;

pub_banimageUrl[0] = "http://www.aquabel.eu/images/banniereAquajardin.jpg";
pub_banurl[0] = "http://www.aquajardin.net/index.php";
pub_alt[0] = "Jardin (aquatique) et nature - passion";

pub_banimageUrl[1] = "http://www.aquabel.eu/images/banjardinature.jpg";
pub_banurl[1] = "http://www.jardinature.net";
pub_alt[1] = "Jardinature, le portail des jardins et de la nature";

affiche = false;

function AffichePub()
   {
   if(!affiche)
      {
      numimage= Math.round(Math.random()*(pub_banurl.length-1));
      document.write ('<A HREF="#" onClick="window.open(pub_banurl[numimage],\'_blank\')"><IMG SRC="' + pub_banimageUrl[numimage] + '" BORDER=0 NAME=pub_banpub ALT="'+pub_alt[numimage]+'"><BR>Cliquez sur la bannière ci-dessus pour visiter...</A>')
      affiche = true;
      }
   else
      {
      if(numimage == (pub_banurl.length-1))
         numimage = 0;
      else
         numimage++;
         document.pub_banpub.src=pub_banimageUrl[numimage];
         document.pub_banpub.alt=pub_alt[numimage];
      }
   setTimeout("AffichePub()",10000);
   }

AffichePub();

