// JavaScript Document
function MR_openBrWindow(theURL,winName,features,width,height) { //v2.0
	var scriptwin = window.open(theURL,winName,features);
	//フォーカスを当ててサイズ変更
	if (scriptwin.focus!=null) {
		scriptwin.resizeTo(width, height);
		scriptwin.focus();
	}
}



