<!---
function choices()
{
this[0] = 10;
this[1] = "<img src=\"image/1.jpg\" border=0 alt=\"\" >";
this[2] = "<img src=\"image/2.jpg\" border=0 alt=\"\" >";
this[3] = "<img src=\"image/3.jpg\" border=0 alt=\"\" >";
this[4] = "<img src=\"image/4.jpg\" border=0 alt=\"\" >";
this[5] = "<img src=\"image/5.jpg\" border=0 alt=\"\" >";
this[6] = "<img src=\"image/6.jpg\" border=0 alt=\"\" >";
this[7] = "<img src=\"image/7.jpg\" border=0 alt=\"\" >";
this[8] = "<img src=\"image/8.jpg\" border=0 alt=\"\" >";
this[9] = "<img src=\"image/9.jpg\" border=0 alt=\"\" >";
this[10] ="<img src=\"image/10.jpg\" border=0 alt=\"\" >";
}
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 --->

