// JavaScript Document

<!---
function choices()
{
this[0] = 1;
this[1] = "<a href=\"http://www.enegoilformaggio.com/\"target=_blank\"><img src=\"http://www.ilgrandesport.it/images/banners/enego_sx.jpg\" border=0 alt=\"enego\"></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 --->
