
function stats(account,intopframe) {
    var n=navigator;
    var ver=n.appVersion;
    var name=n.appName;
    var d=document;
    var verIE=parseInt(ver.substring(ver.indexOf("MSIE")+5,ver.indexOf("MSIE")+6));
    if(verIE>0) ver=verIE;
    else ver=parseInt(ver);
    var u="http://www.proxi.nl/stats/image.php?a="+account;
    u += "&l="+escape(location.href);
    var r;
    if(intopframe) r=d.referrer;
    else r=top.document.referrer;
    if(r && r!=d.location < 0) u+="&r="+escape(r);
    d.write('<img src="'+u+'" border=0 width=0 height=0 nosave>');
}

