l = 60; // 表示するx座標
t = 60; // 表示するy座標
w = 540; // 横幅
h = 600; // 縦幅
function openWindow1() {
  window.open("coupon.html","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");
}
l2 = 60; // 表示するx座標
t2 = 60; // 表示するy座標
w2 = 840; // 横幅
h2 = 840; // 縦幅
function openWindow2() {
  window.open("topics/index.html","OpenWindow2",
    "screenX="+l2+",screenY="+t2+",left="+l2+",top="+t2+",width="+w2+",height="+h2+", scrollbars=yes,location=yes,menubar=yes,toolbar=yes, status=yes,directories=yes,resizable=yes");
}