/**
 * 各種ポップアップウィンドウの制御を行う
 */

/* デジタルカタログを起動する */
function popupCatalog(url) {
	window.open(url, "catalog", "width=960, height=600, location=yes, toolbar=no, menubar=no, resizable=yes, scrollbars=yes");
}

/* ポップアップ起動させる */
var obj = null;

function popupWindowCtl(url) {
	this.name = "window1";
	if (obj == null) {
		obj = window.open(url, "window2", "location=yes, toolbar=yes, menubar=yes, resizable=yes, scrollbars=yes");
		return;
	}
	if (obj.closed) {
		obj = window.open(url, "window2", "location=yes, toolbar=yes, menubar=yes, resizable=yes, scrollbars=yes");
	} else {
		obj.close();
		obj = window.open(url, "window2", "location=yes, toolbar=yes, menubar=yes, resizable=yes, scrollbars=yes");
	}
}

/* ポップアップ子画面制御 */
function parentWindowCtl(url) {
	if (window.opener == null) {
		//window.name = "window1";
		//window.location.href = url;
		//obj = null;
		this.name = "window2";
		window.opener = window.open(url, "window1", "location=yes, toolbar=yes, menubar=yes, resizable=yes, scrollbars=yes");
	} else if (window.opener.closed) {
		window.opener = window.open(url, "window1", "location=yes, toolbar=yes, menubar=yes, resizable=yes, scrollbars=yes");
	} else {
		window.opener.location.href = url;
	}
}

/* 料理教室お申し込みフォームを起動する */
function popupAppCtl(url) {
	window.open(url, "app", "location=yes, toolbar=yes, menubar=yes, resizable=yes, scrollbars=yes");
}

/* お問い合わせフォームを起動する */
function popupInquiryCtl(url) {
	window.open(url, "inquiry", "location=yes, toolbar=yes, menubar=yes, resizable=yes, scrollbars=yes");
}

/* IR情報を起動する */
function popupCompanyIrCtl() {
	document.location.href = "http://ir.shizuokagas.co.jp/ja/Top.html";
	//window.open("http://ir.shizuokagas.co.jp/ja/Top.html", "companyir", "location=yes, toolbar=yes, menubar=yes, resizable=yes, scrollbars=yes");
}

/* よくわかる静岡ガス起動する */
function popupCompanySpecialCtl() {
	window.open("http://www.shizuokagas.co.jp/company/ir/special/index.html", "companyspecial", "width=670, height=850, location=no, toolbar=no, menubar=no, resizable=yes, scrollbars=yes");
}

function information(){
	window.open("information.html","information","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=752,height=500");
}

function seminar(){
	window.open("seminar.html", "seminar", "width=752,height=500,scrollbars=yes,menubar=no,status=no");
}

/* tvcm */
function popupTvcmCtl(url, h) {
	window.open(url, "tvcm", "width=600, height=" + h + ", location=yes, toolbar=no, menubar=no, resizable=yes, scrollbars=yes");
}