10th January 2008 - 2 minutes read time
To set up multiple Google Analytics tags on the same page you need to use the _uff = false; command in between the unchinTracker() calls to reset the tracker for the next account. The urchinTracker() function will send information on the page visit off to Google Analytics.
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
<script type="text/javascript">
_uacct = "UA-XXXXX"; // First account details
urchinTracker();
_uff = 0; // Reset tracker for second account
_uacct = "UA-YYYYY"; // Second account details
urchinTracker();
</script>
You can do this for as many accounts as you like, but be aware that there will come a point when there will be a noticeable delay on the site when the calls to Google Analytics are done so don't do too many.