function choices()
{
	this[0] = 1;
this[1] = "<p class=\"font_menu\">&nbsp;|&nbsp;<a href=\"linkutili.htm\" class=\"down\">link utili</a>&nbsp;|&nbsp;<a href=\"contatti.htm\" class=\"down\">contatti</a>&nbsp;|&nbsp;<a href=\"index.html\" class=\"down\">indice</a>&nbsp;|</p>";

}
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());
