I am having a problem getting Google Analytics to log page hits on an intranet site. It's not working. Our internal URL is: http://abcd123:4567/HomeELearn.htm?PAGE_ID=ELEARN I verified using an externally visible site with Google so that is not an issue. This corporate site has a FQDN (fully qualified domain name), but is not accessible from the Internet. The javascript was modified so Google Analytics would ignore the URL but am not sure if the code is correct. <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> try { var pageTracker = _gat._getTracker("UA-15064676-2"); pageTracker._setDomainName("none"); pageTracker._trackPageview(); } catch(err) {}</script> Any suggestions?