Fixing dubbelclick, but keeping automated download of flash player if not installed

Hello i have a problem with a certain website. I wanted to solve the click to activate problem in internet explorer. I’ve done this with the use of the tutorial on kirupa and it works fine now. However the problem is that not all computers have installed flash player. When you let flash publish a html-file i recieve the following code, which includes a automated link to download flash player if not installed yet:

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Lion</title>
</head>
<body bgcolor="#f5ffee">
<!--url's used in the movie-->
<!--text used in the movie-->
<!-- saved from url=(0013)about:internet -->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="800" height="640" id="Lion" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="Lion.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#f5ffee" /><embed src="Lion.swf" quality="high" bgcolor="#f5ffee" width="800" height="640" name="Lion" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>

From this code I think the following is responsible for the automated download, however i’m not completely sure about this:

 
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"

The output generated with the tutorial to solve the “click to activate” problem is as following:

 
<script type="text/javascript" src="flashobject.js"></script>
<center><div id="flashcontent" style="width: 800px; height: 640px"></div><center>
<script type="text/javascript">
var fo = new FlashObject("http://www.massagepraktijkhands.nl/Hands.swf", "animationName", "800", "640", "8", "#FFFFFF");
fo.addParam("allowScriptAccess", "sameDomain");
fo.addParam("quality", "high");
fo.addParam("scale", "noscale");
fo.addParam("loop", "false");
fo.write("flashcontent");
</script>

The question now is: Where must I put the code for the downloadling for flash player?

This is a very serious problem because some people now dont see the site, and might think the site is not online. So if any knows how I can solve this problem, i’m very happy :wink:

thanks in advance…