
<!--- INIZIO 
function choices()
{
	this[0] = 5;
this[1] = "<a href=\"http://www.fotolabo.it\">						<img src=\"http://www.luxgallery.net/banner/banner01.gif\"></a>";
this[2] = "<a href=\"http://www.fotolabo.it\">						<img src=\"http://www.luxgallery.net/banner/banner02.gif\"></a>";
this[3] = "<a href=\"http://www.fotolabo.it\">          				<img src=\"http://www.luxgallery.net/banner/banner03.gif\"></a>";
this[4] = "<a href=\"http://www.fotolabo.it\">						<img src=\"http://www.luxgallery.net/banner/banner04.gif\"></a>";
this[5] = "<a href=\"http://www.fotolabo.it\">      					<img src=\"http://www.luxgallery.net/banner/banner05.gif\"></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   --->

