<!--
	function win01(URL,Winname,Wwidth,Wheight){
		var WIN;
		WIN = window.open(URL,Winname,"width="+Wwidth+",height="+Wheight+",scrollbars=no,resizable=no,toolbar=no,location=no,directories=no,status=no");
		WIN.focus();
	}
// -->
<!--
	function win01_scroll(URL,Winname,Wwidth,Wheight){
		var WIN;
		WIN = window.open(URL,Winname,"width="+Wwidth+",height="+Wheight+",scrollbars=yes,resizable=no,toolbar=no,location=no,directories=no,status=no,left=0,top=0");
		WIN.focus();
	}
// -->		
<!--
	function win02(URL,Winname,Wwidth,Wheight){
		var WIN;
//		alert(URL);
		WIN = window.open(URL,Winname,"width="+Wwidth+",height="+Wheight+",scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=no");
		WIN.focus();

	}
// -->
//左上にOPEN
<!--
	function win_left_top(URL,Winname,Wwidth,Wheight){
		var WIN;
//		alert(URL);
		WIN = window.open(URL,Winname,"width="+Wwidth+",height="+Wheight+",scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=no,left=0,top=0");
		WIN.focus();

	}
// -->


<!--
	function win04(URL,Winname,Wwidth,Wheight){
		var WIN;
		alert("ページが自動で切り替わりますので、しばらくお待ちください。");
		WIN = window.open(URL,Winname,"width="+Wwidth+",height="+Wheight+",scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=no");
		WIN.focus();

	}
// -->

<!--
	function win03(URL,Winname,Wwidth,Wheight,Center){
//	var user_disp_height = getshowHeight();
		//画面中央にセット
		if(Center){
			var x = (screen.width  - Wwidth) / 2;
			var y = (screen.Height - Wheight) / 2;
			var move_center = ",left=" + x + ",top=" + y + ",";
		}
		var WIN;
		WIN = window.open(URL,Winname,"width="+Wwidth+",height="+Wheight+move_center+",scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no");
//		WIN.moveTo(x,y);
//		WIN.resizeTo(Wwidth, user_disp_height);
		WIN.focus();
	}
// -->

<!--
function winSubmit(URL,formName){
	var form2 = formName;
//	WIN = window.open(URL,Winname,"width="+Wwidth+",height="+Wheight+",scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no");
//  document.forms[formName].target = Winname;

	document.form2.action = URL; 
    document.form2.method ='post';
	document.form2.target = '_blank';
    document.form2.submit();
}
//-->

<!--
	function ChangeParent()
	{
		window.opener.location.href="../contact/index.php";
	}
//-->


<!--//
function CloseChild()
{
	window.close();
}
//-->
<!--//
function dialogwin(URL,Winname,Wwidth,Wheight){
	var WIN;
	WIN = showModalDialog(URL, Winname, "dialogHeight:" + Wwidth + "px;dialogWidth:" + Wheight + "px");
	WIN.focus();
}
//-->
<!--//
//ウインドの高さ取得
function getshowHeight() {
  if(window.innerHeight)
    return window.innerHeight;
  if(document.body.parentNode.clientHeight)
    return document.body.parentNode.clientHeight;
  if(document.body.clientHeight)
    return document.body.clientHeight;
}
//-->