Salve a tutti

mi chiedevo se fosse corretto mettere il codice di google analytics in un file
esempio lo nomino "ga.js"

codice:
<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-XXXXXXX-X");
    pageTracker._trackPageview();
  } catch(err) {
  }
</script>
e poi richiamarlo in ogni pagina così


codice:
<html>
<head>
<script src="ga.js"
  type="text/javascript">
</script>

<title>Mia pagina</title>
</head>

<body>
</body>
</html>
che ne dite è corretto?