  <!--//
  function qhshow(t){
  var p=t.parentNode;
  var b='',a=0;
   for (var i=0; i<p.childNodes.length; i++){
    if(t.background == p.childNodes[i].background)a++;
   }
   if(a==1)return;
   for (var i=0; i<p.childNodes.length; i++){
    if (p.childNodes[i].id != '' && t.nodeName==p.childNodes[i].nodeName && p.childNodes[i].id != t.id && p.childNodes[i].background != t.background && b==''){
     b = p.childNodes[i].background;
     p.childNodes[i].background = t.background;
     t.background = b;
    }
    if(p.childNodes[i].id != '' && document.getElementById('s_' + p.childNodes[i].id)){document.getElementById('s_' + p.childNodes[i].id).style.display='none';}
   }
   document.getElementById('s_' + t.id).style.display='';
  }
  //-->
