
<!---
function choices()
{
	this[0] = 2;
this[1] = "<a href=\"http://www.passopomo.com\" target=new\><img src=\"http://www.fwm.it/centrobanner/passopomo/passopomolittle.gif\" width=115 height=50 border=1 alt=\"Passopomo\"></a>";
this[2] = "<a href=\"http://www.nonsoloarance.com\" target=new\><img src=\"http://www.fwm.it/centrobanner/passopomo/nonsoloarance.gif\" width=115 height=50 border=1 alt=\"Nonsoloarance\"></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   --->

