<!--
// サブウィンドウの大きさと開く位置の指定

function oW1() {
l = 0; // 表示するx座標
t = 0; // 表示するy座標
w = 510; // 横幅
h = 700; // 縦幅
  x = 1;
  y = 27;
  subWin = window.open("pickup/index.html","OpenWindow",
    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);
}

// -->
