/* 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] = "01.gif"; ejs_banurl[0] = "accueil.htm"; ejs_banimageUrl[1] = "02.gif"; ejs_banurl[1] = "accueil.htm"; ejs_banimageUrl[2] = "03.gif"; ejs_banurl[2] = "accueil.htm"; affiche = false; posXmenu = 100; posYmenu = 10; function AffichePub() { if(!affiche) { numimage= Math.round(Math.random()*(ejs_banurl.length-1)); document.write ('') affiche = true; } else { if(numimage == (ejs_banurl.length-1)) numimage = 0; else numimage++; document.ejs_banpub.src=ejs_banimageUrl[numimage]; } setTimeout("AffichePub()",1000); } AffichePub();