I'm trying to my page have an image go on for ever on either side. It's hard for me to verbalize it, but you'll see when you go to the page (www.flippingsweet.net/temp.html). When it loads it isn't centered because I made the flash file really large. Is there a way to make the flash file not so wide and use an image to make it look like it just keeps going no matter how big you make the window? Here is my HTML, I have no idea how to approach this problem, I've looked around a little and am stuck.
CODE
<head>
<title>Flipping Sweet!</title>
<script LANGUAGE=JavaScript>
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
newWindow=window.open(URLtoOpen, windowName, windowFeatures);
}
</SCRIPT>
<head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0">
<table width="200" height="59" border="0" align="center" cellspacing="0" bordercolor="#FFFFFF">
<tr>
<td> </td>
</tr>
</table>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center" valign="middle">
<table width="900" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="2000" height="823" align="middle">
<param name="movie" value="start.swf">
<param name="quality" value="high">
<param name="menu" value="false">
<embed src="start.swf" width="2000" height="823" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" menu="false"></embed></object></td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>