//-------------------
function switch_tab_newslist(intThisId, strBase, intTotalIds)
//-------------------
{
	document.getElementById(strBase+intThisId).style.backgroundColor="#FFFFFF";
	document.getElementById(strBase+intThisId).style.color="#E17627";
	document.getElementById(strBase+"Tab"+intThisId).style.display="block";	

	for (var i=1; i <= intTotalIds; ++i)
	{
		if (i != intThisId)
		{
			document.getElementById(strBase+i).style.backgroundColor="#234261";
			document.getElementById(strBase+i).style.color="#FFFFFF";
			document.getElementById(strBase+"Tab"+i).style.display="none";
		}
	}
}
