function showhide(t_id){//显示隐藏程序

   if (t_id.style.display == "none") {//如果为隐藏状态
     t_id.style.display="";//切换为显示状态
   }else{//否则
     t_id.style.display="none";//切换为隐藏状态

   }
}