I checked your
clientgallery.html, and basically you have this for embedding Imagevue:
<script type="text/javascript">
//<![CDATA[
swfobject.embedSWF("imagevue/iv-includes/imagevue2.swf", "imagevue", "980px", "800px", "8.0.0", "imagevue/iv-includes/expressInstall.swf", null, {allowScriptAccess: 'always', allowFullScreen: true, bgcolor: '#000000'}, {id: 'imagevue', name: 'imagevue'});
// ]]>
</script>
Now, instead of using "null" for the flashvars, you can create an object with variables. For example:
<script type="text/javascript">
var flashVars = {};
flashVars.contentfolder = 'content/gallery1/';
flashVars.theme = 'bluedragon';
//<![CDATA[
swfobject.embedSWF("imagevue/iv-includes/imagevue2.swf", "imagevue", "980px", "800px", "8.0.0", "imagevue/iv-includes/expressInstall.swf", flashVars, {allowScriptAccess: 'always', allowFullScreen: true, bgcolor: '#000000'}, {id: 'imagevue', name: 'imagevue'});
// ]]>
</script>
As you can see in the above, we defined the flashVars, and set
contentfolder and
theme as variables. You can duplicate your html document, and add different contentfolders, themes or most other important settings on a per-document basis, thus creating multiple galleries.