Help with the SWFObject!

Hi there,

Please, can someone help me, how to use the SWFObject for my HTML page that contains 2 flash objects and one media player object .wmv. The standard procedure below work just fine for one flash object, but when i try to use it for multiple objects in one web page, it doesn’t work! May be i am missing something or it is just a more complicated code! Please, help! Thanks in advance!

[FONT=Courier New]<script type=“text/javascript” src=“swfobject.js”></script>[/FONT] /in the head of the html page/ and:

[FONT=Courier New]<div id=“flashcontent”>
This text is replaced by the Flash movie.
</div>[/FONT]
[FONT=Courier New]<script type=“text/javascript”>
var so = new SWFObject(“movie.swf”, “mymovie”, “500”, “100”, “6”, “#003399”);
so.addVariable(“variable”, “varvalue”);
so.write(“flashcontent”);
</script> [/FONT]