In http://www.racing-images.co.uk/homepage.asp change:
<script type="text/javascript" src="swfobject.js"></script>
.. to:
<script type="text/javascript" src="sandown/swfobject.js"></script>
Your embed script should be:
<script type="text/javascript">
var fo = new SWFObject("sandown/viewer.swf", "viewer", "800", "600", "8", "#181818");
fo.addVariable("xmlDataPath", "sandown/gallery.xml");
fo.write("flashcontent");
</script>
The paths in http://www.racing-images.co.uk/sandown/gallery.xml should be:
thumbPath="sandown/thumbnails/" imagePath="sandown/images"
Edit:
An alternative solution, being that you already have a working gallery, would be to load the gallery into an iframe.
For this, you could remove:
<script type="text/javascript" src="swfobject.js"></script>
.. from http://www.racing-images.co.uk/homepage.asp and replace:
<div id="flashcontent">SimpleViewer requires JavaScript and the Flash Player.
<a href="http://www.macromedia.com/go/getflashplayer/">Get Flash.</a></div>
<script type="text/javascript">
var fo = new SWFObject("sandown/viewer.swf", "viewer", "800", "600", "8", "#181818");
fo.write("flashcontent");
</script>
... with:
<iframe src="sandown/index.html" frameborder="0" width="800" height="600"></iframe>
... and leave the paths in http://www.racing-images.co.uk/sandown/gallery.xml alone.
Steven Speirs
SimpleViewer Support Team