var win;
function openWin(URL){
	win = new Window("win01", {
		title: "会社概要",
		className: "alphacube",
        width:580,
        height:240,
        zIndex: 100,
        minimizable:true,
        maximizable:true,
        resizable: true,
        draggable:true,
		url: URL,
		okLabel: "Close"
	});
	win.setDestroyOnClose();
	win.showCenter();
}

function openWin2(URL){
	win = new Window("win01", {
		title: "個人情報保護方針",
		className: "alphacube",
        width:580,
        height:240,
        zIndex: 100,
        minimizable:true,
        maximizable:true,
        resizable: true,
        draggable:true,
		url: URL,
		okLabel: "Close"
	});
	win.setDestroyOnClose();
	win.showCenter();
}

function openWin3(URL){
	win = new Window("win01", {
		title: "プライバシーポリシー",
		className: "alphacube",
        width:580,
        height:240,
        zIndex: 100,
        minimizable:true,
        maximizable:true,
        resizable: true,
        draggable:true,
		url: URL,
		okLabel: "Close"
	});
	win.setDestroyOnClose();
	win.showCenter();
}

function openWin4(URL){
	win = new Window("win01", {
		title: "利用規約",
		className: "alphacube",
        width:780,
        height:240,
        zIndex: 100,
        minimizable:true,
        maximizable:true,
        resizable: true,
        draggable:true,
		url: URL,
		okLabel: "Close"
	});
	win.setDestroyOnClose();
	win.showCenter();
}

function openWin5(){
	win = new Window("win01", {
		title: "パスワードを忘れてしまった！",
		className: "alphacube",
        width:580,
        height:240,
        zIndex: 100,
        minimizable:true,
        maximizable:true,
        resizable: true,
        draggable:true,
		url: "password.html",
		okLabel: "Close"
	});
	win.setDestroyOnClose();
	win.showCenter();
}

function openWin6(URL){
	win = new Window("win01", {
		title: "サンプル例",
		className: "alphacube",
        width:750,
        height:300,
        zIndex: 100,
        minimizable:true,
        maximizable:true,
        resizable: true,
        draggable:true,
		url: URL,
		okLabel: "Close"
	});
	win.setDestroyOnClose();
	win.showCenter();
}

function openWin7(URL){
	win = new Window("win01", {
		title: "有料コースとは？",
		className: "alphacube",
        width:750,
        height:300,
        zIndex: 100,
        minimizable:true,
        maximizable:true,
        resizable: true,
        draggable:true,
		url: URL,
		okLabel: "Close"
	});
	win.setDestroyOnClose();
	win.showCenter();
}
function openWin8(URL,Title){
	win = new Window("win01", {
		title: Title,
		className: "alphacube",
        width:750,
        height:300,
        zIndex: 100,
        minimizable:true,
        maximizable:true,
        resizable: true,
        draggable:true,
		url: URL,
		okLabel: "Close"
	});
	win.setDestroyOnClose();
	win.showCenter();
}
function MakeChild(URL)
{
	window.open(URL,'サンプル例','width=750,height=300,resizable=yes,scrollbars=yes');
}
function MakeChild2(URL,p_title)
{
	window.open(URL,p_title,'width=750,height=300,resizable=yes,scrollbars=yes');
}

function displayPage(){
	if (win) win.setURL($F("sURL"));
}
