Hi -
Why a table? Do you want a border, or are you just trying to control the placement? Try using some css in the <head> section of your .html doc like:
Code:
<head>
...
<style type="text/css">
body{
background:black none; width:100%; height:100%; margin:0; padding:0;
text-align:center; font-size:100%;}
object, embed{
margin:20px auto; border:1px solid white;}
p{
width:60%; margin:0 auto; font-size:70%; font-family:"verdana", sans-serif;}
p a:link, p a:visited{
color:silver; text-decoration:underline;}
p a:hover{
color:white; text-decoration:none;}
</style>
<body>
<object>...</object>
<embed />
<p>
<a href="default.html" title="skip intro">Skip Intro.</a>
</p>
</body>...
Hope it helps to get you started,
El
Bookmarks