<!---
function choices()
{
this[0] = 4;
this[1] = "<img src=\"img/img_1home.jpg\" width=180 height=64 border=0>";
this[2] = "<img src=\"img/img_2home.jpg\" width=180 height=64 border=0>";
this[3] = "<img src=\"img/img_3home.jpg\" width=180 height=64 border=0>";
this[4] = "<img src=\"img/img_4home.jpg\" width=180 height=64 border=0>";
}
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 --->
