//パラメータを渡してウィンドウを開く
function OpenWindow(theURL,winName,features) {
	var WO1;
	WO1=window.open(theURL,winName,features);
	WO1.focus();
}