function goFootball3()
{
var strTablSeasonOpen,strTablSeasonClos;
strTablSeasonOpen = "<table id='our-season-football' border='0' cellpadding='0' cellspacing='0' width='510px' align='center'>";
strTablSeasonClos = "</table>";

	document.write(strTablSeasonOpen);

	for (var i = 0; i < confs.length; i++) 
	{
	 	if (confs[i] == one)
		{
		 	document.write(eval("strSeason" + confs[i]));
		}
	}

	for (var i = 0; i < confs.length; i++)
	{	
	 	if (confs[i] == two)
 		{
	 	document.write(eval("strSeason" + confs[i]));
		}
	}	

	for (var i = 0; i < confs.length; i++)
	{	
	 	if (confs[i] == three)
		{
		   if (confs[i] != "")
		   {
		   document.write(eval("strSeason" + confs[i]));
		   }
		}
	}	

	for (var i = 0; i < confs.length; i++)
	{	
	 	if (confs[i] == four)
 		{
	 	document.write(eval("strSeason" + confs[i]));
		}
	}	

	for (var i = 0; i < confs.length; i++)
	{	
	 	if (confs[i] == five)
 		{
	 	document.write(eval("strSeason" + confs[i]));
		}
	}	

	for (var i = 0; i < confs.length; i++)
	{	
	 	if (confs[i] == six)
 		{
	 	document.write(eval("strSeason" + confs[i]));
		}
	}	
	
	document.write(strTablSeasonClos);
 }