//-------------------
function switch_tab_newslist(intThisId, strBase, intTotalIds)
//-------------------
{
	document.getElementById(strBase+intThisId).style.background="url(/_images/graphics/tabbedNewsOvr.gif)";
	document.getElementById(strBase+intThisId).style.color="#336633";
	document.getElementById(strBase+"Tab"+intThisId).style.display="block";	

	for (var i=1; i <= intTotalIds; ++i)
	{
		if (i != intThisId)
		{
			document.getElementById(strBase+i).style.background="transparent";
			document.getElementById(strBase+i).style.color="#FFF";
			document.getElementById(strBase+"Tab"+i).style.display="none";
		}
	}
}
