//別ウィンドウを開く//
function NewWindow(loc,wnd) {
  var wnd="NewWindow";
  var width='600';
  var height='750';
  var myWindow = window.open(loc, wnd, 'resizable=yes,scrollbars=yes,status=0,width='+width+',height='+height);
  if (myWindow.focus!=null) {
      myWindow.focus();}
}