Flash file in Dreamweaver

I have a website (solely flash) that i have embedded in a box inside a dreamweaver file. The .swf has a preloader, contains only as2 and about 45 big images (its not a big file, basically). I have coded everything as it should and have the domain set up correctly (oneandabit.co.uk).

My problem is this - When I get onto firefox, even though previewing in dreamweaver the site works fine, all that appears on the page is a link to update the flash player. I have the latest flash player, and the code suggests that this page should only come up if the user is using flash player 6.0 or older (i’ll post the code). Anyone have an idea as to why this could be? Am I publishing the .swf wrong, or using a wrong script? I’m so close to sorting this out, haha, its killing me that it isn’t online yet.

Any help would be so much appreciated

Dan
Oneandabit.co.uk - hopefully!

//CODE

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=“Content-Type” content=“text/html; charset=UTF-8” />
<title>One (and a bit) Media</title>
<script src=“Scripts/swfobject_modified.js” type=“text/javascript”></script>
<style type=“text/css”>
<!–
#Centre {
height: auto;
width: 1024px;
margin: auto;
float: none;
}
–>
</style>
</head>

<body>

<div id=“Centre”>
<object classid=“clsid:D27CDB6E-AE6D-11cf-96B8-444553540000” width=“1024” height=“768” align=“middle” id=“FlashID”>
<param name=“movie” value=“siteLATEST.swf” />
<param name=“quality” value=“high” />
<param name=“wmode” value=“opaque” />
<param name=“swfversion” value=“8.0.35.0” />
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
<param name=“expressinstall” value=“Scripts/expressInstall.swf” />
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
<!–[if !IE]>–>
<object data=“siteLATEST.swf” type=“application/x-shockwave-flash” width=“1024” height=“768” align=“middle”>
<!–<![endif]–>
<param name=“quality” value=“high” />
<param name=“wmode” value=“opaque” />
<param name=“swfversion” value=“8.0.35.0” />
<param name=“expressinstall” value=“Scripts/expressInstall.swf” />
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
<div>
<h4>Apparently, you need to update your flash player. Either that, or One and a Bit needs to republish. We’ll get on it. </h4>
<p><a href=“http://www.adobe.com/go/getflashplayer”><img src=“http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif” alt=“Get Adobe Flash player” /></a></p>
</div>
<!–[if !IE]>–>
</object>
<!–<![endif]–>
</object>
<script type=“text/javascript”>
<!–
swfobject.registerObject(“FlashID”);
//–>
</script>
</div>
</body>
</html>