<!--tab:ID标签名	ID:当前ID号		COUNTID:共ID号-->
	function tabqiehuan(tab,id,countid){
		for(var i=1;i<=countid;i++)
		{
		     if(parseInt(i)==parseInt(id))
		   { document.getElementById(tab+i).style.display = "block"; 
		   //alert(tab+i+'设为block');
		   }
		     else
		   { document.getElementById(tab+i).style.display = "none"; 
		   	//alert(tab+i+'设为none');
		   }
		}
	}
	
