I would certainly recommend using the baseURL method of embedding as documented here.
You would upload the complete gallery folder (not just the contents) to your web server which might help keep things organized as the gallery will be completely self-contained within its own folder.
Also, it does not matter where on your web server you upload your gallery folder to as long as the two paths in the embedding code (the path to the 'simpleviewer.js' file and the baseURL itself, pointing towards the gallery folder) are correct.
Here's an example you can follow.
(1) Create a gallery with svBuilder and save it to a folder named 'my_gallery'.
(2) Upload the complete gallery folder to the root directory of your web space. If your domain is www.example.com (for example), then you should now be able to view your gallery on a page of its own at http://www.example.com/my_gallery/index.html
(3) Now, to embed your gallery in a web page alongside other content, you can use the following code. The leading slashes in the paths mean that the paths are relative to your root directory so the code will work in any page throughout your site without modification.
<!--START SIMPLEVIEWER EMBED.-->
<script type="text/javascript" src="/my_gallery/svcore/js/simpleviewer.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.baseURL = "/my_gallery/";
simpleviewer.ready(function () {
simpleviewer.load("sv-container", "100%", "600", "222222", true, flashvars);
});
</script>
<div id="sv-container"></div>
<!-- END SIMPLEVIEWER EMBED -->
(You can change the gallery's dimensions and background color in the Embed Code Parameters if you like.)
Please note that the gallery will not appear in the Muse preview but will be fine once everything has been uploaded to yuor web site.
Steven Speirs
SimpleViewer Support Team