// JavaScript Document

function choices()
{
	this[0] = 1;
this[1] = "<table width=\"14%\" height=\"241\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"> <tr><td align=\"center\" valign=\"top\"><a href=\"resellers.htm\"><img src=\"archivos/reseller/res.jpg\" width=\"104\" height=\"179\"></td></tr></table>";


}
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());
