
<!---
function choices()
{
	this[0] = 7;

this[1] = "<a href=\"1.jpg\" target=window><img src=\"1.jpg\" width=320 height=213 border=0 alt=\"1\"></a>";
this[2] = "<a href=\"2.jpg\" target=window><img src=\"2.jpg\" width=320 height=213 border=0 alt=\"2\"></a>";
this[3] = "<a href=\"3.jpg\" target=window><img src=\"3.jpg\" width=320 height=213 border=0 alt=\"3\"></a>";
this[4] = "<a href=\"4.jpg\" target=window><img src=\"4.jpg\" width=320 height=213 border=0 alt=\"4\"></a>";
this[5] = "<a href=\"5.jpg\" target=window><img src=\"5.jpg\" width=320 height=213 border=0 alt=\"5\"></a>";
this[6] = "<a href=\"6.jpg\" target=window><img src=\"6.jpg\" width=320 height=213 border=0 alt=\"6\"></a>";
this[7] = "<a href=\"7.jpg\" target=window><img src=\"7.jpg\" width=320 height=213 border=0 alt=\"7\"></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   --->
