
<!---

function choices()
{
	this[0] = 3 ; // numero progressivo che indica il numero di banner inseriti
this[1] = "<a href=\"/sponsor.htm\"><img src=\"/images/sponsor/nethouse.gif\" width=139 height=50 border=0 alt=\"Nethouse\"></a>";

this[2] = "<a href=\"/sponsor.htm\"><img src=\"/images/sponsor/martini.gif\" width=134 height=67 border=0 alt=\"Martini\"></a>";

this[3] = "<a href=\"/sponsor.htm\"><img src=\"/images/sponsor/pian_della_mussa.gif\" width=134 height=67 border=0 alt=\"Pian della Mussa - Acque Minerali\"></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   --->


<!--
elementsList ='uno,due,tre';
function show(elementsID)
{
	hide(elementsList);
	idList = elementsID.split(',');
	for(i in idList)
	{
		elementID = idList[i];
		element = document.getElementById(elementID);
		element.style.display = 'block';
	}
}

function hide(elementsID)
{
	idList = elementsID.split(',');
	for(i in idList)
	{
		elementID = idList[i];
		element = document.getElementById(elementID);
		element.style.display = 'none';
	}
}
//  -->

