This is due to the Verisign script overwriting a variable that ISC uses to store language data. You can work around this conflict by following these steps:
- Find the script that you inserted into your page (most likely in the Footer.html panel). The script will look something like this:
<script src="https://seal.verisign.com/getseal?host_name=#####&size=M&use_flash=NO&use_transparent=NO&lang =en"></script> - Replace the above script with this:
<script type="text/javascript">var templang = lang;</script>
<script src="https://seal.verisign.com/getseal?host_name=#####&size=M&use_flash=NO&use_transparent=NO&lang=en"></script>
<script type="text/javascript">var lang = templang;</script>
