<!--

var subWin = null;

function openWindow (sURL,iWidth,iHeight) {

	var l = (screen.width - iWidth) / 2;
	var t = (screen.height - iHeight) / 2;

	subWin = window.open(sURL,"subWin","scrollbars=yes,status=yes,resizable=yes,width="+iWidth+",height="+iHeight+",left="+l+",top="+t+"titlebar=no");

	subWin.focus();	// フォーカスをあてる
}

//-->
