// JavaScript Document

<!---
function choices()
{
this[0] = 4;
this[1] = "<a href=\"http://www.fans4fun.net\"target=_blank\"><img src=\"http://www.rastasnob.it/public/fans4fun.jpg\" width=195 height=50 border=0 alt=\"Fans4Fun Web Solution\"></a>";
this[2] = "<a href=\"http://www.reyer.it\"target=_blank\"><img src=\"http://www.rastasnob.it/public/reyer.jpg\" width=195 height=50 border=0 alt=\"Reyer Basket\"></a>";
this[3] = "<a href=\"http://bizzarrirecords.blogspot.com/\"target=_blank\"><img src=\"http://www.rastasnob.it/public/bizzarri.jpg\" width=195 height=50 border=0 alt=\"Bizzarri Records\"></a>";
this[4] = "<a href=\"http://dhn-flyingabout.blogspot.com/\"target=_blank\"><img src=\"http://www.rastasnob.it/public/dancehallnews.jpg\" width=195 height=50 border=0 alt=\"Flying About - Dancehall News\"></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 --->
