function imprSelec(nombre)
{
  var ficha = document.getElementById(nombre);
  var ventimp = window.open(' ', 'popimpr');
  ventimp.document.write('<html><head><link href="./css/estilosImpresion.css" rel="stylesheet" type="text/css"></head><body>');
  ventimp.document.write('<b><span style="color:#AD2400; font-family: Arial;">jobesa.org</font></b> - <b>Imprimir contenido</b><br><br>');
  ventimp.document.write( ficha.innerHTML );
  ventimp.document.write('</body></html>');
  ventimp.document.close();
  ventimp.print( );
  ventimp.close();
} 

