addNamespace("AF");
AF_class = function() {};
Object.extend(AF_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	ShowReligionCaste: function(ReligionId) {
		return this.invoke("ShowReligionCaste", {"ReligionId":ReligionId}, this.ShowReligionCaste.getArguments().slice(1));
	},
	ShowCountryStates: function(countryId) {
		return this.invoke("ShowCountryStates", {"countryId":countryId}, this.ShowCountryStates.getArguments().slice(1));
	},
	StateAbbreviationFromStateId: function(stateId) {
		return this.invoke("StateAbbreviationFromStateId", {"stateId":stateId}, this.StateAbbreviationFromStateId.getArguments().slice(1));
	},
	ShowMsg: function(msgId, lblId) {
		return this.invoke("ShowMsg", {"msgId":msgId, "lblId":lblId}, this.ShowMsg.getArguments().slice(2));
	},
	ShowMsgForAdmin: function(msgId) {
		return this.invoke("ShowMsgForAdmin", {"msgId":msgId}, this.ShowMsgForAdmin.getArguments().slice(1));
	},
	SendMatch: function(UID, matchIdentity) {
		return this.invoke("SendMatch", {"UID":UID, "matchIdentity":matchIdentity}, this.SendMatch.getArguments().slice(2));
	},
	SendAsMatch: function(matchUID, ID) {
		return this.invoke("SendAsMatch", {"matchUID":matchUID, "ID":ID}, this.SendAsMatch.getArguments().slice(2));
	},
	url: '/ajaxpro/AF,NiloMatchMaker_deploy.ashx'
}));
AF = new AF_class();


