function choices()
{
	this[0] = 2;
this[1] = "<a href=\"http://digilander.iol.it/todbv\"><img src=\"images/todbann.gif\" width=299 height=63 border=1 alt=\"Tod Official Web Site - TOD Black Metal Band\"></a>";
this[2] = "<a href=\"http://www.todclub.tk\"><img src=\"images/todclub.gif\" width=377 height=46 border=1 alt=\"Tod Club - The Official TOD's Fan CLub\"></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());


