function makeArray(n) {
this.length = n;
for (var i=1; i<=n; i++) {
this[i] = ""; 
}
return this;
}
var i;
function imagealeatoire() {
i = Math.floor(20 * Math.random() + 1);
return image[i];
}
image = new makeArray(20);
image[1]="http://www.retro-actifs.com/_images/photos_aleatoires/001.jpg";
image[2]="http://www.retro-actifs.com/_images/photos_aleatoires/002.jpg";
image[3]="http://www.retro-actifs.com/_images/photos_aleatoires/003.jpg";
image[4]="http://www.retro-actifs.com/_images/photos_aleatoires/004.jpg";
image[5]="http://www.retro-actifs.com/_images/photos_aleatoires/005.jpg";
image[6]="http://www.retro-actifs.com/_images/photos_aleatoires/006.jpg";
image[7]="http://www.retro-actifs.com/_images/photos_aleatoires/007.jpg";
image[8]="http://www.retro-actifs.com/_images/photos_aleatoires/008.jpg";
image[9]="http://www.retro-actifs.com/_images/photos_aleatoires/009.jpg";
image[10]="http://www.retro-actifs.com/_images/photos_aleatoires/010.jpg";
image[11]="http://www.retro-actifs.com/_images/photos_aleatoires/011.jpg";
image[12]="http://www.retro-actifs.com/_images/photos_aleatoires/012.jpg";
image[13]="http://www.retro-actifs.com/_images/photos_aleatoires/013.jpg";
image[14]="http://www.retro-actifs.com/_images/photos_aleatoires/014.jpg";
image[15]="http://www.retro-actifs.com/_images/photos_aleatoires/015.jpg";
image[16]="http://www.retro-actifs.com/_images/photos_aleatoires/016.jpg";
image[17]="http://www.retro-actifs.com/_images/photos_aleatoires/017.jpg";
image[18]="http://www.retro-actifs.com/_images/photos_aleatoires/018.jpg";
image[19]="http://www.retro-actifs.com/_images/photos_aleatoires/019.jpg";
image[20]="http://www.retro-actifs.com/_images/photos_aleatoires/020.jpg";

document.write("<IMG SRC=" +imagealeatoire() +" BORDER=0>");