Hola a todos soy nuevo en el foro y no tengo mucha experiencia en programación con CSS, normalmente utilizo flash y un poco de html en mis desarrollos web, ahora tengo un problema, tengo un contenido hecho en flash as3.0, lo he centrado con un código que obtuve aquí en cristal lab insertándolo en una tabla. Lo que ahora necesito es poner una imagen de fondo pero que se ajuste a cualquier resolución de pantalla (fullscreen) , el swf ya tiene wmode="transparencia" para que así tenga de fondo mi imagen. mi código es el siguiente:

<html xmlns="http://www.w3.org/1999/xhtml" lang="es" xml:lang="es">
<head>

<title>||| EVENTOS |||</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<style type="text/css">
body {
background-color: #000;
background-image: url(fondo.jpg);
background-repeat: repeat;


}

</style>
</head>
<body>




<table width="100%" border="0" height="100%" cellspacing="0">

<td valign="middle">


<div align="center">
<div id="flashContent">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="900" height="600" id="gallery" align="middle">
<param name="movie" value="gallery.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#000000" />
<param name="play" value="false" />
<param name="loop" value="true" />
<param name="wmode" value="transparent" />
<param name="scale" value="showall" />
<param name="menu" value="true" />
<param name="devicefont" value="false" />
<param name="salign" value="" />
<param name="allowScriptAccess" value="sameDomain" />
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="gallery.swf" width="900" height="600">
<param name="movie" value="gallery.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#000000" />
<param name="play" value="false" />
<param name="loop" value="true" />
<param name="wmode" value="transparent" />
<param name="scale" value="showall" />
<param name="menu" value="true" />
<param name="devicefont" value="false" />
<param name="salign" value="" />
<param name="allowScriptAccess" value="sameDomain" />
<!--<![endif]-->
<a href="http://www.adobe.com/go/getflash">
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Obtener Adobe Flash Player" />
</a>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</div>


</td>
</tr>

</table>
<script type="text/javascript">
swfobject.registerObject("FlashID");
</script>
</body>
</html>

espero puedan ayudarme. Gracias