// サブウィンドウの大きさと開く位置の指定
l = 60; // 表示するx座標
t = 30; // 表示するy座標
w = 768; // 横幅
h = 312; // 縦幅
// 中央に開く
function seatColorTop() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("colors/win/seat_colors.html","OpenWindow",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}

function seatColor() {
  x = (screen.width - w) / 2;
  y = (screen.height - h) / 2;
  subWin = window.open("win/seat_colors.html","OpenWindow",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}

