// トップページのタブ表示切り替え
function show(id) {
  if (document.all) {
    if (id == "tabbox1") {
      document.all.item("tabbox1").style.display = "block";
      document.all.item("tabbox2").style.display = "none";
    }
    if (id == "tabbox2") {
      document.all.item("tabbox1").style.display = "none";
      document.all.item("tabbox2").style.display = "block";
    }
  }
  else if (document.layers) {

  }
  else if (document.getElementById) {
    if (id == "tabbox1") {
      document.getElementById("tabbox1").style.display = "block";
      document.getElementById("tabbox2").style.display = "none";
    }
    if (id == "tabbox2") {
      document.getElementById("tabbox1").style.display = "none";
      document.getElementById("tabbox2").style.display = "block";
    }
  }
}
