Your page has two methods of embedding (swfobject and object tag) and there should be only one.
I'd recommend the swfobject method as described here: http://simpleviewer.net/simpleviewer/su … dding.html
You have 2 references to the swfobject.js file hosted at ajax.googleapis.com and 1 reference to a modified version in your 'Scripts' folder. There should be only 1.
If using svBuilder, if you change the 'Embed Color' and click 'Get Embed Code', you'll be provided with code to copy and paste into the 'index.html' file in your gallery folder.
Using the 'web' folder from the SimpleViewer download package as an example, the complete code for a standard gallery with a green background (using code copied and pasted from svBuilder) would look something like this:
<!-- saved from url=(0014)about:internet -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>SimpleViewer Gallery</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<!-- SIMPLEVIEWER HEAD. Paste this into the head of the HTML page-->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {};
flashvars.galleryURL = "gallery.xml";
var params = {};
params.bgcolor = "00FF00";
params.allowfullscreen = true;
params.allowscriptaccess = "always";
swfobject.embedSWF("simpleviewer.swf", "flashContent", "100%", "100%", "9.0.124", false, flashvars, params);
</script>
<style type="text/css" media="screen">
html, body { height:100%; }
body {
margin:0;
padding:0;
overflow:hidden;
background-color: #222;
color:#666;
font-family:sans-serif;
font-size:20px;
}
a {
color:#ff0000;
}
</style>
</head><body>
<!-- SIMPLEVIEWER BODY. Paste this into the body of the HTML page where you want to the gallery to appear -->
<div id="flashContent">SimpleViewer requires JavaScript and the Flash Player. <a href="http://www.adobe.com/go/getflashplayer/">Get Flash.</a></div>
</body>
</html>
Steven Speirs
SimpleViewer Support Team