ejs_banurl = new Array;
ejs_banimageUrl=new Array;

ejs_banimageUrl[0] = "ban-pub/pub_sge_01.png";
ejs_banurl[0] = "http://www.sge-pasquier.com/site/index.php?cat=1&view=2&action=list_prod&pg=1&tri=prix&ordre=DESC&tri2=new&ordre2=DESC";

ejs_banimageUrl[1] = "ban-pub/pub_ccm-roller.png";
ejs_banurl[1] = "http://www.spr-boutique.com/products.php?cat=241";

ejs_banimageUrl[2] = "ban-pub/pub_sge_01.png";
ejs_banurl[2] = "http://www.sge-pasquier.com/site/index.php?cat=1&view=2&action=list_prod&pg=1&tri=prix&ordre=DESC&tri2=new&ordre2=DESC";

ejs_banimageUrl[3] = "ban-pub/pub_sge_01.png";
ejs_banurl[3] = "http://www.spr-boutique.com/categories.php?cat=5";

ejs_banimageUrl[4] = "ban-pub/pub_sge_01.png";
ejs_banurl[4] = "http://www.spr-boutique.com/categories.php?cat=5";

ejs_banimageUrl[5] = "ban-pub/pub_sge_01.png";
ejs_banurl[5] = "http://www.sge-pasquier.com/site/index.php?cat=1&view=2&action=list_prod&pg=1&tri=prix&ordre=DESC&tri2=new&ordre2=DESC";

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

AffichePub();

