	<!---
function choices()
{
this[0] = 33;
this[1] = "è troppo tardi.";
this[2] = "non si capisce.";
this[3] = "guarda altrove.";
this[4] = "mente.";
this[5] = "sta per tornare.";
this[6] = "parla troppo.";
this[7] = "si rovina.";
this[8] = "ti rovina.";
this[9] = "annoia.";
this[10] = "è divertente.";
this[11] = "disprezza.";
this[12] = "fa cacare.";
this[13] = "consola.";
this[14] = "dorme.";
this[15] = "agisce a sproposito.";
this[16] = "esagera.";
this[17] = "prima o poi smette.";
this[18] = "lo fa per troppo tempo.";
this[19] = "fa schifo.";
this[20] = "ferisce.";
this[21] = "finge.";
this[22] = "gode.";
this[23] = "illude.";
this[24] = "ti tira su.";
this[25] = "prende per il culo.";
this[26] = "lo fa per spregio.";
this[27] = "rosica.";
this[28] = "si arrangia.";
this[29] = "di spada perisce.";
this[30] = "ci lascia lo zampino.";
this[31] = "nulla stringe.";
this[32] = "cade precipite- volissimevol- mente.";
this[33] = "perde solo tempo.";

}
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 --->