// JavaScript Document

function kakunin(){
  obj = document.shoplistall.linkselect;

  index = obj.selectedIndex;
  if (index != 0){
    href = obj.options[index].value;
    location.href = href;
  }
}
