
function choices()
{
	this[0] = 7;
	this[1] = "<img src=\"../img/flac1.jpg\" width=26 height=64 border=0>";
	this[2] = "<img src=\"../img/flac2.jpg\" width=48 height=75 border=0>";
	this[3] = "<img src=\"../img/flac3.jpg\" width=35 height=60 border=0>";
	this[4] = "<img src=\"../img/flac4.jpg\" width=27 height=64 border=0>";
	this[5] = "<img src=\"../img/flac5.jpg\" width=27 height=66 border=0>";
	this[6] = "<img src=\"../img/flac6.jpg\" width=34 height=74 border=0>";
	this[7] = "<img src=\"../img/flac7.jpg\" width=34 height=55 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());
