function del($href) {
  if(confirm("本当に削除しますか?")) {
    document.location.href = $href;
  }
}
