 function choices()
{this[0] = 10;
this[1] = "<img src=\"images/Testata_Home1.gif\" width=510 height=65 border=0 alt=\"panorama\">";
this[2] = "<img src=\"images/Testata_Home2.gif\" width=510 height=65 border=0 alt=\"panorama\">";
this[3] = "<img src=\"images/Testata_Home3.gif\" width=510 height=65 border=0 alt=\"panorama\">";
this[4] = "<img src=\"images/Testata_Home4.gif\" width=510 height=65 border=0 alt=\"panorama\">";
this[5] = "<img src=\"images/Testata_Home5.gif\" width=510 height=65 border=0 alt=\"panorama\">";
this[6] = "<img src=\"images/Testata_Home6.gif\" width=510 height=65 border=0 alt=\"panorama\">";
this[7] = "<img src=\"images/Testata_Home7.gif\" width=510 height=65 border=0 alt=\"panorama\">";
this[8] = "<img src=\"images/Testata_Home8.gif\" width=510 height=65 border=0 alt=\"panorama\">";
this[9] = "<img src=\"images/Testata_Home9.gif\" width=510 height=65 border=0 alt=\"panorama\">";
this[10] = "<img src=\"images/Testata_Home10.gif\" width=510 height=65 border=0 alt=\"panorama\">";}

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());