function Hirakumado(loc) {
  var wnd="Hirakumado";
  var width='680';//※a窓のよこ幅（但しスタート時）
  var height='700';//窓の立て幅（但しスタート時）
  var myWindow = window.open(loc, wnd, 'resizable=no,scrollbars=yes,status=0,width='+width+',height='+height);
  if (myWindow.focus!=null) {
      myWindow.focus();
  }
}
