// JavaScript Document
<!--
function choices()
{
this[0] = 2;
this[1] = "<a href=\"http://mailorder.audioglobe.it\" target=_blank><img src=\"immagini/banneraudioglobe.gif\" border=0 width=468 height=60 alt=\"Audioglobe\"></a>";
this[2] = "<a href=\"http://www.myspace.com/dyalmace\" target=_blank><img src=\"immagini/bannerdyalmace.gif\" border=0 width=468 height=60 alt=\"Nuovo Album\"></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());
// -->
