<FONT face="Default Sans Serif,Verdana,Arial,Helvetica,sans-serif" size=2><div style="font-family: Default Sans Serif,Verdana,Arial,Helvetica,sans-serif;"><pre><font size="3">Hi Jakob and Geoff,<br><br>I'm experiencing exactly the same problem as jakob.<br>The new version (<a href="http://blog.deconcept.com/code/swfobject2.0/swfobject.js">http://blog.deconcept.com/code/swfobject2.0/swfobject.js)</a> </font><br><font><font size="3">helps :-) thank you.<br></font></font><font size="3">Did you find any bugs in the new version since 15.sept, is there a newer version?</font><br><br><font size="3">As a side note:<br>Troublesome combination: IE6 and flashplayer 6.x.<br>In my setup, the crash occured even if I did the object and embed tags by hand<br>and just included the swfobject.js.<br>No wonder, as the problem lies in the onUnload method.<br><br>I traced the problme to the "typeof[i][x]" call.<br>The new version does not got into cleanupSWFs for IE6, thus no typeof call.<br><code><br>/* fix for video streaming bug */<br>deconcept.SWFObjectUtil.cleanupSWFs = function() {<br>    if (window.opera || !document.all) return;<br>    var objects = document.getElementsByTagName("OBJECT");<br><br>    for (var i=0; i < objects.length; i++) {<br>        objects[i].style.display = 'none';<br>        for (var x in objects[i]) {<br>          /* // suppress the crash.<br>            if (typeof objects[i][x] == 'function') {<br>                objects[i][x] = function(){};<br>            }<br>                */<br>        }<br>    }<br>}<br></code><br></font></pre><div><font size="3"><br>regards, florian<br><br></font></div></div></FONT>