How do I canter an HTML file with Flash embeded?

I would like the site to be centered regardless of what resolution size the user has (800x600, 1024x768). Such as: http://www.midwestmusicsummit.com/index2.html
or
http://www.qotsa.com

I use Dreamweaver anf Flash MX.

Setup your html to be something like this:

<table width="100%" height="100%">
<tr><td width="100%" height="100%" align="center" valign="middle">

FLASH EMBED CODE HERE

</td></tr>
</table>

perfect. works great. exactly what i needed. thanks

You can also…

<div align="center">
FLASH EMBED
</div>