Hey all, I'm trying to customize a few things here.. Here is my situation: 1) I have a main site "site.com" and multiple sub-domains "sub.site.com" 2) I want to maintain individual accounts for the sub.site.com accounts and also create a "global" account that will track visitors across all sub-domains and the main domain. 3) To complete #2, I have added both accounts (below), using pageTracker and pageTracker2. The global account (pageTracker2), is setting the domain to .site.com, so that visitors track across sites as if it was a single entity. 4) I also want to change my Session Cookie to be 2 hours (7200000 Mil seconds as seen below). Everything appears to look correct, however data is not being collected properly. Since installing, I am seeing one or two visits an hr on each site (12 total), when this number should be in the thousands. I'm wondering if other javascripts may be interrupting data, and that it may work if I place it in the header? I'm not sure, though, because if I remove the global tracking code from this and leave the individual code, it works. Please help me! I've tried everything! Thanks! Chris <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-CODE1"); pageTracker._setSessionCookieTimeout(7200000); pageTracker._trackPageview(); var pageTracker2 = _gat._getTracker("UA-CODE2"); pageTracker2._setDomainName(".site.com"); pageTracker2._setSessionCookieTimeout(7200000); pageTracker2._trackPageview(); } catch(err) {} </script>