<!---
function choices()
{
	this[0] =9;
this[1] = "<img src=\"code/code1.bmp\" width=112 height=35 border=0 alt=\"code1\"></a>";
this[2] = "<img src=\"code/code2.bmp\" width=112 height=35 border=0 alt=\"code2\"></a>";
this[3] = "<img src=\"code/code3.bmp\" width=112 height=35 border=0 alt=\"code3\"></a>";
this[4] = "<img src=\"code/code4.bmp\" width=112 height=35 border=0 alt=\"code4\"></a>";
this[5] = "<img src=\"code/code5.bmp\" width=112 height=35 border=0 alt=\"code5\"></a>";
this[6] = "<img src=\"code/code6.bmp\" width=112 height=35 border=0 alt=\"code6\"></a>";
this[7] = "<img src=\"code/code7.bmp\" width=112 height=35 border=0 alt=\"code7\"></a>";
this[8] = "<img src=\"code/code8.bmp\" width=112 height=35 border=0 alt=\"code8\"></a>";
this[9] = "<img src=\"code/code9.bmp\" width=112 height=35 border=0 alt=\"code9\"></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   --->
