/*
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] = "../pubs2/photos.jpg";
ejs_banurl[0] = "http://s264714728.onlinehome.fr/manaufolie/v5/igalerie_1.0.5/?alb=2";

ejs_banimageUrl[1] = "../pubs2/promos.jpg";
ejs_banurl[1] = "http://s264714728.onlinehome.fr/manaufolie/v5/pages/promosvideo.htm"

ejs_banimageUrl[2] = "../pubs2/anni.jpg";
ejs_banurl[2] = "http://s264714728.onlinehome.fr/manaufolie/v5/pages/97.htm"

ejs_banimageUrl[3] = "../pubs2/anglais.jpg";
ejs_banurl[3] = "http://www.daforumanau.net/forum19.html"

ejs_banimageUrl[4] = "../pubs2/inedits.jpg";
ejs_banurl[4] = "http://s264714728.onlinehome.fr/manaufolie/v5/pages/mamar.htm"

ejs_banimageUrl[5] = "../pubs2/ebay.jpg";
ejs_banurl[5] = "http://clk.tradedoubler.com/click?p=1695&a=1427753&g=0&url=http%3A//www.ebay.fr"

ejs_banimageUrl[6] = "../pubs2/manaushop.gif";
ejs_banurl[6] = "http://www.manau-shop.com"

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

AffichePub();
