function OpenWin(w,h) {

//バーチャルオープンキャンパス別ウインドウオープン

		scrW=screen.availWidth;

		scrH=screen.availHeight;

		W=w;//480;

		H=h;//320;

		

		openX = ((scrW/2) - (W/2));

		openY = ((scrH/2) - (H/2));

	//以下、各ブラウザ用のウィンドウ起動

	if (navigator.appName == "Microsoft Internet Explorer") {

		if (navigator.platform.substr(0,3) == "Mac") {

			//Mac IE用

			childWin = window.open("voc/index.htm","newwin","directories=no,menubar=no,location=no,scrollbars=no,status=no,width=" + W+ ",height=" + H + ",left=" +  openX + ",top=" + openY );

		} else{

			//Win IE用

			childWin = window.open("voc/index.htm","newwin","directories=no,menubar=no,location=no,scrollbars=no,status=no,width=" + W+ ",height=" + H + ",left=" +  openX + ",top=" + openY );

		}

	} else {

	//Netscape用

	childWin = window.open("voc/index.htm","newwin","directories=no,menubar=no,location=no,scrollbars=no,status=no,width=" + W + ",height=" + H + ",screenX=" +  openX + ",screenY=" + openY );

	}

}