<!--
tracker_loaded = 1;
function make_stats_now(acc,path) {         // make statistics
    var ws_key = new Array();               // names of the fields
    var ws_val = new Array();               // values of the fields
    var tag=args=i='';
    if(typeof(screen) != 'undefined'){      // getting screen data if possible
        ws_key[2] = 'screen_w';     ws_val[2] = screen.width;
        ws_key[3] = 'screen_h';     ws_val[3] = screen.height;
        ws_key[4] = 'pixel_depth';  ws_val[4] = screen.pixelDepth;
        if(typeof(screen.pixelDepth) == 'undefined'){
            ws_val[4] = screen.colorDepth;
        };
    };
    ws_key[0] = 'username';     ws_val[0] = acc;
    ws_key[5] = 'java';         ws_val[5] = '';
    if(typeof(navigator.javaEnabled) != 'undefined'){
        ws_val[5] = (navigator.javaEnabled()?'enabled':'disabled');
    };
    document.cookie = 'WS2cookies=Y';
    ws_key[7] = 'cookies';      ws_val[7] = (document.cookie ? 'enabled' : 'disabled');
    ws_key[8] = 'referrer';  	ws_val[8] = '';
    if(typeof(document.referrer) != 'undefined'){
        ws_val[8] = document.referrer;
        if(!ws_val[8]) {
            ws_val[8] = 'direct/bookmark';
        };
    };
    ws_key[9] = 'top_referrer'; ws_val[9] = '';
    if(typeof(top.document.referrer) != 'undefined'){
        ws_val[9] = top.document.referrer;
        if(!ws_val[9]) {
            ws_val[9] = 'direct/bookmark';
        };
    };
    ws_key[12] = 'url';         ws_val[12] = window.location.href;
    ws_key[16] = 'browser_name';ws_val[16] = navigator.appName;
    ws_key[19] = 'time_zone';   ws_val[19] = '';       // what is the GMT zone
    if(typeof(Date) != 'undefined') {
        now = new Date();
        ws_val[19] = now.getTimezoneOffset();
        ws_val[19] = -ws_val[19] / 60;
    };
    ws_key[22] = 'title';       ws_val[22] = document.title.substr(0,50);
    ws_key[25] = 'plugins';     ws_val[25] = '';
    var plugins_number = 0;
    if(typeof(navigator.plugins.length) != 'undefined'){
        plugins_number = navigator.plugins.length;
    };
    for (i = 0; i < plugins_number; ++i) {          // concat plugins in an array
        ws_val[25] += navigator.plugins[i].name + ';';
    };

    for (i = 0; i < ws_key.length; ++i) {           // concat all field names and values
        if((typeof(ws_key[i]) != 'undefined') && (typeof(ws_val[i]) != 'undefined')) {
            args += escape(ws_key[i]) + "=" + escape(ws_val[i]) + '&';
        };
    };
    return '<A ' + 'HREF="http://www.hitscreen.com/' + '" target="_blank" title="Free Hit Counter"><IMG' +
     ' SRC="' + path + '?NAVG=Tracker&'+ args + 
     '" ALT="Free Hit Counter"'+
     ' BORDER=0></A>';
};

//-->


