Perché lo scroll delle notizie non mi funziona con Mozilla/Firefox?
Ecco il codice. Spero troviate una soluzione. Grazie


<%
h=0
do until rs2.EOF
h=h+1
%>

<table cellpadding="0" cellspacing="0" border=0>
<tr>
<td width=95%><%=rs2("titolo")%>


<%=rs2("sottotitolo")%>
</td>
</tr>
</table>

<%
rs2.movenext
loop
%>

<SCRIPT language=JavaScript1.2>

//<iframe> script by Dynamicdrive.com

//Specify speed of scroll. Larger=faster (ie: 5)
var scrollspeed1=1
var cache1=1

function initialize1(){
marqueeheight=240
dataobj=document.all? document.all.datacontainer1 : document.getElementById("datacontainer1")
dataobj.style.top=50
thelength1=dataobj.offsetHeight
scrolltest1()
}

function scrolltest1(){
dataobj.style.top=parseInt(dataobj.style.top)-scrollspeed1
if (parseInt(dataobj.style.top)<thelength1*(-1))
dataobj.style.top=140
setTimeout("scrolltest1()",50)
}

window.onload=initialize1
</SCRIPT>