
/*
Gestion de bannières

*/

ejs_banurl = new Array;
ejs_banimageUrl=new Array;
ejs_bantitleUrl=new Array;

ejs_bantitleUrl[0] = "bricoler.com";
ejs_banimageUrl[0] = "http://www.bricoler.com/skin1_images/bouton_pub.gif";
ejs_banurl[0] = "http://www.cesa-fr.com/bannerHit.php?id=20&url=http://www.bricoler.com/";

ejs_bantitleUrl[1] = "Les Platines DV967 de chez BBK Firmwares";
ejs_banimageUrl[1] = "http://www.cesa-fr.com/images/dv967_2.jpg";
ejs_banurl[1] = "http://www.cesa-fr.com/bannerHit.php?id=14&url=http://dv967.bkk935.free.fr/";

ejs_bantitleUrl[2] = "Aideaubricolage.com";
ejs_banimageUrl[2] = "http://www.cesa-fr.com/set/upload/110706_221758_cesa_3TjaeQ.gif";
ejs_banurl[2] = "http://www.cesa-fr.com/bannerHit.php?id=12&url=http://www.aidaubricolage.com";

ejs_bantitleUrl[3] = "infosconstruction.com";
ejs_banimageUrl[3] = "http://www.cesa-fr.com/set/upload/110706_212814_cesa_5kwrGU.gif";
ejs_banurl[3] = "http://www.cesa-fr.com/bannerHit.php?id=10&url=http://www.infosconstruction.com";

ejs_bantitleUrl[4] = "Peel.fr";
ejs_banimageUrl[4] = "http://www.cesa-fr.com/set/upload/300407_100605_cesa_3nXSKK.gif";
ejs_banurl[4] = "http://www.cesa-fr.com/bannerHit.php?id=15&url=http://www.peel.fr";


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  width=140 height=82 title=Partenaires de Cesa-fr.com, Cliquez pour allez sur le site 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()",6000);
   }

AffichePub();
