BaracludeUpdateClientProxy_class = function() {};
Object.extend(BaracludeUpdateClientProxy_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	YourMethodName: function() {
		return this.invoke("YourMethodName", {}, this.YourMethodName.getArguments().slice(0));
	},
	SetSearchKeywords: function(keywords) {
		return this.invoke("SetSearchKeywords", {"keywords":keywords}, this.SetSearchKeywords.getArguments().slice(1));
	},
	SendToFriendEmail: function(yourName, yourEmail, friendName, friendEmail, customMessage, fromPageName) {
		return this.invoke("SendToFriendEmail", {"yourName":yourName, "yourEmail":yourEmail, "friendName":friendName, "friendEmail":friendEmail, "customMessage":customMessage, "fromPageName":fromPageName}, this.SendToFriendEmail.getArguments().slice(6));
	},
	FinalizeParticipant: function() {
		return this.invoke("FinalizeParticipant", {}, this.FinalizeParticipant.getArguments().slice(0));
	},
	FinalizeUnsubscribeParticipant: function() {
		return this.invoke("FinalizeUnsubscribeParticipant", {}, this.FinalizeUnsubscribeParticipant.getArguments().slice(0));
	},
	url: '/ajaxpro/BaracludeUpdateClientProxy,BMS.EWD.IM.LaunchNet.BaracludeUpdate.ashx'
}));
BaracludeUpdateClientProxy = new BaracludeUpdateClientProxy_class();


