Embedding Problems

Ok so im trying to embed a flash movie into an html file centred on the browser with an image background. You can see it here .
However, when you get past the system requirements page, it just stops and dosent load the movie properly. It works fine on Netscape but not on any other browsers. I used the following code to embed the flash into html:

[COLOR=firebrick]<html>
<head>
<title>The Krazy Kenny Show Version 2</title>

<meta http-equiv=“Content-Type”
content=“text/html; charset=iso-8859-1”>
</head>
<body background=“htmlbackground.jpg”>

<table width=“100%” height=“100%” border=“0” cellspacing=“0”
cellpadding=“0”>
<tbody>
<tr>
<td align=“center” valign=“middle”><object
classid=“clsid:D27CDB6E-AE6D-11cf-96B8-444553540000”
codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0
width=“750” height=“350”> <param name=“movie” value=“test.swf”>
<param name=“quality” value=“high”>
<embed src=“main.swf” quality=“high”
pluginspage=“http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash
type=“application/x-shockwave-flash” width=“750” height=“350”> </object><br>
</td>
</tr>

</tbody>
</table>
<br>

</body>
</html>
[/COLOR]

Why dosent it work properly? Iv tried everything!