var stats_url = 'http://38.119.168.21/log.aspx';

var page_name = 'index.htm'; //this can be changed to the proper default page for you site. e.g. Default.htm, index.aspx

    

var o_r = document.referrer;

var o_p = window.location.pathname.substring( window.location.pathname.lastIndexOf('/') );

    

if (o_p == '/')

{

    o_p = page_name; 

}

else

{

    o_p = o_p.substring(1);

}

    

var o_q = location.search.substring(1).replace(/\s/g,"+");



document.write('<iframe src=' + stats_url + '?orig_refer=' + o_r + '&page=' + o_p +'&' + o_q +'" height="0" width="0"></iframe>');

