
<!---
function choices()
{
	this[0] = 3;
this[1] = "<a href=\"http://www.hotelricchi.it\"><img src=\"banner/hotel-ricchi.jpg\" width=480 height=180 border=0 alt=\"Hotel Ricchi 3 stelle Rimini\"></a>";
this[2] = "<a href=\"http://www.hotelsoleblu.it\"><img src=\"banner/hotel-sole-blu.jpg\" width=480 height=180 border=0 alt=\"Hotel Sole Blù 3 stelle Rimini\"></a>";
this[3] = "<a href=\"http://www.hotelmocambo.com\"><img src=\"banner/hotel-mocambo.jpg\" width=480 height=180 border=0 alt=\"Hotel Mocambo 3 stelle Riccione\"></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   --->

