
//Función que imprime el contenido de un div 
function imprimir(div){

  var ficha = document.getElementById(div);
  var ventimp = window.open(' ', 'popimpr');
  ventimp.document.write( ficha.innerHTML );
  ventimp.document.close();
  ventimp.print( );
  ventimp.close();
} 




