// JavaScript Document


//==================================================
//====ブランクウィンドウで開く
//==================================================
function wOpen(URL){//標準
	URL = window.open(URL, 'pop', 'width=660, height=700, menubar=no, toolbar=no, scrollbars=yes,resizable=yes'); 
	URL.focus();
}
function wOpenL(URL){//サイズ違い
	URL = window.open(URL, 'pop', 'width=840, height=700, menubar=no, toolbar=no, scrollbars=yes,resizable=yes'); 
	URL.focus();
}

//==================================================
//====親ウィンドウで開く
//==================================================
function wOpener(url){
	if(!window.opener || window.opener.closed){
		location.href=url;
	}
	else{
		window.opener.location.href = url;
	}
}
