/* CSS Document */
function rnd_image(){
   var imgs = new Array( "vittoria1.jpg", "vittoria2.jpg", "vittoria3.jpg");
   var rnd_img = Math.floor(Math.random()*imgs.length);
   //-->document.write('<img src="../immagini/%27%20+%20imgs%5Brnd_img%5D%20+%27">');
  document.write('<table width="100%" height="120"  border="0" cellspacing="0" cellpadding="0">');
  document.write('<tr>');
  document.write('<td width="100%" height="120" background="immagini/' + imgs[rnd_img] +'"></td>');
  document.write('</tr>');
  document.write('</table>');
}

