//別ウィンドウの流用

function OpenWin(URL) {
  NWin = window.open(URL, 'newwin','scrollbars=yes,toolbar=no,menubar=no,location=no,resizable=yes,status=no');
  NWin.focus();
}
