<!--	  
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

function ver_imagen(args) {
	var alto=screen.height;
	var ancho=screen.width;
	var ancho_ventana;
	var alto_ventana;
	var pos_top;
	var pos_left;
	alto_ventana = (alto*2)/4;
	ancho_ventana = (ancho*2)/4;;
	pos_top = (alto-alto_ventana)/2;
	pos_left = (ancho-ancho_ventana)/2;
	var OpenWindow = window.open("", "newwin","scrollbars=yes resizable=yes height="+alto_ventana+" width="+ancho_ventana+" top="+pos_top+" left="+pos_left);	
	OpenWindow.document.write("<HTML>");
	OpenWindow.document.write("<HEAD><TITLE>Linfortel</TITLE>");
	OpenWindow.document.write("<link rel='stylesheet' href='gestion/estilo.css'>");
	OpenWindow.document.write("<BODY>");
	OpenWindow.document.write("<TABLE width='100%' height='100%' border ='1' bordercolor='#FFFFFF'>");
	OpenWindow.document.write("<TR><TD bordercolor='#FFCC00' align='center' valign='middle'>");
	OpenWindow.document.write("<A href='' onClick='self.close()'>");
	OpenWindow.document.write("<IMG border='0' alt='PULSA PARA CERRAR' src='gestion/"+args+"'></A>");
	OpenWindow.document.write("<TR><TD align='center'><A href='' onClick='self.close()'>CERRAR</A>");
	OpenWindow.document.write("</TD></TR></TABLE>");
	OpenWindow.document.write("</HTML>");
}

-->  
