// JavaScript Document   huangcy  ----efound

var theHash = new Array();
function ShowTabs(ID,tbodyid,contentid,hiddenStyle,showStyle,signCount)
{
	var theValue = theHash[signCount];
	if(theValue == undefined)
	{
		theHash[signCount] = 0;
	}
	if(ID!= theHash[signCount])
	{
	  tbodyid[theHash[signCount]].style.display='none';
	  contentid[theHash[signCount]].className = hiddenStyle;
	  tbodyid[ID].style.display='';
	  contentid[ID].className = showStyle;
	   theHash[signCount]=ID;
	}
}