1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| ejs_banurl = new Array;
ejs_banimageUrl=new Array;
ejs_banimageUrl[0] = "URL de mon image";
ejs_banurl[0] = "Lien";
ejs_banimageUrl[1] = "URL de mon image";
ejs_banurl[1] = "Lien";
ejs_banimageUrl[2] = "URL de mon image";
ejs_banurl[2] = "Lien";
affiche = false;
function AffichePub()
{
if(!affiche)
{
numimage= Math.round(Math.random()*(ejs_banurl.length-1));
document.write ('<A HREF="#" onClick="location.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()",5000);
}
AffichePub(); |