function ShowAddr(Tid){
       if (document.getElementById){
              ShowId=document.getElementById(Tid);
                     if (ShowId.style.display==""){
                            ShowId.style.display="block";
                     } else{
                            ShowId.style.display="";
                     }
}
}