landingpage_class = function() {};
Object.extend(landingpage_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	PostEmail: function(from, to, subject, message) {
		return this.invoke("PostEmail", {"from":from, "to":to, "subject":subject, "message":message}, this.PostEmail.getArguments().slice(4));
	},
	PostComment: function(releaseId, adId, publisherId, commentName, commentText) {
		return this.invoke("PostComment", {"releaseId":releaseId, "adId":adId, "publisherId":publisherId, "commentName":commentName, "commentText":commentText}, this.PostComment.getArguments().slice(5));
	},
	PostRating: function(releaseId, adId, adBlockId, cookieId, rating) {
		return this.invoke("PostRating", {"releaseId":releaseId, "adId":adId, "adBlockId":adBlockId, "cookieId":cookieId, "rating":rating}, this.PostRating.getArguments().slice(5));
	},
	PostAction: function(releaseId, adId, cookieId, adBlockId, name, value) {
		return this.invoke("PostAction", {"releaseId":releaseId, "adId":adId, "cookieId":cookieId, "adBlockId":adBlockId, "name":name, "value":value}, this.PostAction.getArguments().slice(6));
	},
	url: '/ajaxpro/landingpage,App_Web_landingpage.aspx.cdcab7d2.ashx'
}));
landingpage = new landingpage_class();

