Flash file in center of page on all resolutions

Hi all! I have a flash file that is 1000 pixels wide. I have an html table on my page which is supposed to be the 100% height of the page, three rows, each at 33% height, so the middle row should be in the middle on all resolutions. It took me years to get that done, and it works when I have an image in that cell, but when I replace an image with a flash file it all goes berzerk! I am fuming because this is supposed to be something extremely simple. I just want a darn flash file to be in the middle of the screen and it has to be in a cell whose background color is the same as the background color of the flash file, therefore the proportions will be the same on all resolutions… Why does it not work?

Here is my html code:


<html>
<head>
<title>Untitled</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
   html, body{
      height:100%;
      margin: 0;
      padding: 0;
      border: none;
      text-align: center;
   }
</style>
</head>
<body bgcolor="#E6E7E6" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width=100% height="100%" cellspacing=0 cellpadding=0 border=0>
<tr>
<td valign="middle" align="center" height="34%">&nbsp;
</td>
</tr>
<tr>
<td valign="middle" align="center" bgcolor="#726E67" height="32%">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" 

codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="1000" height="269">
          <param name=movie value="flash/main.swf">
          <param name=quality value=high>
          <embed src="flash/main.swf" quality=high 

pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" 

width="1000" height="269"></td>
</tr>
<tr>
<td valign="middle" align="center" height="34%">&nbsp;
</td>
</tr>
</table>
</body>
</html>

Any suggestions? :h: :h: :h: