/*
Gestion de banni�re

SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/

ejs_banurl = new Array;
ejs_banimageUrl=new Array;

ejs_banimageUrl[0] = "http://www.etendues-sauvages.com/pubs/ponsatacama_bandeaucourt.jpg";
ejs_banurl[0] = "http://www.etendues-sauvages.com/chili/voyage-atacama-chili-argentine-salta-alain_pons.htm";

ejs_banimageUrl[1] = "http://www.etendues-sauvages.com/pubs/exclu_bandeaucourt2.jpg";
ejs_banurl[1] = "http://www.etendues-sauvages.com/tigre/safari_tigres_pons.htm";

ejs_banimageUrl[2] = "http://www.etendues-sauvages.com/pubs/mongolie_bandeaucourt.jpg";
ejs_banurl[2] = "http://www.etendues-sauvages.com/mongolie/mongolie_voyage-sur-mesure-en-campement.htm";

ejs_banimageUrl[3] = "http://www.etendues-sauvages.com/pubs/costarica_bandeaucourt.jpg";
ejs_banurl[3] = "http://www.etendues-sauvages.com/costarica/voyage_costa_rica1.htm";

ejs_banimageUrl[4] = "http://www.etendues-sauvages.com/pubs/venezuela_bandeaucourt.jpg";
ejs_banurl[4] = "http://www.etendues-sauvages.com/venezuela/orenoque-losroques.htm";

affiche = false;

function AffichePub()
   {
   if(!affiche)
      {
      numimage= Math.round(Math.random()*(ejs_banurl.length-1));
      document.write ('<A href="' + ejs_banurl[numimage] + '" ><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()",50000000);
   }

AffichePub();
