function Count(page) {
    var res = '';
    var depth = '';
    var ref = top.document.referrer;
    if (!ref)
        ref = document.referrer;
    if (window.screen) {
        var res = screen.width + 'x' + screen.height;
        var depth = screen.colorDepth;
    }
    var tag = '<img src="stats/hit.php'
        + '?res=' + res
        + '&dep=' + depth
        + '&url=' + escape(document.URL)
        + '&refe=' + escape(ref)
        + '&groupe='
        + '&page=' + page
        + '&js=1'
        + '" border=0 width=1 height=1>';

    document.write(tag);
}