addNamespace("RegistroTigo2");
RegistroTigo2.AjaxMgr_class = Class.create();
RegistroTigo2.AjaxMgr_class.prototype = (new AjaxPro.AjaxClass()).extend({
	CheckDisp: function(username, nombre, apellido) {
		return this.invoke("CheckDisp", {"username":username, "nombre":nombre, "apellido":apellido}, this.CheckDisp.getArguments().slice(3));
	},
	initialize: function() {
		this.url = '/RegistroTigo2/ajaxpro/RegistroTigo2.AjaxMgr,RegistroTigo2.ashx';
	}
});
RegistroTigo2.AjaxMgr = new RegistroTigo2.AjaxMgr_class();

