﻿function imprimir(div) {
	var ficha = document.getElementById(div);
	var ventimp = window.open(" ", "popimpr");
	ventimp.document.writeln("<html>");
	ventimp.document.writeln("<head>");
	ventimp.document.writeln("<title>imprimir</title>");
	ventimp.document.writeln("<style>TD, TH, DIV, BODY {font-family: Verdana, Arial, Helvetica, sans-serif;font-size:70%;color: #000000;}</style>");
	ventimp.document.writeln("<script>function imprimir(nombre){};</script>");
	ventimp.document.writeln("</head>");
	ventimp.document.writeln("<body>");
	ventimp.document.writeln(ficha.innerHTML);
	ventimp.document.writeln("</body>");
	ventimp.document.writeln("</html>");
	ventimp.document.close();
	ventimp.print();
	//ventimp.close();
}

