function nTabs(thisObj,Num){
if(thisObj.className == "active")return;
var tabObj = thisObj.parentNode.id;
var tabList = document.getElementById(tabObj).getElementsByTagName("li");
for(i=0; i <tabList.length; i++)
{
  if (i == Num)
  {
   thisObj.className = "active"; 
      document.getElementById(tabObj+"_Content"+i).style.display = "block";
  }else{
   tabList[i].className = "normal"; 
   document.getElementById(tabObj+"_Content"+i).style.display = "none";
  }
} 
if(Num==0){
	$("#href_more").attr('href','xhdt.html?infotype=501');
}else if(Num==1){
	$("#href_more").attr('href','xhdt.html?infotype=201');
}else if(Num==2){
	$("#href_more").attr('href','xhdt.html?infotype=203');
}
}
