Swfobject wmode problem

Im in a rather wierd situation.

I have recently implemented SwfObject (version2.0) into my html. Using my friends computer with IE6. And I just cant add wmode=“transparent” onto the script.

Sorry for the tagsoup


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Eltain | Collapsible Bottles</title>
<script src="scripts/AC_RunActiveContent.js" type="text/javascript">
</script>
<style type="text/css">
/*<![CDATA[*/
<!--
body
{ 
 background-image: url(/mesh/mesh7.gif);
 background-repeat: repeat-x
 background-color: #000000;
} 
#banner {
        position: absolute;
        width: 800;
        height: 200;
        top: 99px;
        left: 50%;
        margin-top: -100px;
        margin-left: -400px;
}
#fla {
                position: absolute;
                width: 800;
                height: 760;
                top: 650px;
                left: 50%;
                margin-top: -380px;
                margin-left: -400px;
}
-->
/*]]>*/
</style>
<!--[if lte IE 6]>
<script type="text/javascript" src="supersleight.js"></script>
<![endif]-->
  <script type="text/javascript" src="swfobject.js"></script>
  <script type="text/javascript">
  params.wmode = "transparent";
  swfobject.registerObject("content", "8.0.0", "expressInstall.swf");
  </script>
</head>
<body>
<div id="banner"><img src="http://eltain.se/banner.png" width="800" height="200" alt="banner" />
<div id="fla">
   <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="800" height="760" id="content">
    <param name="movie" value="contentbase.swf" />
    <!--[if !IE]>-->
    <object type="application/x-shockwave-flash" data="contentbase.swf" width="800" height="760">
    <!--<![endif]-->
     <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>
    <!--[if !IE]>-->
    </object>
    <!--<![endif]-->
</div>
</body>
</html>

This is how the html looks like on the index page. As you can see I have already added the

params.wmode = "transparent";

parameter but it does not work in IE6. not sure about the other browsers though.

I did not experience this problem when I used the simple <object> flash embedding provided by Adobe on any browsers whatsoever. wondering if anyone knows the solution to make it work in IE6/7 too?

Thanks for looking