// JavaScript Document
function abrirImagen(image, mwidth, mheight) {
propiedades = "width="+mwidth+",height="+mheight+",scrollbars=NO,resizable=NO";
html = "
FUNDACIÓN PARA EL DESARROLLO HUMANO COMUNITARIO" +
"" +
"
" +
"" +
"";
popup=window.open('','image',propiedades);
popup.document.open();
popup.document.write(html);
popup.document.focus();
popup.document.close()
};