function FFOpenWindow(theURL,WinType)
{
	switch(WinType){
		//アドイン注文用ウインドウ
		case 1:
			openWin = window.open(theURL,'NewWindow','toolbar=no,menubar=no,scrollbars=yes,width=900,height=580,resizable=yes');
			break;
		//地図グラフ注文用ウインドウ
		case 2:
			openWin = window.open(theURL,'NewWindow','toolbar=no,menubar=no,scrollbars=yes,width=980,height=580,resizable=yes');
			break;
		//
		//機能説明用ウインドウ
		case 3:
			openWin = window.open(theURL,'','toolbar=no,menubar=no,scrollbars=yes,width=620,height=580,resizable=yes');
			break;
		//読者サポートページ用
		case 4:
			openWin = window.open(theURL,'NewWindow','toolbar=no,menubar=no,scrollbars=yes,width=760,height=580,resizable=yes');
			break;
	}
}

function FFOpenWindow3(theURL,Width,Height)
{
	var WinOpt="toolbar=no,menubar=no,scrollbars=yes,width="+Width+",height="+Height+",resizable=yes,top=10,left=10";
	openWin = window.open(theURL,'NewWindow3',WinOpt);
}


function FFOpenWindow2(theURL,Width,Height)
{
	var WinOpt="toolbar=no,menubar=no,scrollbars=yes,width="+Width+",height="+Height+",resizable=yes,top=10,left=10";
	openWin = window.open(theURL,'NewWindow3',WinOpt);
}


