function imprSelec(nombre)
{
  var ficha = document.getElementById(nombre);
  var ventimp = window.open(' ', 'popimpr');
  ventimp.document.write('<html>\n<head>\n<link rel=\"stylesheet\" href=\"../../vacunasaep.org/css/generalvacunas.css\" type=\"text/css\" />\n</head><body>\n');
  ventimp.document.write( ficha.innerHTML );
  ventimp.document.write('\n</body></html>');
  ventimp.document.close();
  ventimp.print( );
  ventimp.close();
}