Click to Activate issue

Hey Guys, I have followed the tutorial to get rid of the annoying “click to activate” issue, but will the check for the correct flash version still happen?

This was my code before I pasted the new code:

<table width=“500” border=“0”>
<tr>
<td><object classid=“clsid:D27CDB6E-AE6D-11cf-96B8-444553540000” codebase=“http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0” width=“773” height=“450” title=“Map”>
<param name=“movie” value=“map.swf”>
<param name=“quality” value=“high”>
<embed src=“map.swf” quality=“high” pluginspage=“http://www.macromedia.com/go/getflashplayer” type=“application/x-shockwave-flash” width=“773” height=“450”></embed>
</object></td>
</tr>
</table>

And here is the new code:

<script type=“text/javascript” src=“flashobject.js”></script>
<div id=“flashcontent” style=“width: 773px; height: 450px”></div>
<script type=“text/javascript”>
var fo = new FlashObject(“map.swf”, “animationName”, “773”, “450”, “8”, “#FFFFFF”);
fo.addParam(“allowScriptAccess”, “sameDomain”);
fo.addParam(“quality”, “high”);
fo.addParam(“scale”, “noscale”);
fo.addParam(“loop”, “false”);
fo.write(“flashcontent”);
</script>

Maybe I am not placing the code in the right place, but when I try to paste it in other places, it makes a copy of the swf and two of them play on the web page? Any suggestions, thanks!!