
<!---
function choices()
{
	this[0] = 3;
this[1] = "<img src=\"intro/intro2.jpg\" width=676 height=380 border=0 alt=\"Primo banner\"></a>";

this[3] = "<img src=\"intro/intro5.jpg\" width=542 height=400 border=0 alt=\"Secondo banner\"></a>";
this[2] = "<img src=\"intro/intro3.jpg\" width=780 height=346 border=0 alt=\"Terzo banner\"></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   --->

