Module intigration problem in asp.net

Hi,
I am currently evaluating the free version of ClickTale which I am trying to implement on my local development machine.

I am using .NET 3.5 and caching to a sql database. After implementing the code when I browse to the local copy of the site I receive the errors: Error 330 (net::ERR_CONTENT_DECODING_FAILED): Unknown error on Chrome and Content Encoding Error: The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression on Firefox.

Is this indicative of anything specific? Incorrectly referenced xml, database, module etc?
My site runs on Telerik’s Sitefinity CMS and uses Telerik Rad Controls which along with other modules are referenced along with ClickTaleIntegrationModule in the web.config file.

This is the ClickTaleScripts.xml I’m using:
Code:
<scripts>
<script name=“Top” DoNotReplaceCondition = “(<!-- ClickTale Top part -->)”>
<![CDATA[
<!-- ClickTale Top part -->
<script type=“text/javascript”>
var WRInitTime=(new Date()).getTime();
</script>
<!-- ClickTale end of Top part -->
]]>
</script>
<script name=“Bottom” DoNotReplaceCondition = “(<!-- ClickTale Bottom part -->)”>
<![CDATA[
<!-- ClickTale Bottom part -->
<div id=“ClickTaleDiv” style=“display: none;”></div>
<script type=“text/javascript”>
if(document.location.protocol!=‘https:’)
document.write(unescape("%3Cscript%20src=‘http://s.clicktale.net/WRb.js’%20type='text/javascript’%3E%3C/script%3E"));
</script>
<script type=“text/javascript”>
if(typeof ClickTaleUploadPage==‘function’) ClickTaleUploadPage(’<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN”
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”><html>’,’</html>’);
<!-- ClickTale end of Bottom part -->
]]>
</script>
</scripts>