eHem... espes espes....
Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="JavaScript" type="text/JavaScript">
function mapa(dis,ample){
dis.style.width=ample;
}
</script>
</head>
<body>
<div id="info"><img src="mapa.jpg" width="120" id="imgmapa" onmouseover="mapa(this,400)" onmouseout="mapa(this,120)"/></div>
</body>
</html>
Los id tinen que ser unicos!!! Firefox siempre es más serio con las normas que IE. Tenias de id de la imagen "mapa" y de nombre de la función...
Cambiando el id a mi me funciona... apesar de ello si hay mucho debate en la red sobre que firefox ignora style.width... ???
Quim