Just wondering; i put small Flash inside a html table and it doesn't display.

If I take it out of the table it will display.

Code:
<table>
  <tr>
    <td>
      <OBJECT id="mymovie" 
	codeBase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" 
	height="600" width="770" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" VIEWASTEXT>
        <PARAM NAME="Src" VALUE="myMovie.swf">
        <EMBED src="myMovie.swf" quality="high" 
		bgcolor="#FFFFFF" WIDTH="770" HEIGHT="600" NAME="mymovie"
                ALIGN="" TYPE="application/x-shockwave-
		flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
        </EMBED>
      </OBJECT>
    </td>
  </tr>
</table>

Is there an issue I am unaware of?

thanks in advance.