// JavaScript Document
Pics = new Array(4); 

Pics[0]='<IMG SRC="img3/01.jpg" ALT="infofoto1" Border=1 width="139" height="104" style="border-color: blue">'; 

Pics[1]='<IMG SRC="img3/02.jpg" ALT="infofoto2" Border=1 width="139" height="104" style="border-color: green">'; 

Pics[2]='<IMG SRC="img3/03.jpg" ALT="infofoto3" Border=1 width="139" height="104" style="border-color: black">';

Pics[3]='<IMG SRC="img3/04.jpg" ALT="infofoto4" Border=1 width="139" height="104" style="border-color: black">';

document.write(Pics[Math.floor(Math.random() * Pics.length)]);
