// サブウィンドウの大きさと開く位置の指定
l = 0; // 表示するx座標
t = 0; // 表示するy座標
w = 850; // 横幅
h = 750; // 縦幅
function openWindow() {
  window.open("http://recruit.atelier-rei.net","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");
}

