PlavixRedesignClientProxy_class = function() {};
Object.extend(PlavixRedesignClientProxy_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	YourMethodName: function() {
		return this.invoke("YourMethodName", {}, this.YourMethodName.getArguments().slice(0));
	},
	FinalizeParticipant: function(phone) {
		return this.invoke("FinalizeParticipant", {"phone":phone}, this.FinalizeParticipant.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));
	},
	url: '/ajaxpro/PlavixRedesignClientProxy,BMS.EWD.IM.LaunchNet.PlavixRedesign.ashx'
}));
PlavixRedesignClientProxy = new PlavixRedesignClientProxy_class();

