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
|
<SCRIPT LANGUAGE="JavaScript">
var nbimage= 20;
var width;
var height;
var url;
var alte;
function Timer()
{
comp=(setTimeout("start()",10000));
}
function banniere()
{
numimage= Math.round(Math.random()*(nbimage-1)+1);
if (numimage <= 10)
{
gotosite = "A DEFINIR";
url = "A DEFINIR";
alte = "A DEFINIR";
}
if(gotosite != "")
{
document.write ('<A HREF="' + gotosite + '">');
}
document.write('<IMG SRC="' + url + '" ALT="' + alte + '" BORDER=0>')
if(gotosite != "")
{
document.write('</A>')
}
}
</SCRIPT> |
Partager