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