<!---
function choices()
{
this[0] = 15;
this[1] = "è come";
this[2] = "non è come";
this[3] = "somiglia a";
this[4] = "non somiglia a";
this[5] = "è il contrario di";
this[6] = "è proprio come";
this[7] = "è come";
this[8] = "è come";
this[9] = "è come";
this[10] = "è come";
this[11] = "è come";
this[12] = "è come";
this[13] = "è come";
this[14] = "è come";
this[15] = "è come";
}
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());
// FINE --->