<!--// サブウィンドウの大きさと開く位置の指定l = 150; // 表示するx座標t = 150; // 表示するy座標w = 330; // 横幅h = 440; // 縦幅function subWinN() {  window.open("pack.htm","SubWindow",    "screenX="+l+",screenY="+t+",left="+l+",top="+t+",width="+w+",height="+h+",scrollbars=no,location=0,menubar=0,toolbar=0, status=0,directories=0,resizable=0");}// 中央に開くfunction subWinC() {  x = (screen.width  - w) / 2;  y = (screen.height - h) / 2;  subWin = window.open("pack.htm","SubWindowC",    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h+",scrollbars=no,location=0,menubar=0,toolbar=0, status=0,directories=0,resizable=0");}-->