



function pop01(url) {

	

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

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

	w = 950; // 横幅

	h = 830; // 縦幅



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

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

  subWin = window.open("popup01.html","OpenWindow","screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h+",resizable=yes,scrollbars=yes");

}



function pop02(url) {

	

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

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

	w = 600; // 横幅

	h = 850; // 縦幅



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

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

  subWin = window.open("popup02.html","OpenWindow","screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h+",resizable=yes,scrollbars=yes");

}



function pop03(url) {

	

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

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

	w = 800; // 横幅

	h = 550; // 縦幅



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

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

  subWin = window.open("popup03.html","OpenWindow","screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h+",resizable=yes,scrollbars=yes");

}