<!--
// 別ウインドウ（印刷用ページ）を画面中央に開く
function openCWindow(uri, width, height){
	var left = Math.floor((screen.width-width)/2);
	var top  = Math.floor((screen.height-height)/2);
	var win = window.open(uri, "_blank", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+width+",height="+height+",left="+left+",top="+top);
	if(document.all === void 0 && document.layers === void 0 && document.getElementById === void 0){
		win.resizeTo(width, height);
		win.moveTo(left, top);
	}
	win.focus();
}
//-->