    eXtrAjax.realCall = eXtrAjax.call;
    eXtrAjax.call = function(sFunction, aArgs, sRequestType)
    {
        this.$('actualiza').style.display = 'inline';
        return this.realCall(sFunction, aArgs, sRequestType);
    }

    eXtrAjax.realProcessResponse = eXtrAjax.processResponse;
    eXtrAjax.processResponse = function(xml)
    {
        this.$('actualiza').style.display = 'none';
        return this.realProcessResponse(xml);
    }
	
	function logUser() {
		valor = document.getElementById("usuario").value;
		valor2 = document.getElementById("contrasena").value;
		eXtrAjax_logUser(valor,valor2);
		return false;
	}
	function info(valor,valor2) {
		eXtrAjax_info(valor,valor2);
		return false;
	}
	function esconde(id)
		{
			if (document.getElementById) 
			{
				obj = document.getElementById(id);
				obj.style.display = "none";
			}
		}
	function muestra(id)
		{
			if (document.getElementById) 
			{
				obj = document.getElementById(id);
				obj.style.display = "block";
			}
		}