if(typeof ClienteLogin == "undefined") ClienteLogin={};
ClienteLogin_class = function() {};
Object.extend(ClienteLogin_class.prototype, Object.extend(new AjaxPro.AjaxClass(), {
	getCliente: function() {
		return this.invoke("getCliente", {}, this.getCliente.getArguments().slice(0));
	},
	validarLogin: function(cliente) {
		return this.invoke("validarLogin", {"cliente":cliente}, this.validarLogin.getArguments().slice(1));
	},
	logout: function() {
		return this.invoke("logout", {}, this.logout.getArguments().slice(0));
	},
	url: '/SITE/ajaxpro/ctl_login,App_Web_wmceu1jc.ashx'
}));
ClienteLogin = new ClienteLogin_class();

