
<!--
        if (document.images) {            // Active Images
// ENCENDIDO

// MENU LEFT
            img01on = new Image();
            img01on.src = "images/menu/asociacion_on.gif";
            img02on = new Image(); 
            img02on.src = "images/menu/autoridades_on.gif";  
            img03on = new Image();
            img03on.src = "images/menu/actividades_on.gif";
            img04on = new Image();
            img04on.src = "images/menu/conferenczi_on.gif";
            img05on = new Image();
            img05on.src = "images/menu/novedades_on.gif";
            img06on = new Image();
            img06on.src = "images/menu/publicaciones_on.gif";
            img07on = new Image();
            img07on.src = "images/menu/formas_on.gif";
            img08on = new Image();
            img08on.src = "images/menu/contacto_on.gif";

// APAGADO

// MENU LEFT
            img01off = new Image();
            img01off.src = "images/menu/asociacion_off.gif";
            img02off = new Image(); 
            img02off.src = "images/menu/autoridades_off.gif";  
            img03off = new Image();
            img03off.src = "images/menu/actividades_off.gif";
            img04off = new Image();
            img04off.src = "images/menu/conferenczi_off.gif";
            img05off = new Image();
            img05off.src = "images/menu/novedades_off.gif";
            img06off = new Image();
            img06off.src = "images/menu/publicaciones_off.gif";
            img07off = new Image();
            img07off.src = "images/menu/formas_off.gif";
            img08off = new Image();
            img08off.src = "images/menu/contacto_off.gif";
        }

// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");

        }
}
// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}

// -->


//
// FOTOS AMPLIADAS
//
<!--
function Galeria(desktopURL)
{
	popupwin=window.open( "", '_blank', 'toolbar=no,location=no,status=no,menubar=no,resizable=no,scrollbars=no,width=550,height=776');
	popupwin.document.write("<html>");
	popupwin.document.write("<head>");
	popupwin.document.write("<title>SandorFerenczi.org</title>");
	popupwin.document.write("<link href='../library/conferenczi09.css' rel='stylesheet' type='text/css'>");
	popupwin.document.write("</head>");
	popupwin.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>");
	popupwin.document.write("<table width='550' border='0' align='center' cellpadding='0' cellspacing='0'>");
	popupwin.document.write("  <tr>");
	popupwin.document.write("    <td><a href='#' onClick='self.close()'><img src='" + desktopURL +"' alt='Copyright © sandorferenczi.org' width='550' height='776' border='0'></a></td>");
	popupwin.document.write("  </tr>");
	popupwin.document.write("</table>");
	popupwin.document.write("</body>");
	popupwin.document.write("</html>");
}
