if(typeof HR == "undefined") HR={};
if(typeof HR.Web == "undefined") HR.Web={};
HR.Web.Register_class = function() {};
Object.extend(HR.Web.Register_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	CheckLoginID: function(logID) {
		return this.invoke("CheckLoginID", {"logID":logID}, this.CheckLoginID.getArguments().slice(1));
	},
	CheckEmail: function(email) {
		return this.invoke("CheckEmail", {"email":email}, this.CheckEmail.getArguments().slice(1));
	},
	Add: function(logID, pass, email, from) {
		return this.invoke("Add", {"logID":logID, "pass":pass, "email":email, "from":from}, this.Add.getArguments().slice(4));
	},
	url: '/HrSystem/ajaxpro/HR.Web.Register,HR.Web.ashx'
}));
HR.Web.Register = new HR.Web.Register_class();


