// JavaScript Document
function imprimir(que) {
var ventana = window.open("", "", "");
var contenido = "<html><link href='../css/layout.css' rel='stylesheet' type='text/css' /><link href='../css/estilos_impresion.css' rel='stylesheet' type='text/css' /><link href='../css/estilos.css' rel='stylesheet' type='text/css' /><body style='background-color:#FFFFFF'onload=''><div class='top'><img src='../img/top_printer.gif' width='647' height='161' /></div><div id='contenisecciones_grande'>" + document.getElementById(que).innerHTML + "</div></body></html>";
ventana.document.open();
ventana.document.write(contenido);
ventana.document.close();
}

