ejs_banurl = new Array;
ejs_banimageUrl=new Array;

ejs_banimageUrl[0] = "http://www.meteo-marine.com/images/foxtrot_electronique.gif";
ejs_banurl[0] = "http://www.foxtrot-marine.fr/index.php?cPath=21";

ejs_banimageUrl[1] = "http://www.meteo-marine.com/images/foxtrot_sea_safe.gif";
ejs_banurl[1] = "http://www.foxtrot-marine.fr/index.php?manufacturers_id=106";

affiche = false;

function AffichePub()
   {
   if(!affiche)
      {
      numimage= Math.round(Math.random()*(ejs_banurl.length-1));
      document.write ('<A HREF="#" onClick="window.open(ejs_banurl[numimage],\'_blank\')"><IMG SRC="' + ejs_banimageUrl[numimage] + '" BORDER=0 NAME=ejs_banpub></A>')
      affiche = true;
      }
   else
      {
      if(numimage == (ejs_banurl.length-1))
         numimage = 0;
      else
         numimage++;
      document.ejs_banpub.src=ejs_banimageUrl[numimage];
      }
   setTimeout("AffichePub()",30000);
   }

AffichePub();