test_class = function() {};
Object.extend(test_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetSearchItems: function(strQuery, type) {
		return this.invoke("GetSearchItems", {"strQuery":strQuery, "type":type}, this.GetSearchItems.getArguments().slice(2));
	},
	LoginUser: function(name1, pwd1, type1) {
		return this.invoke("LoginUser", {"name1":name1, "pwd1":pwd1, "type1":type1}, this.LoginUser.getArguments().slice(3));
	},
	loginout: function(name) {
		return this.invoke("loginout", {"name":name}, this.loginout.getArguments().slice(1));
	},
	url: '/ajaxpro/YSZXWEB.DefaultNew,YSZXWEB.ashx'
}));
test = new test_class();


