
deleteConfirm = function(url) {
  if (window.confirm('本当に削除してもよろしいですか？')) {
	location.href = url;
  }
  return false;
}


