// JavaScript Document
/*地域サイトへのリンク処理用*/
function kakunin2(){
  obj = document.test2.linkselect2;

  index = obj.selectedIndex;
  if (index != 0){
    href = obj.options[index].value;
    location.href = href;
  }
}

/*都道府県サイトへのリンク処理用*/
function kakunin(){
  obj = document.test.linkselect;

  index = obj.selectedIndex;
  if (index != 0){
    href = obj.options[index].value;
    location.href = href;
  }
}