I don't think that has anything to do with the slideshow. Even if it does, I just tested this and it fixes it. Remove the division from around the survey code, it's not needed anyway, and move the script that remains to the last thing before the closing </body> tag of the page.
So take this:
Code:
<!-- begin pop up survey window-->
<div id="survey" class="sg-popup">
<script type="text/javascript">var sg_div = document.createElement("div");sg_div.innerHTML = "<h1>Customer eSurvey</h1><p><em>We want to know what you think! Please take our quick eSurvey.</em></p><p><a href=\"http://sg.securesurvey1.com/s3/peoples-bank-customer-esurvey\">Please click here to start the survey.</a> <br><br>(May take a few seconds to load.)<br>Once you have completed the survey, you will be returned to this page.</p> <a href=\"#\" onclick=\"document.getElementById('sg-popup').style.display = 'none';return false;\">No, thank you.</a> ";sg_div.id = "sg-popup";document.body.appendChild(sg_div);</script>
</div>
<!-- end pop up survey window -->
Change it to this:
Code:
<!-- begin pop up survey window-->
<script type="text/javascript">var sg_div = document.createElement("div");sg_div.innerHTML = "<h1>Customer eSurvey</h1><p><em>We want to know what you think! Please take our quick eSurvey.</em></p><p><a href=\"http://sg.securesurvey1.com/s3/peoples-bank-customer-esurvey\">Please click here to start the survey.</a> <br><br>(May take a few seconds to load.)<br>Once you have completed the survey, you will be returned to this page.</p> <a href=\"#\" onclick=\"document.getElementById('sg-popup').style.display = 'none';return false;\">No, thank you.</a> ";sg_div.id = "sg-popup";document.body.appendChild(sg_div);</script>
<!-- end pop up survey window -->
and move it to here:
Code:
</tr>
</table>
</div>
</div>
<!-- #EndLibraryItem --><span></span>
<!-- begin pop up survey window-->
<script type="text/javascript">var sg_div = document.createElement("div");sg_div.innerHTML = "<h1>Customer eSurvey</h1><p><em>We want to know what you think! Please take our quick eSurvey.</em></p><p><a href=\"http://sg.securesurvey1.com/s3/peoples-bank-customer-esurvey\">Please click here to start the survey.</a> <br><br>(May take a few seconds to load.)<br>Once you have completed the survey, you will be returned to this page.</p> <a href=\"#\" onclick=\"document.getElementById('sg-popup').style.display = 'none';return false;\">No, thank you.</a> ";sg_div.id = "sg-popup";document.body.appendChild(sg_div);</script>
<!-- end pop up survey window -->
</body>
<!-- InstanceEnd --></html>
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks