
<!---
function choices()
{
	this[0] = 12;

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>";
this[8] = "<a href=\"8.jpg\" target=window><img src=\"8.jpg\" width=320 height=213 border=0 alt=\"8\"></a>";
this[9] = "<a href=\"9.jpg\" target=window><img src=\"9.jpg\" width=320 height=213 border=0 alt=\"9\"></a>";
this[10] = "<a href=\"10.jpg\" target=window><img src=\"10.jpg\" width=320 height=213 border=0 alt=\"10\"></a>";
this[11] = "<a href=\"11.jpg\" target=window><img src=\"11.jpg\" width=320 height=213 border=0 alt=\"11\"></a>";
this[12] = "<a href=\"12.jpg\" target=window><img src=\"12.jpg\" width=320 height=213 border=0 alt=\"12\"></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   --->
