I took a look at the source, and I guess there are several things you need to fix to get this to work.
#1 - You are using the SWFobject javascript to embed the SWF which is good, but the path you are using to the javascript is not correct. See in your code at the top of the page:
<script type="text/javascript" src="javascript/swfobject_source.js"></script>
This is assuming the javascript is here:
http://skunkfamily.free.fr/board/javasc ... _source.js but it's not ... Either you have to upload the javascript in this location, or you have to set the src to point to another location.
#2 In the embed code further down the page, I can see your "quotes" have been substituted on 2 lines.
var so = new SWFObject("slideshow.swf", "mymenu", "400", "425", "7", "#FFFFFF");
...
so.write("slideshow");
It should be:
var so = new SWFObject("slideshow.swf", "mymenu", "400", "425", "7", "#FFFFFF");
...
so.write("slideshow");
#3 There is another 'unknown' issue. The slideshow module should be working independantly before you try to get it to work in a page. Its not currently working here:
http://skunkfamily.free.fr/board/slides ... ponent.ini - Can you give me the path to your Imagevue folder? You should really keep all files related to Imagevue in a separate folder, then embed any swf and use the globalpath to set the relative path.