// サブウィンドウの表示方法を指定する
l = 60; // 表示するx座標
t = 30; // 表示するy座標
w = 240; // 横幅
h = 270; // 縦幅
function openWindow1(URL,x,y) {
	window.open(URL,"OpenWindow","screenX=60,screenY=30,left=60,top=30,width=650,height=630,scrollbars=yes,location=no,menubar=no,toolbar=no,status=no,directories=no,resizable=no");
}
