/*_________________________________________________

	ウィンドウ・オープン サイズ固定
	Last updated on 2004.7.21
	Yamada Creative co,.Ltd.

_________________________________________________*/

function oW(url) {
	var oW;
	var winwidth  = 760
	var winheight = 540
	var wl = (screen.width-winwidth) /2;
	var wt = (screen.height-winheight) /2;
	    oW = window.open(url,"win","width="+winwidth+",height="+winheight+",menubar=yes,scrollbars=yes,toolbar=yes,left=" + wl +",top=" + wt+"");
	oW.focus();
}

/*_________________________________________________

	ウィンドウ・オープン サイズ可変
	Last updated on 2004.7.21
	Yamada Creative co,.Ltd.

_________________________________________________*/


function oW2(url, winwidth, winheight) {
	var oW2;
	var wl = (screen.width-winwidth) /2;
	var wt = (screen.height-winheight) /2;
	   oW2 = window.open(url,"win2","width="+winwidth+",height="+winheight+",menubar=yes,scrollbars=yes,toolbar=yes,left=" + wl +",top=" + wt+"");
	oW2.focus();
}

