I have been using the regular embed tag along with the script below (to launch a new window), but now that I have converted sites over to the new swfobject.js workaround the new window script doesn't work anymore. Is it the liveconnect=true thing that I need to enable, or have you seen this conflict before? Thanks!<br /><br />Gabe Taviano<br /><br /><pre id="line1"><<span class="start-tag">SCRIPT</span><span class="attribute-name"> LANGUAGE</span>=<span class="attribute-value">"JavaScript"</span>><br />var newwin;<br />function launchwin(winurl,winname,winfeatures)<br />{<br />      //This launches a new window and then<br />       //focuses it if window.focus() is supported.<br />        newwin = window.open(winurl,winname,winfeatures);<br /><br />       if(javascript_version > 1.0)<br />     {<br />           //delay a bit here because IE4 encounters errors<br />            //when trying to focus a recently opened window<br />             setTimeout('newwin.focus();',250);<br />  }<br />}<br /></<span class="end-tag">SCRIPT</span>></pre><br />