I am not sure if "document.all" is supported by IE. I use IDs, they seem to work in every browser (so far), and even on the mac.
Like this:
Code:
<iframe id="foobar">...</iframe>
And the javascript
:
Code:
document.getElementById('foobar').style. = andsoon...;
Hope this helps,
Till