﻿// Ajouter au niveau du <header>
// <script src="../script/googleAnalytics.js" type="text/javascript"></script>

// . . .

// Ajouter à la fin du <body>
// <script type="text/javascript">
//     <!--
//     IncludeGoogleAnalytics();
//     -->
// </script>

function IncludeGoogleAnalytics()
{            
    document.write("<script type=\"text\/javascript\">");
    document.write("");
    document.write("  var _gaq = _gaq || [];");
    document.write("  _gaq.push(['_setAccount', 'UA-6364537-3']);");
    document.write("  _gaq.push(['_trackPageview']);");
    document.write("");
    document.write("  (function() {");
    document.write("    var ga = document.createElement('script'); ga.type = 'text\/javascript'; ga.async = true;");
    document.write("    ga.src = ('https:' == document.location.protocol ? 'https:\/\/ssl' : 'http:\/\/www') + '.google-analytics.com\/ga.js';");    
    document.write("    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);");
    document.write("  })();");
    document.write("");    
    //document.write("alert('IncludeGoogleAnalytics - OK');");    
    document.write("<\/script>");
    document.write("");   
}
