<!--
var allPageTags = new Array();

function swaptabs(theTab)
	{
	for (var x = 1; x++; x <= 5)
		{
		if (theTab == x)
			{
			doSEWC("Table" + x,"display","inline","none");
			}
		else
			{
			doSEWC("Table" + x,"display","none","inline");
			}
		}
	}

function doSEWC(theTab,theGroup,thestyle,theaction,theopposite)
	{
	var allPageTags=document.getElementsByTagName("*");

	for (i=0; i<allPageTags.length; i++)
	   {

		if (allPageTags[i].className.indexOf(theGroup) == 0)
			{

			if (allPageTags[i].className == theGroup + theTab)
				{
				eval("allPageTags[i].style." + thestyle + "='" + theaction + "'");
				}
			else
				{
				eval("allPageTags[i].style." + thestyle + "='" + theopposite + "'");
				}
			}
		}
	for (x = 1; x <= 5; x++)
		{
		if (x == parseInt(theTab))
			{
			document.getElementById('tab_' + x.toString()).bgColor='#e8eff5'; 
			}
		else
			{
			document.getElementById('tab_' + x.toString()).bgColor='#FFFFFF'; 
			}
		}
	}
//-->
