        function quel_os()
        {
                var agent = navigator.userAgent;
                if(agent)
                {
                        if(agent.indexOf('Win') != -1 )
                        {
                                if(agent.indexOf('95') != -1 )
                                        return "Windows 95";
                                else if(agent.indexOf('98') != -1)
                                        return "Windows 98";
                                else if(agent.indexOf('XP') != -1)
                                        return "Windows XP";
                                else
                                        return "Windows";
                        }
                        else
                        if(agent.indexOf('Mac') != -1 )
                        {
                                return "Macintosh";
                        }
                        else if(agent.indexOf('nux') != -1  || agent.indexOf('X11')  || agent.indexOf('nix') != -1)
                        {
                                return "Unix/Linux";
                        }
                        else return "Autre";
                }
        }

        var site;
        site = window.location;
        if(!site || site == '') site = document.url;
        if(!site || site == '') site = document.location;

        var ref;
        if(document.referrer) ref = document.referrer;

        var os;
        os = quel_os();

        var titre;
        titre = document.title;

        document.write("<img src=\"http://www.mywebstat.org/stats/info.php?url=" + site + "&referrer="+ref+"&titre="+titre +"&os="+os+"&js=1" +"\">");
       