l = 60; // 表示するx座標
t = 0; // 表示するy座標
w = 400; // 横幅
h = 200; // 縦幅
function openWindow1() {
  window.open("about.html","OpenWindow",
    "screenX="+l+",screenY="+t+",left="+l+",top="+t+",width="+w+",height="+h+", scrollbars=no,location=no,menubar=no,toolbar=no, status=no,directories=no,resizable=no");
}
