
/*
Script trouvé sur http://www.orpea.info
*/

orpea_banurl = new Array;
orpea_banimageUrl=new Array;

orpea_banimageUrl[0] = "http://www.e-monsite.com/nicky/banniere.jpg";
orpea_banurl[0] = "http://www.e-monsite.com/nicky/";

orpea_banimageUrl[1] = "http://www.e-monsite.com/ban/ban.gif";
orpea_banurl[1] = "http://www.e-monsite.com/";

orpea_banimageUrl[2] = "http://www.e-monsite.com/palaisduyorkshire/banniere.gif";
orpea_banurl[2] = "http://www.e-monsite.com/palaisduyorkshire/";

orpea_banimageUrl[3] = "http://www.e-monsite.com/cinemadfilms/votre_banniere.gif";
orpea_banurl[3] = "http://www.e-monsite.com/cinemadfilms/";

orpea_banimageUrl[4] = "http://img78.imageshack.us/img78/9415/freebannerdb1.gif";
orpea_banurl[4] = "http://www.e-monsite.com/lapicardie/";

orpea_banimageUrl[5] = "http://img265.imageshack.us/img265/8991/bannire25ey.gif";
orpea_banurl[5] = "http://www.e-monsite.com/perlotietperlota";

orpea_banimageUrl[6] = "http://passionathy.site.voila.fr/bann_gd.gif";
orpea_banurl[6] = "http://passionathy.site.voila.fr/";


/*
Vous pouvez rajouter des bannières ici
*/


affiche = false;

function AffichePub()
   {
   if(!affiche)
      {
      numimage= Math.round(Math.random()*(orpea_banurl.length-1));
      document.write ('<A HREF="#" onClick="window.open(orpea_banurl[numimage],\'_blank\')"><IMG SRC="' + orpea_banimageUrl[numimage] + '" BORDER=0 NAME=orpea_banpub></A>')
      affiche = true;
      }
   else
      {
      if(numimage == (orpea_banurl.length-1))
         numimage = 0;
      else
         numimage++;
      document.orpea_banpub.src=orpea_banimageUrl[numimage];
      }
   setTimeout("AffichePub()",5000);
   }

AffichePub();


