function showTab(tabID) { for(i=1;i<=6;i++) { if(tabID!=i) { document.getElementById("tab"+i+"_head").style.backgroundColor='#AAAA88'; document.getElementById("tab"+i+"_contents").style.display='none'; } else { document.getElementById("tab"+i+"_head").style.backgroundColor=''; document.getElementById("tab"+i+"_contents").style.display=''; } } }