if(typeof PopupWindowClass == "undefined") PopupWindowClass={};
PopupWindowClass_class = function() {};
Object.extend(PopupWindowClass_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetLocalFileList: function(p_Path, p_ShowType) {
		return this.invoke("GetLocalFileList", {"p_Path":p_Path, "p_ShowType":p_ShowType}, this.GetLocalFileList.getArguments().slice(2));
	},
	GetLocalFolderList: function(p_Path) {
		return this.invoke("GetLocalFolderList", {"p_Path":p_Path}, this.GetLocalFolderList.getArguments().slice(1));
	},
	GetTreeRoot: function(p_RootPath, p_CurrentPath) {
		return this.invoke("GetTreeRoot", {"p_RootPath":p_RootPath, "p_CurrentPath":p_CurrentPath}, this.GetTreeRoot.getArguments().slice(2));
	},
	GetFileList: function(p_Path) {
		return this.invoke("GetFileList", {"p_Path":p_Path}, this.GetFileList.getArguments().slice(1));
	},
	GetFolderList: function(p_Path) {
		return this.invoke("GetFolderList", {"p_Path":p_Path}, this.GetFolderList.getArguments().slice(1));
	},
	url: '/ajaxpro/PopupWindowClass,App_Code.ashx'
}));
PopupWindowClass = new PopupWindowClass_class();

