Muchas gracias por la respuesta.. estuve mirando el codigo de los popups accesibles, y de 10.. al final para entenderlo bien, hice un repaso del DOM, no me acordaba ni medio de los escuchadores de eventos,..
Igual, lo resolvi de otra forma, a continuacion la paso.
En el html este codigo:
Código HTML:
<div id="configuracion">
<a href="prueba.html" id="conf_letra1" rel="cuerpocentral"><img src="imagenes/bt_AMas.gif" width="16px" height="15px" alt="ampliar tamaño" /></a>|<a href="prueba.html" id="conf_letra2" rel="cuerpocentral"><img src="imagenes/bt_AMenos.gif" width="16px" height="15px" alt="ampliar tamaño" /></a>
</div>
y en el js este otro:
Código HTML:
document.getElementById('conf_letra1').onclick = aumentarletra;
document.getElementById('conf_letra2').onclick = achicarletra;
y por ejemplo, el aumentarletra:
Código HTML:
function aumentarletra(evento) {
if (this.getAttribute) {
var rel = this.getAttribute('rel');
} else {
var rel = evento.srcElement.getAttribute('rel');
}
aumentarFontSize(rel);
return false;
}
Un saludo grande