/*
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] = "http://www.ArmyRecognition.com/images/stories/general_use/defence_exhibition_2012/IAV_International_Armoured_Vehicles_2012_Free Pass_Banner_Army Recognition.gif";
ejs_banurl[0] = "http://www.internationalarmouredvehicles.com/Event.aspx?id=521468";

ejs_banimageUrl[1] = "http://www.ArmyRecognition.com/images/stories/general_use/defence_exhibition_2012/Future_Artillery_2012_IQPC_event_London_United_Kingdom_banner_468x80_002.gif";
ejs_banurl[1] = "http://www.future-artillery.com";

ejs_banimageUrl[2] = "http://www.ArmyRecognition.com/images/stories/general_use/defence_exhibition_2012/Eurosatory_2012_land_Security_and_defence_international_Exhibition_June_Paris_France_Army_Recognition_468x80_001.gif";
ejs_banurl[2] = "http://www.eurosatory.com";

ejs_banimageUrl[3] = "http://www.ArmyRecognition.com/images/stories/general_use/defence_exhibition_2012/IDEB_2012_International_Defence_Exhibition_Bratislava_Slovakia_Slovak_Republic_May_2012_468x80.gif";
ejs_banurl[3] = "http://www.ideb.sk/en";

ejs_banimageUrl[4] = "http://www.ArmyRecognition.com/images/stories/general_use/defence_exhibition_2012/Counter_IEDs_Improvised_Explosive_Device_conference_London_United_Kingdom_May_2012_banner_480x80_001.jpg";
ejs_banurl[4] = "http://www.c-ieds.com";

ejs_banimageUrl[5] = "http://www.ArmyRecognition.com/images/stories/general_use/defence_exhibition_2012/10th_Annua_Information_Operations_Global_Conference_June_2012_banner_468x80_001.jpg";
ejs_banurl[5] = "http://www.info-opseurope.com";

ejs_banimageUrl[6] = "http://www.ArmyRecognition.com/images/stories/general_use/defence_exhibition_2012/SOFEX_2012_International_Special_forces_defence_equipment_Exhibition_Jordan_banner_468x80_001.jpg";
ejs_banurl[6] = "http://www.sofexjordan.com";

ejs_banimageUrl[7] = "http://www.ArmyRecognition.com/images/stories/general_use/defence_exhibition_2012/CIDEX_2012_China_International_Defence_Electronics_Exhibition_banner_468x80_001.jpg";
ejs_banurl[7] = "http://www.cidexshow.com.cn/en/";

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()",5000);
   }

AffichePub();
