    function establecerCookie(nombre, valor,caducidad){
      var c = "";
      c += nombre + "=" + escape(valor);
      c += "; expires=" + caducidad.toGMTString();
      document.cookie = c;
    }

  
    function desplegarTexto(){
      var despliegue = document.getElementById("descripcion").style.display;
      if (despliegue == 'none'){
        document.getElementById("descripcion").style.display = 'block';
       	document.getElementById('imagen').src = "/images/minus.gif";
	  }
      if (despliegue == 'block'){
        document.getElementById("descripcion").style.display = 'none';
        document.getElementById('imagen').src = "/images/plus.gif";
      }
    }
    
  function leerCookie(nombre) { 
    var a = document.cookie.substring(document.cookie.indexOf(nombre + '=') + nombre.length + 1); 
    if(a.indexOf(';') != -1)a = a.substring(0,a.indexOf(';'));
    return a;
  }

  function revisarECookie( pagina){
    if (leerCookie(pagina)=="Yes"){
      document.getElementById("descripcion").style.display = 'none';
      document.getElementById("renglon").style.display = 'block';
    }
    var caducidad = new Date(2010,1,1,0,0,0);
    establecerCookie(pagina, "Yes",caducidad);
  }