
<!---
function choices()
{
	this[0] = 2;

this[1] = "<a target=\"_blank\" href=\"http://www.hotelcocoon.it\"><img src=\"../images/banner/cocoon.gif\" width=160 height=120 class=banner alt=\"Hotel Cocoon ***\"></a>";
this[2] = "<a target=\"_blank\" href=\"http://www.hoteldaniel.it\"><img src=\"../images/banner/daniel.gif\" width=160 height=120 class=banner alt=\"Hotel Daniel ****\"></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   --->

