Dynamically embedding swf in HTML from Query String?

What I’m trying to do is use a query string to get the name of a swf to embed into the HTML.

Example: www.myurl.com?name=interface1

Then in my code for embedding the swf I have something like this.

Example:


<div align="center">

<script type="text/javascript" src="swfobject.js"></script>
		
<div id="flashcontent">
  This text is replaced by the Flash movie.
</div>

<script type="text/javascript">
   var so = new SWFObject(name+".swf", name, "785", "575", "8", "#FFFFFF");
   so.addParam("quality", "high");
   so.write("flashcontent");
</script>
</div>

Does anybody know a way to make this work? I would be greatful for any input :slight_smile: