function killerrors() { 
return true; 
} 
window.onerror = killerrors; 

function isShowIndex(tab_id,div_id,who,aId,aHref){
   for(var i = 0;i < 4;i++){
      document.getElementById("dt"+who+i).style.display="none";
      document.getElementById("sp"+who+i).className="aoff";
   }
   document.getElementById(div_id).style.display="block";
   document.getElementById(tab_id).className="aon";
 document.getElementById(aId).href = aHref;
}




function isShowIndex2(tab2_id,div2_id,who2,aId2,aHref2){
   for(var i = 0;i < 3;i++){
      document.getElementById("dt"+who2+i).style.display="none";
      document.getElementById("sp"+who2+i).className="aoff";
   }
   document.getElementById(div2_id).style.display="block";
   document.getElementById(tab2_id).className="aon";
   document.getElementById(aId2).href = aHref2;
}


