/*
Gestion de banni&egrave;re
SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/

ejs_banurl = new Array;
ejs_banimageUrl=new Array;

ejs_banimageUrl[0] = "http://www.sudaisne.com/test/sponsors/denis-moroy.jpg";
ejs_banurl[0] = "http://www.sudaisne.com/entreprises/Denis Moroy batiment/Entreprise du batiment Denis Moroy.html";

ejs_banimageUrl[1] = "http://www.sudaisne.com/test/sponsors/hureau-previatti.jpg";
ejs_banurl[1] = "http://www.sudaisne.com/entreprises/hureau/hureau.html";

ejs_banimageUrl[2] = "http://www.sudaisne.com/test/sponsors/michel-douay.jpg";
ejs_banurl[2] = "http://www.sudaisne.com/artistes/Michel Douay/michel douay animations.htm";

ejs_banimageUrl[3] = "http://www.sudaisne.com/test/sponsors/castel-peche.png";
ejs_banurl[3] = "http://www.sudaisne.com/entreprises/Castel peche/castel peche.html";

ejs_banimageUrl[4] = "http://www.sudaisne.com/test/sponsors/r2m.jpg";
ejs_banurl[4] = "http://www.sudaisne.com/associations/r2m/r2m.htm";

ejs_banimageUrl[5] = "http://www.sudaisne.com/test/sponsors/champagne_vincent_metivier.jpg";
ejs_banurl[5] = "http://www.sudaisne.com/entreprises/Champagne Vincent Metivier/champagne vincent metivier.html";

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()",5000);
   }

AffichePub();
