function jdmovein(hang,no)
{
    var el = document.getElementsByTagName('li')
    for (i=0;i<el.length;i++)
	{
	  if (el[i].id.length > 0 && el[i].id.indexOf("tl"+hang)>-1)
	  {
	     el[i].className="lic";
	     var tmpid = el[i].id.replace("tl","");
		 document.getElementById("dvtl"+tmpid).style.visibility="hidden";		 		 
	  }	  
	}

	
   
	if (document.getElementById("tl"+hang+no)!=null)
	  document.getElementById("tl"+hang+no).className="lic3";
    if (document.getElementById("dvtl"+hang+no)!=null)    
      document.getElementById("dvtl"+hang+no).style.visibility=""; 
}

function whmovein(id)
{
    var el = document.getElementsByTagName('li')
    for (i=0;i<el.length;i++)
	{
	  if (el[i].id.length > 0 && el[i].id.indexOf("liwh")>-1)
	  {
	     el[i].className="lic";
		 var tmpid = el[i].id.replace("liwh","");
		 document.getElementById("divwh"+tmpid).style.visibility="hidden";
	  }
	}	
   
	if (document.getElementById("liwh"+id)!=null)
	  document.getElementById("liwh"+id).className="lic3";
    if (document.getElementById("divwh"+id)!=null)    
      document.getElementById("divwh"+id).style.visibility=""; 
}