function choices()
{
	this[0] = 4;
this[4] = "<a href=\"baita.htm\"	 TARGET=\"_top\"> <img src=\"images/p_baita3.jpg\"         HEIGHT=101  WIDTH=143 ALIGN=\"Right\" border=1 alt=\"Albergo Baita Cerato\"></a>";
this[3] = "<a href=\"images/strada.jpg\" TARGET=\"_top\"> <img src=\"images/strada.jpg\"           HEIGHT=101  WIDTH=143 ALIGN=\"Right\" border=1 alt=\"Come raggiungerci\"></a>";
this[2] = "<a href=\"negoz_03.htm\"	 TARGET=\"_top\"> <img src=\"images/fossili/pesce01.jpg\"  HEIGHT=101  WIDTH=143 ALIGN=\"Right\" border=1 alt=\"Fossili del mondo in vendita\"></a>";
this[1] = "<a href=\"negoz_02.htm\"      TARGET=\"_top\"> <img src=\"images/fossili/pesce02.jpg\"  HEIGHT=101  WIDTH=143 ALIGN=\"Right\" border=1 alt=\"Fossili di Bolca in vendita\"></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   --->


