
<!--
function abrir_imagen_directa(imagen,pie,Ancho,Alto)
{
	MasAlto=Alto+11;
	features = "width="+Ancho+",height="+MasAlto;

	w_new = window.open("",Ancho+Alto,features);
	w_new.document.write("<html>");
	w_new.document.write("<head>");
	w_new.document.write("<title>"+pie+"</title>");
	w_new.document.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">");
	w_new.document.write("</head>");
	w_new.document.write("<body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 bgcolor=#000000>");

   w_new.document.write("<table border=0 width=100% cellspacing=0 cellpadding=0><tr><td width=100%>");

	w_new.document.write("<img src='");
	w_new.document.write(imagen + "'");
	
   w_new.document.write("</td></tr><tr><td width=100%>");
   
    w_new.document.write("<p align='right'><a href=\'javascript:window.close()\'><img src=\'../sistema/cerrar.gif\' width=\'62\' height=\'11\' border=0></a><br>");

   
      w_new.document.write("</td></tr></table>");


   w_new.document.write("</body>");
	w_new.document.write("</html>");
}
//-->
