
<!---
function choices()
{
	this[0] = 2;
this[1] = "<img src=\"http://www.rtseventi.it/rotaz/1.jpg\" width=280 height=150 border=0 alt=\"Carnevale\"></a>";
this[2] = "<img src=\"http://www.rtseventi.it/rotaz/2.jpg\" width=280 height=150 border=0 alt=\"Zelig\"></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());
//  FINE   --->

