Your embedding code has too many parameters.
You currently have:
SV.simpleviewer.load('sv-container', '100%', '75%', 'transparent', true , flashvars1, null, null, null, false );
This should be:
SV.simpleviewer.load('sv-container', '100%', '75%', 'transparent', true, flashvars1, null, null, false );
See here for details: http://simpleviewer.net/simpleviewer/su … tml#params
Also, the embedding code suggests that an older version on SimpleViewer is being used (v2.1.3 does not require the 'SV' in 'SV.simpleviewer.load'). Just to be sure, replace the 'svcore' folder in your gallery with the 'svcore' folder from the SimpleViewer Pro v2.1.3 download package ('simpleviewer_pro_213/web/svcore/') and change your embedding code from:
jQuery(document).ready(function () {
SV.simpleviewer.load('sv-container', '100%', '75%', 'transparent', true , flashvars1, null, null, null, false );
... to:
simpleviewer.ready(function () {
simpleviewer.load('sv-container', '100%', '75%', 'transparent', true, flashvars1, null, null, false );
Also, your XML file has an error.
The '&' on line 447 should be escaped.
Change:
linkURL="http://...?ln=669&aid=424"
... to:
linkURL="http://...?ln=669&aid=424"
Steven Speirs
SimpleViewer Support Team