When I upload my Flash Video files to the online server, the HTML page opens but the Flash Video doesn't open and play. If I open the HTML page in preview mode in Dreamweaver CS5, the HTML page opens and the Flash Video plays OK. I have tried using the Adobe Media Encoder to produce the FLV file as well as tried exporting the FLV from Adobe Premiere CS 5.5, but neither makes any difference. The Flash Video still doesn't play when files are uploaded to the site online. I have also tried using different versions of Flash Professional to create and publish the SWF movie file, but nothing I try seems to make the Flash Video open and play online. The test site I have set up is http:www.hgatest.org --- then you can click the “video” link to open the Flash Video. You can then see what I am talking about. Please help. This just started happening about 6 months ago and it has been driving me crazy. Any ideas will be helpful. Thanks, Joe K.

HTML Code is as follows

<!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>Untitled Document</title>
<link href="css/video_test.css" rel="stylesheet" type="text/css" />
<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
</head>

<body>



<h1>TRIDAC 2010 Video with 2011 updates</h1>
<div id="video">
<object id="FlashID" classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="300">
<param name="movie" value="tridac_2010_video_2011_updates_as2_042012.s wf" />
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="swfversion" value="6.0.65.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 type="application/x-shockwave-flash" data="tridac_2010_video_2011_updates_as2_042012.sw f" width="400" height="300">
<!--<![endif]-->
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<param name="swfversion" value="6.0.65.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>Content on this page requires a newer version of Adobe Flash Player.</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" width="112" height="33" /></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
</div>
<script type="text/javascript">
swfobject.registerObject("FlashID");
</script>
</body>
</html>