ej_banurl = new Array;
ej_banimageUrl=new Array;

ej_banimageUrl[0] = "http://descommentaires.com/images/pub.jpg";
ej_banurl[0] = "http://descommentaires.com/offers.php";

affichee = false;

function AffichePubb()
   {
   if(!affichee)
      {
      numimagee= Math.round(Math.random()*(ej_banurl.length-1));
      document.write ('<A HREF="" onClick="window.open(ej_banurl[numimagee],\'_blank\')"><IMG SRC="' + ej_banimageUrl[numimagee] + '" BORDER=0 NAME=ej_banpub></A>')
      affichee = true;
      }
   else
      {
      if(numimagee == (ej_banurl.length-1))
         numimagee = 0;
      else
         numimagee++;
      document.ej_banpub.src=ej_banimageUrl[numimagee];
      }
   setTimeout("AffichePubb()",10000);
   }

AffichePubb();

