	for (var x = 0; x < Titles.length; ++x)
	{
	document.writeln("<div style=\"position:absolute;top:275px;width:350px;left:40%\">\n" +
		"<table id=\"" + Titles[x] + "\"" + " cellpadding=1 cellspacing=4 border=0 " +
		"bgColor=" + bgColor+ "\n style=" + "\"display:none; position:absolute; left:0px\">");
		document.writeln("<tr bgColor=" + bgColor+ ">");
		document.writeln("<th bgColor=" + fgColor + " align=\"center\">" + " <font color=" + bgColor + "><b>" + Text[x][0] + "</b></font>");

		for (var y = 1; y < Text[x].length; y = y + nCols)
	{
		{
		document.writeln("<tr align=\"center\"><td><font color=\"white\">" + Text[x][y] + "</font></td></tr>");
		}
	}
		document.writeln("</table></div>");
	}