<!--
function choices()
{
	this[0] = 6;
this[1] = "<img src=\"Images/1.jpg\" border=0 width=910 height=250 align = baseline alt=\"Offerta Hotel\">";
this[2] = "<img src=\"Images/2.jpg\" border=0 width=910 height=250 align = baseline alt=\"Offerta Hotel\">";
this[3] = "<img src=\"Images/3.jpg\" border=0 width=910 height=250 align = baseline alt=\"Offerta Hotel\">";
this[4] = "<img src=\"Images/4.jpg\" border=0 width=910 height=250 align = baseline alt=\"Offerta Hotel\">";
this[5] = "<img src=\"Images/5.jpg\" border=0 width=910 height=250 align = baseline alt=\"Offerta Hotel\">";
this[6] = "<img src=\"Images/6.jpg\" border=0 width=910 height=250 align = baseline alt=\"Offerta Hotel\">";
}
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());
// -->