// Salto a portada tipo tema.
function jumpToST(seccion,tema,pag) {
  // alert(seccion + ',' + tema);
  seccion = escape(seccion);
  tema = escape(tema);
  top.location = '/cgi-bin/pli_ptema_lista.cgi?seccion=' + seccion + '&tema=' + tema + '&nropag=' + pag;
};

// Salto a portada tipo tema con as.
function jumpToSTas(seccion,tema,pag,as) {
  // alert(seccion + ',' + tema);
  seccion = escape(seccion);
  tema = escape(tema);
  top.location = '/cgi-bin/pli_ptema_lista.cgi?as=' + as + '&seccion=' + seccion + '&tema=' + tema + '&nropag=' + pag;
};

// Salto a portada tipo seccion, tema, fecha.
function jumpToSTF(seccion,tema,pag,fecha) {
  // alert(seccion + ',' + tema);
  seccion = escape(seccion);
  tema = escape(tema);
  top.location = '/cgi-bin/pli_ptema_lista.cgi?as=3600&seccion=' + seccion
               + '&tema=' + tema + '&nropag=' + pag + '&fecha=' + fecha;
};

// Regreso a sección.
function jumpTo(seccion) {
  if (seccion == "Política")         { top.location = "../../edic/port/politica.html"; };
  if (seccion == "Economía")         { top.location = "../../edic/port/economia.html"; };
  if (seccion == "Cultura")          { top.location = "../../edic/port/cultura.html"; };
  if (seccion == "Comunidad")        { top.location = "../../edic/port/comunidad.html"; };
  if (seccion == "Deportes")         { top.location = "../../edic/port/deportes.html"; };
  if (seccion == "Mercado del Placer") { top.location = "../../edic/port/placer.html"; };
  if (seccion == "Noticias Al Minuto") { top.location = "../../edic/port/home.html"; };
  if (seccion == "Cartelera")        { top.location = "../../edic/port/cine.html"; };
};

// Envío de noticia por e-mail.
function enviar_a() {
  var url = document.URL;
  window.open('/cgi-bin/snd_page_02.cgi?ACCI=Showform&TDIR=/utiles/enviar_a&URL=' + escape(url),
              '',
              'toolbar=0,status=0,menubar=0,scrollbars=0,resizable=0,location=0,directories=0,width=480,height=410');
};

// Imprime.
function imprime() {
  var url = document.URL;
  window.location = '/cgi-bin/print_page_01.cgi?TDIR=/utiles/4print&URL=' + escape(url);
};

// Ventana POP.
function subWin(loc, nom, ancho, alto, posx, posy) {
  var options="toolbar=0,status=0,menubar=0,scrollbars=0,resizable=0,location=0,directories=0,width=" + ancho + ",height=" + alto;
      
  win = window.open(loc, nom, options);                 
  win.focus();
  if ( (posx > 0) && (posy > 0) ) {
    win.moveTo(posx, posy);
  };
};
