Buenas, tengo el siguiente código de JS, el cual me da un error, es que al ejecutarlo en html local, tanto firefox como IE lo ejecuta sin problemas, pero al meterlo dentro de un webspell (apartado como página estática, claro) el IE lo ejecuta, pero el firefox no. El código es el siguiente:
Putos spoilers<HEAD>
<SCRIPT language="javascript">
function MostrarOcultar (objetoVisualizar) {
if (document.all[objetoVisualizar].style.display=='none') {
document.all[objetoVisualizar].style.display='block';
} else {
document.all[objetoVisualizar].style.display='none';
}
}
</SCRIPT>
</HEAD>
<BODY>
<a href="#" onMouseOver="this.style.textDecoration='underline';this.style.cursor='hand'" onMouseOut="this.style.textDecoration='none'" onClick="JavaScript:MostrarOcultar('Datos1');">
<img src="images/banner.png"></a>
<table id=Datos1 cellSpacing="0" cellPadding="0" width="100%" style="display:none">
<TR>
<TD vAlign="top" width="40%"><IMG height="12" ALT="" src="images/flags/IC.gif" width="18" border="0"> EJEMPLO USER '<A href="index.php?site=profile&id=2"><strong>LINK</strong></A>' EJEMPLO USER<BR></TD></TR></TABLE>
</BODY>
Lo he recortado un pocazo, pero porque tampoco les voy a copiar aquí todo el testamento xd.
¿Por qué puede ser?