<!--
function choices()
 {
 this[0]  = 3;
 this[1]  = "<a href=\"photo/galleria_01.html\"><img src=\"imma/1_immagini.jpg\" border=0></a>";
 this[2]  = "<a href=\"photo/galleria_02.html\"><img src=\"imma/1_immagini.jpg\" border=0></a>";
 this[3]  = "<a href=\"photo/galleria_03.html\"><img src=\"imma/1_immagini.jpg\" border=0></a>";
 }
function popUpBanner(list)
 {	
  var today = new Date();
  var choiceInstance = new choices();
  var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
 }
function grabBanner()
 {
  var today = new Date();
  var choiceInstance = new choices();
  var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
  return Banner;
 }
document.writeln(grabBanner());
//-->
