    function mandarGalleta(nombre, valor, caducidad) {
      document.cookie = nombre + "=" + escape(valor)
        + ((caducidad == null) ? "" : ("; expires=" + caducidad.toGMTString()))
    }
    function consultarGalleta(nombre) {
      var buscamos = nombre + "=";
      if (document.cookie.length > 0) {
        i = document.cookie.indexOf(buscamos);
        if (i != -1) {
          i += buscamos.length;
          j = document.cookie.indexOf(";", i);
          if (j == -1)
            j = document.cookie.length;
          return unescape(document.cookie.substring(i,j));
        }
      }
    }

    function Banner() {
      var num;
      var fecha=new Date (2009, 12, 31);
      if (!(num=consultarGalleta("BannerDatas09")))
        num = 0;
      num++;
      mandarGalleta("BannerDatas09",num,fecha);
      switch (num) {
         case 1:
           document.write("<a href=http://www.robertosmith.org/ target=other><img src=images/banners/robertosmith2006.jpg alt='Roberto Smith' border=0 width=468 height=60></a>");
           break;
         case 2:
           document.write("<a href=http://www.educacionespecial.info/ target=other><img src=images/banners/ipea_c.jpg alt='IPEA - Caucagua' border=0 width=468 height=60></a>");
           break;
         case 3:
           document.write("<a href=cursos.php><img src=images/banners/bsearch.gif alt='Cursos de Marketing Plítico' border=0 width=468 height=60></a>");
           break;
         case 4:
           document.write("<a href=http://www.cddamericas.org target=other><img src=images/banners/cdda.gif alt='Centro para la Democracia y el Desarrollo de las Américas' border=0 width=468 height=60></a>");
           break;
         case 5:
           document.write("<a href=http://www.e-lecciones.net/ target=other><img src=images/banners/elecciones.gif alt='El Portal Político Latinoamericano' border=0 width=468 height=60></a>");
           break;
         case 6:
           document.write("<a href=http://www.medioslatinos.com/ocpla/ target=other><img src=images/banners/ocpla.gif alt='Organización de Consultores Políticos Latinoamericanos' border=0 width=344 height=60></a>");
           break;
         case 7:
           document.write("<a href=cursos.php><img src=images/banners/bpizarra.gif alt='Cursos de Marketing Plítico' border=0 width=468 height=60></a>");
           break;
         case 8:
           document.write("<a href=http://www.e-lecciones.net/ target=other><img src=images/banners/elecciones.gif alt='El Portal Político Latinoamericano' border=0 width=468 height=60></a>");
           break;
         default:
           document.write("<a href=http://www.ciafi.org/ target=other><img src=images/banners/firma.jpg alt='Centro Interamericano para el Fortalecimiento Institucional' border=0 width=468 height=60></a>");
           num = 0;
           mandarGalleta("BannerDatas09",num,fecha);
      }
    }

