SWFObject not working

Hey,

For some reason I can’t get SWFObject to work. I’m using the following script:

<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Strict//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd”>
<html xmlns=“http://www.w3.org/1999/xhtml” lang=“en” xml:lang=“en”>

&lt;head&gt;
    &lt;title&gt;&lt;/title&gt;
    &lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /&gt;
    
&lt;/head&gt;

&lt;body&gt;

    &lt;div id="flashcontent" /&gt;        
    
    &lt;script type="text/javascript" src="js/swfobject.js" /&gt;
    &lt;script type="text/javascript"&gt;
     
            var so = new SWFObject("Index.swf", "flashmovie", "498", "2300", "8", "#ffffff");
            so.addParam("wmode", "opaque");
            so.addParam("base", ".");
            so.addVariable("xmlpath", "content.xml");                
            so.write("flashcontent"); 
    &lt;/script&gt;
    
&lt;/body&gt;

</html>

Can anyone spot where the problem is?
Thanks!!