

/*戻る*/
function back() {
  history.back();
}

/*pdf を開く */
function pdfopen(path) {
  window.open( path, "_blank", "");
}

/*URL を開く */
function urlopen(location) {
  window.open( location, "_blank", "");
}
