function RandomNumber() 
{
  var today = new Date();
  var num= Math.abs(Math.sin(today.getTime()/1000));
  return num;
}

function RandomGraphics() 
{
  var x = RandomNumber();
 <!-- document.write("<td rowspan=1 width=247 align=left>"); -->

 if (x > .852) 
{
  document.write("<img src='/imm_sito/foto_testata/foto_7.jpg' hspace=0 border=0 alt='Visita Valcesano.com e la Valle del Cesano!'>"); 
  return; 
}

  if (x > .710) 
{
  document.write("<img src='/imm_sito/foto_testata/foto_6.jpg' hspace=0 border=0 alt='Visita Valcesano.com e la Valle del Cesano!'>"); 
  return; 
}

 if (x > .568) 
{
  document.write("<img src='/imm_sito/foto_testata/foto_5.jpg' hspace=0 border=0 alt='Visita Valcesano.com e la Valle del Cesano!'>"); 
  return; 
}

 if (x > .426) 
{
  document.write("<img src='/imm_sito/foto_testata/foto_4.jpg' hspace=0 border=0 alt='Visita Valcesano.com e la Valle del Cesano!'>"); 
  return; 
}

 if (x > .284) 
{
  document.write("<img src='/imm_sito/foto_testata/foto_3.jpg' hspace=0 border=0 alt='Visita Valcesano.com e la Valle del Cesano!'>"); 
  return; 
}

 if (x > .142) 
{
  document.write("<img src='/imm_sito/foto_testata/foto_2.jpg' hspace=0 border=0 alt='Visita Valcesano.com e la Valle del Cesano!'>"); 
  return; 
}

 if (x > 0) 
{
  document.write("<img src='/imm_sito/foto_testata/foto_1.jpg' hspace=0 border=0 alt='Visita Valcesano.com e la Valle del Cesano!'>"); 
  return; 
}

<!-- document.write("</td>"); -->

}
