RealEstate_class = function() {};
Object.extend(RealEstate_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetCategories: function() {
		return this.invoke("GetCategories", {}, this.GetCategories.getArguments().slice(0));
	},
	GetSubCategories: function(CategoryID) {
		return this.invoke("GetSubCategories", {"CategoryID":CategoryID}, this.GetSubCategories.getArguments().slice(1));
	},
	GetPurposes: function() {
		return this.invoke("GetPurposes", {}, this.GetPurposes.getArguments().slice(0));
	},
	AddToFavs: function(PropertyID) {
		return this.invoke("AddToFavs", {"PropertyID":PropertyID}, this.AddToFavs.getArguments().slice(1));
	},
	ChkFav: function(PropertyID) {
		return this.invoke("ChkFav", {"PropertyID":PropertyID}, this.ChkFav.getArguments().slice(1));
	},
	url: '/ajaxpro/RealEstate,App_Code.qlvxy1j4.ashx'
}));
RealEstate = new RealEstate_class();

