if(typeof Service == "undefined") Service={};
Service_class = function() {};
Object.extend(Service_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	DoTestUser: function(UserName, UserPwd) {
		return this.invoke("DoTestUser", {"UserName":UserName, "UserPwd":UserPwd}, this.DoTestUser.getArguments().slice(2));
	},
	DotestUserIsHave: function(UserName) {
		return this.invoke("DotestUserIsHave", {"UserName":UserName}, this.DotestUserIsHave.getArguments().slice(1));
	},
	url: '/ajaxpro/Service,Modal.ashx'
}));
Service = new Service_class();

