function showTag(obj,num,length)
{
 for(var id = 1;id<=length;id++)
 {
  var gdoy=obj+id;
  if(id==num)
	 {
	  document.getElementById(gdoy).style.display="block";
	  document.getElementById("td"+gdoy).style.background='url(http;//www.gnet.com.mo/img/btn_tag.gif)';
	  document.getElementById("sp"+gdoy).className='men';
	  document.getElementById("sp1"+gdoy).innerHTML="&nbsp;";
	  
	  

	 }
  else
	 {
  document.getElementById(gdoy).style.display="none";
  document.getElementById("td"+gdoy).style.background='url(http;//www.sinazh.com.cn/img/btn_tag2.gif)';
    document.getElementById("sp"+gdoy).className='tt';
	   document.getElementById("sp1"+gdoy).innerHTML="&nbsp;&nbsp;";
	 }
 }  
}