<!--JavaScript"sub_windowサイズ指定"ここから↓-->
<!--
function openWin(URL) {
		W = 760;
		H = 460;
		scrW=screen.width;
		scrH=screen.height;
		openX = ((scrW/2) - (W/2));
		openY = ((scrH/2) - (H/2));
	if (navigator.appName == "Microsoft Internet Explorer") {
		if (navigator.platform.substr(0,3) == "Mac") {
			mainWin = window.open(URL,"sub","directories=no,menubar=no,location=no,scrollbars=no,status=no,width=" + W+ ",height=" + H + ",left=" +  openX + ",top=" + openY );
		} else{
			mainWin = window.open(URL,"sub","directories=no,menubar=no,location=no,scrollbars=no,status=no,width=" + W+ ",height=" + H + ",left=" +  openX + ",top=" + openY );
		}
	} else {
	mainWin = window.open(URL,"sub","directories=no,menubar=no,location=no,scrollbars=no,status=no,width=" + W+ ",height=" + H + ",screenX=" +  openX + ",screenY=" + openY );
	}

}


//-->
<!--JavaScript"sub_windowサイズ指定"ここまで-->

<!--JavaScript"windowフルスクリーン"ここから↓-->
<!--
top.window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
function popUpWin(url, name, width, height, scroll) {
  var properties = "width=" + width + ",height=" + height + ",scrollbars=" + scroll;
  popUp = window.open(url, name, properties);
  popUp.focus();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
