addNamespace("QSContentManager.web.frontend");
QSContentManager.web.frontend.generalColegios_class = Class.create();
QSContentManager.web.frontend.generalColegios_class.prototype = (new AjaxPro.AjaxClass()).extend({
	checkLogin: function(login, password) {
		return this.invoke("checkLogin", {"login":login, "password":password}, this.checkLogin.getArguments().slice(2));
	},
	cambiaIdioma: function(id) {
		return this.invoke("cambiaIdioma", {"id":id}, this.cambiaIdioma.getArguments().slice(1));
	},
	getNombre: function(login) {
		return this.invoke("getNombre", {"login":login}, this.getNombre.getArguments().slice(1));
	},
	getEnlace: function(login, password) {
		return this.invoke("getEnlace", {"login":login, "password":password}, this.getEnlace.getArguments().slice(2));
	},
	doLogout: function() {
		return this.invoke("doLogout", {}, this.doLogout.getArguments().slice(0));
	},
	initialize: function() {
		this.url = '/ajaxpro/QSContentManager.web.frontend.generalColegios,QSContentManager.web.frontend.ashx';
	}
});
QSContentManager.web.frontend.generalColegios = new QSContentManager.web.frontend.generalColegios_class();


