//-- フォームウィンドウをポップアップする
function popupFormWindow(obj, target_name, width, height) {
	wobj = window.open("", target_name,"scrollbars=yes,width=" + width + ",height=" + height);
	obj.target = target_name;
	wobj.focus();
	return true;
}

