if(typeof Team == "undefined") Team={};
if(typeof Team.Ajax == "undefined") Team.Ajax={};
Team.Ajax_class = function() {};
Object.extend(Team.Ajax_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	GetProfile: function(ITA) {
		return this.invoke("GetProfile", {"ITA":ITA}, this.GetProfile.getArguments().slice(1));
	},
	IsValidITA: function(ITA) {
		return this.invoke("IsValidITA", {"ITA":ITA}, this.IsValidITA.getArguments().slice(1));
	},
	IsActiveITA: function(ITA) {
		return this.invoke("IsActiveITA", {"ITA":ITA}, this.IsActiveITA.getArguments().slice(1));
	},
	PwdConfirm: function(strEmail, strPwd) {
		return this.invoke("PwdConfirm", {"strEmail":strEmail, "strPwd":strPwd}, this.PwdConfirm.getArguments().slice(2));
	},
	HasPwd: function() {
		return this.invoke("HasPwd", {}, this.HasPwd.getArguments().slice(0));
	},
	SendMail: function(strEmail) {
		return this.invoke("SendMail", {"strEmail":strEmail}, this.SendMail.getArguments().slice(1));
	},
	SendMailBeforeUnload: function(strEmail, strReference) {
		return this.invoke("SendMailBeforeUnload", {"strEmail":strEmail, "strReference":strReference}, this.SendMailBeforeUnload.getArguments().slice(2));
	},
	IsCreditCardPassenger: function(Nombre, Apellido) {
		return this.invoke("IsCreditCardPassenger", {"Nombre":Nombre, "Apellido":Apellido}, this.IsCreditCardPassenger.getArguments().slice(2));
	},
	IsRegisterCreditCard: function(EntryID) {
		return this.invoke("IsRegisterCreditCard", {"EntryID":EntryID}, this.IsRegisterCreditCard.getArguments().slice(1));
	},
	GetCreditCardInfo: function(EntryID) {
		return this.invoke("GetCreditCardInfo", {"EntryID":EntryID}, this.GetCreditCardInfo.getArguments().slice(1));
	},
	url: '/ajaxpro/_Default,App_Web_3dfo2cfw.ashx'
}));
Team.Ajax = new Team.Ajax_class();


