The following works perfectly well in Firefox, Safari, and Chrome, but in IE the autostart feature is not working. Any advice would be greatly appreciated.

<td>
<object width="405" height="260" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/
shockwave/cabs/flash/swflash.cab#version=8,0,0,0">
<param name="flashvars" value="file=http://www.campeaglehill.com/flash/eaglehill.flv" />
<param name="movie" value="http://www.campeaglehill.com/flash/player.swf" />
<embed src="http://www.campeaglehill.com/flash/player.swf" width="405" height="260" bgcolor="#FFFFFF" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=http://www.campeaglehill.com/flash/eaglehill.flv&autostart=1" />
</object>
<img src="images/newsbox.gif" width="345" height="255" /></td>



Alternatively, the autostart in this code works fine in all browsers, but it screws up the layout, putting the graphic either below the video or too far to the right.

<td>
<script type="text/javascript" src="http://www.jeroenwijering.com/embed/swfobject.js"></script>

<div id="player">This text will be replaced</div>

<script type="text/javascript">
var so = new SWFObject('http://www.campeaglehill.com/flash/player.swf','mpl','405','260','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','&file=http://www.campeaglehill.com/flash/eaglehill.flv&autostart=true');
so.write('player');
</script>

<img src="images/newsbox.gif" width="345" height="255" /></td>