
ejs_banurl = new Array;
ejs_banimageUrl=new Array;

ejs_banimageUrl[0] = "images/csphares620x90.gif";
ejs_banurl[0] = "http://www.csphares.qc.ca/";
ejs_banimageUrl[1] = "images/transition_emploi620x90.gif";
ejs_banurl[1] = "http://www.transitionplus.qc.ca/";
ejs_banimageUrl[2] = "images/charbonnex620x90.gif";
ejs_banurl[2] = "http://www.charbonexinter.qc.ca/fr/charbonex_template.html";
ejs_banimageUrl[3] = "images/pmi620x90.gif";
ejs_banurl[3] = "http://www.pmibuilding.com/ppresentation.php";
ejs_banimageUrl[4] = "images/place_jeune620x90.gif";
ejs_banurl[4] = "http://www.placeauxjeunes.qc.ca/fr/";
ejs_banimageUrl[5] = "images/saime620x90.gif";
ejs_banurl[5] = "http://www.saime.ca/";
ejs_banimageUrl[6] = "images/action_travail728x90.gif";
ejs_banurl[6] = "http://www.atrnrimouski.net/";
ejs_banimageUrl[7] = "images/cld_620x90.gif";
ejs_banurl[7] = "http://www.cldrn.com/";
ejs_banimageUrl[8] = "images/defi_entreprenariat620x90.gif";
ejs_banurl[8] = "http://www.defi.gouv.qc.ca/";
ejs_banimageUrl[9] = "images/irvin_pelletier620x90.gif";
ejs_banurl[9] = "http://www.irvinpelletier.org/";

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()",7000);
   }

AffichePub();