// JavaScript Document
function imprimir(nombre)
{
  var fragmento = document.getElementById(nombre);
  var ventimp = window.open('', 'popimpr','width=580');
  ventimp.document.write( fragmento.innerHTML );
  ventimp.document.close();
  ventimp.print( );
  ventimp.close();
}

