// サブウィンドウの表示方法を指定する
l = 60; // 表示するx座標
t = 30; // 表示するy座標
w = 760; // 横幅
h = 600; // 縦幅
function openWindow1() {
  window.open("kijunshosai.htm","OpenWindow",
    "screenX="+l+",screenY="+t+",left="+l+",top="+t+",width="+w+",height="+h+", scrollbars=yes,location=no,menubar=no,toolbar=no, status=no,directories=no,resizable=no");
}


