// サブウィンドウの大きさと開く位置の指定

l = 60; // 表示するx座標

t = 30; // 表示するy座標

w = 470; // 横幅
	
h = 370; // 縦幅



// 中央に開く01/////

function openWindowL() {

  x = (screen.width  - w) / 2;

  y = (screen.height - h) / 2;

  subWin = window.open("new/new_back.html","OpenWindow",

    "screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);

}
