AjaxAction_class = function() {};
Object.extend(AjaxAction_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	Logout: function() {
		return this.invoke("Logout", {}, this.Logout.getArguments().slice(0));
	},
	AddReview: function(RecipeID, EmailAddress, Rating, FirstName, LastName, Location, Title, Review) {
		return this.invoke("AddReview", {"RecipeID":RecipeID, "EmailAddress":EmailAddress, "Rating":Rating, "FirstName":FirstName, "LastName":LastName, "Location":Location, "Title":Title, "Review":Review}, this.AddReview.getArguments().slice(8));
	},
	url: '/ajaxpro/AjaxAction,App_Code.x7jvlodp.ashx'
}));
AjaxAction = new AjaxAction_class();


