// JavaScript Document para impresiones selecionadas
// agregar al html dentro del elemento deseado para ejecutar la funcion impresion
//<br /><input type="button" onClick="var nombrediv=this.parentNode.parentNode.id;imprSelec(nombrediv);"value="Imprimir">
function imprSelec(nombre)
{
//  var ficha = document.getElementById(nombre);
//  var ventimp = window.open('','popimpr','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=500, height=500' );
//  //ventimp.document.write('<link rel="stylesheet" href="css/modalbox.css" type="text/css" />');
//  ventimp.document.write( ficha.innerHTML );
 
//  ventimp.document.close();
  ventimp.print( );
  ventimp.close();
}
