// JavaScript Document
<!--
// サブウィンドウの大きさと開く位置の指定
l = 60; // 表示するx座標
t = 30; // 表示するy座標
w = 880; // 横幅
h = 600; // 縦幅

// 中央に開く
function openWindowC_reserve_form() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("http://www.arrangement-k.net/reserve/index.html","OpenWindow",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}
function openWindowC_contact_form() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("http://www.arrangement-k.net/contact/index.html","OpenWindow",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}
