<!--
//店舗単体ページ用スクリプト
function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}
//店舗単体ページ用スクリプト（08.8.11更新版）
function OpenShopWindow(theURL) { //v2.0
	//window.open(theURL,'shoppopup','toolbar=yes,menubar=yes,scrollbars=yes,width=600,height=600');
	var shoppopup;
	subShopWin = window.open(theURL,'shoppopup','toolbar=yes,menubar=yes,scrollbars=yes,width=600,height=600');
	subShopWin.focus();
}

function GoParentWin(WO) { //v2.0
	if(opener.closed){
		window.open(WO,"MainWin");
		/*NewMWin.location.href = WO;*/
	}else{
		opener.location.href = WO;
	}
}

var winPosX = screen.width-600;
optionString = "toolbar=yes,menubar=no,scrollbars=yes,width=600,height=730,";
optionString += "left=" + winPosX + ",top=0";

//キャンペーンページ用スクリプト
function openCampaignWin(theURL){	
	var campaignWin;
	campaignWin = window.open(theURL,'campaignWin','height=600,width=526,toolbar=yes,status=yes,location=no,scrollbars=yes,resizable=no')
	campaignWin.focus();
};
//-->