if(typeof roomster == "undefined") roomster={};
if(typeof roomster.net == "undefined") roomster.net={};
roomster.net.propertyinfo_class = function() {};
Object.extend(roomster.net.propertyinfo_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	hotlist_delete: function(apt_id, user_id) {
		return this.invoke("hotlist_delete", {"apt_id":apt_id, "user_id":user_id}, this.hotlist_delete.getArguments().slice(2));
	},
	hotlist_add: function(apt_id, user_id, name, email, guid) {
		return this.invoke("hotlist_add", {"apt_id":apt_id, "user_id":user_id, "name":name, "email":email, "guid":guid}, this.hotlist_add.getArguments().slice(5));
	},
	share: function(apt_id, po_user_id, user_id, address) {
		return this.invoke("share", {"apt_id":apt_id, "po_user_id":po_user_id, "user_id":user_id, "address":address}, this.share.getArguments().slice(4));
	},
	userID: function() {
		return this.invoke("userID", {}, this.userID.getArguments().slice(0));
	},
	send_message: function(view_uid, uid, subject, body, partner_id, unit_id) {
		return this.invoke("send_message", {"view_uid":view_uid, "uid":uid, "subject":subject, "body":body, "partner_id":partner_id, "unit_id":unit_id}, this.send_message.getArguments().slice(6));
	},
	url: '/ajaxpro/roomster.net.propertyinfo,roomster.net.ashx'
}));
roomster.net.propertyinfo = new roomster.net.propertyinfo_class();

