/*------------------------------------------------------------
 *サブウインドウを開く
/*------------------------------------------------------------*/
function fOpenW(url,title,config) {
	var newWin;
	if (!!window && url) {
		if (!config) config = "";
		if(config == "share") config = "width=700,height=580,scrollbars=yes,location=no,menubar=yes,directories=no,status=yes,resizable=yes";
		newWin = window.open(url,title,config);
		newWin.focus();
	}
}


function OW(FN, WN, W, H) {
	var Param = 'width=' + W + ',height=' + H + ',resizable' + ',scrollbars' + ',status' + ',menubar' + ',top=6' + ',left=6';
	window.open(FN,WN,Param);
}
function OW2(FN, WN, W, H) {
	var Param = 'width=' + W + ',height=' + H + ',resizable' + ',scrollbars' + ',status' + ',menubar' + ',toolbar' + ',top=6' + ',left=6';
	window.open(FN,WN,Param);
}
