Dynamic flash not working on Internet Explorer locally

HI,
I’m running a dynamic flash (AS3) site locally and just discovered that it doesn’t work on Internet Explorer 7 or 8. I really need it to operate on Internet Explorer on my local machine.

It works fine online! I’ve added my .swf file, even the folder to my settings in the [SIZE=2]“Global Security Settings panel[/SIZE]” on the Adobe website. Nothing changes.
Please help.:cry3:

Best regards.
Bazz

See below the code that i’m using in my HTML page:

<html xmlns=“http://www.w3.org/1999/xhtml” lang=“en” xml:lang=“en”>
<head>
<title></title>
<meta http-equiv=“Content-Type” content=“text/html; charset=iso-8859-1” />
<meta name=“description” content="" />
<meta name=“keywords” content="" />
<script type=“text/javascript” src=“swfobject.js”></script>
<script type=“text/javascript” src=“motoResize.js”></script>
<script type=“text/javascript”>

        var minWidth = 980;
        var minHeight = 800;

        var params = {
            menu: "false",
            allowScriptAccess: "always",
            scale: "noscale",
            allowFullScreen: "true",
            bgcolor: "#000000"
            
            
        };

        swfobject.embedSWF("main_cs4.swf", "flashcontent", "100%", "100%", "10.0.0", "expressinstall.swf", {}, params, {});

        if (swfobject.hasFlashPlayerVersion("6.0.0")) {
            swfobject.addDomLoadEvent(createFullBrowserFlash);
        }
    &lt;/script&gt;
   &lt;link href="style.css" rel="stylesheet" type="text/css"/&gt; 
&lt;/head&gt;
&lt;body&gt;
&lt;div id="container"&gt;
    &lt;div id="flashcontent"&gt;
        &lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Please update your Flash Player&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;
        This site makes use of the Adobe Flash Player.&lt;br /&gt;&lt;br /&gt;
        The latest versions of browsers such as Firefox, Netscape or Internet Explorer usually have the Flash Player pre-installed.&lt;br /&gt;&lt;br /&gt;
        If your browser doesn't or has an older version of the player, you can &lt;a href="http://www.adobe.com/go/getflashplayer" target="_blank"&gt;&lt;b&gt;download it here&lt;/b&gt;&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;
        Flash Player enables us to provide you with a dynamic website with video clips and full screen images.&lt;br /&gt;&lt;br /&gt;
        &lt;a href="http://www.adobe.com/go/getflashplayer" target="_blank"&gt;&lt;img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash Player" title="Get Adobe Flash Player" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br/&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;

</html>