
<!---
function choices()
{
this[0] = 2;
this[1] = "<a href=\"http://www.fi.camcom.it\"><img src=\"banner/banner-0.gif\" width=468 height=60 border=0 alt=\"Camera di commercio\"></a>";
this[2] = "<a href=\"http://www.confesercenti.it\"><img src=\"banner/banner-1.gif\" width=468 height=60 border=0 alt=\"Confesercenti\"></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   --->
