<!--
function check(W,H,C) {
	// 開きたいウィンドウの大きさをW,Hに、Cが1なら中央、0なら左上に配置
	if (C == 1) {
		scrW=screen.width;
		scrH=screen.height;
		
		openX = ((scrW/2) - (W/2));
		openY = ((scrH/2) - (H/2));
	} else {
		openX = 0;
		openY = 0;
	}
	//以下、各ブラウザ用のウィンドウ起動、また、微調整出来るように分岐
	if (navigator.appName == "Microsoft Internet Explorer") {
		if (navigator.platform.substr(0,3) == "Mac") {
			//Mac IE用に調整
			childWin = window.open("./vchecks/index.html","childwin","directories=no,menubar=no,location=no,scrollbars=yes,status=no,resizable=yes,width=" + W+ ",height=" + H + ",left=" +  openX + ",top=" + openY );
		} else{
			//Win IE用に調整
			childWin = window.open("./vchecks/index.html","childwin","directories=no,menubar=no,location=no,scrollbars=yes,status=no,resizable=yes,width=" + W+ ",height=" + H + ",left=" +  openX + ",top=" + openY );
		}
	} else {
	//Netscape用に調整
	childWin = window.open("./vchecks/index.html","childwin","directories=no,menubar=no,location=no,scrollbars=yes,status=no,resizable=yes,width=" + W+ ",height=" + H + ",screenX=" +  openX + ",screenY=" + openY );
	}
}
//-->