
<!---
function choices()
{
	this[0] = 2;



this[1] = "<a href=\"http://www.mondonatura.it\" target=\"_blank\"><img src=\"http://www.romacamper.it/images/mondonatura.gif\" width=468 height=60 border=0 alt=\" Mondo Natura 2008\"></a>";

this[2] = "<a href=\"http://www.campeggiatore.net\" target=\"_blank\"><img src=\"http://www.romacamper.it/images/campeggi.gif\" width=468 height=60 border=0 alt=\" Campeggi\"></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   --->