Hi all
I get different speeds from this animation in IE6 and Mozilla.
Mozilla 1.7.3 runs this much faster than IE . I'm trying to get
the results that Mozilla returns. IE is too slow!!
Anyone know why? Is my code flawed and one browser is
interpreting it correctly? Any help will be appreciated.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<HTML><HEAD><TITLE>Animate Card test</TITLE>
<style type=text/css>
#cardRun {
position:absolute;
left:600px;
top:120px;
}
</style>
<script type="text/javascript">
var TID = null;
function runCard() {
var el = document.images['cardRun'];
if (el.offsetLeft <= 350) clearInterval(TID);
el.style.left = el.offsetLeft - 10 + 'px';
}
</script></HEAD>
<BODY onload="TID=setInterval('runCard()',10)">
<img id="cardRun" src="0.gif" width=70 height=99 alt="" border="0">
</BODY></HTML>