//imprime el nodo html indicado por su id
function imprimir(id)
{
  var ficha = document.getElementById(id);
  var ventimp = window.open(' ', 'popimpr');
  
  ventimp.document.write('<link rel="stylesheet" Type="text/css" HREF="css/estilo.css">')
  ventimp.document.write(ficha.innerHTML);
  ventimp.document.close();
  ventimp.print(false);
  ventimp.close();
} 

