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, pageName) {
		return this.invoke("SendToFriendEmail", {"yourName":yourName, "yourEmail":yourEmail, "friendName":friendName, "friendEmail":friendEmail, "pageName":pageName}, this.SendToFriendEmail.getArguments().slice(5));
	},
	FinalizeStrokeParticipant: function(phone, dob, otherChecked, otherText) {
		return this.invoke("FinalizeStrokeParticipant", {"phone":phone, "dob":dob, "otherChecked":otherChecked, "otherText":otherText}, this.FinalizeStrokeParticipant.getArguments().slice(4));
	},
	FinalizeACSParticipant: function(dob) {
		return this.invoke("FinalizeACSParticipant", {"dob":dob}, this.FinalizeACSParticipant.getArguments().slice(1));
	},
	SendSubscribeConfirmationEmail: function(toEmail) {
		return this.invoke("SendSubscribeConfirmationEmail", {"toEmail":toEmail}, this.SendSubscribeConfirmationEmail.getArguments().slice(1));
	},
	ACSSendSubscribeConfirmationEmail: function(toEmail, fromName) {
		return this.invoke("ACSSendSubscribeConfirmationEmail", {"toEmail":toEmail, "fromName":fromName}, this.ACSSendSubscribeConfirmationEmail.getArguments().slice(2));
	},
	SetSessionFormResponse: function() {
		return this.invoke("SetSessionFormResponse", {}, this.SetSessionFormResponse.getArguments().slice(0));
	},
	url: '/ajaxpro/PlavixRedesignClientProxy,BMS.EWD.IM.LaunchNet.PlavixRedesign.ashx'
}));
PlavixRedesignClientProxy = new PlavixRedesignClientProxy_class();


