if(typeof Registration == "undefined") Registration={};
Registration_class = function() {};
Object.extend(Registration_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	AddUser: function(FirstName, LastName, Address1, Address2, City, Zip, State, HomePhone, WorkPhone, UserName, UserPassword, UserType) {
		return this.invoke("AddUser", {"FirstName":FirstName, "LastName":LastName, "Address1":Address1, "Address2":Address2, "City":City, "Zip":Zip, "State":State, "HomePhone":HomePhone, "WorkPhone":WorkPhone, "UserName":UserName, "UserPassword":UserPassword, "UserType":UserType}, this.AddUser.getArguments().slice(12));
	},
	url: '/ajaxpro/Registration,NorthBloomField.ashx'
}));
Registration = new Registration_class();

