        var cur; cur = document.location; if (cur==null)
        {
                cur='';
        }
        var ref; ref = document.referrer; if (ref==null)
        {
                ref='';
        }

        url='/pubstat/publicpageslog.aspx?urllocation=' + cur + '&urlreferrer=' + ref;
        var xmlhttp=false;

        try {
                xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
                try {
                        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
                } catch (E) {
                        xmlhttp = false;
                }
        }

        if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
                try {
                        xmlhttp = new XMLHttpRequest();
                } catch (e) {
                        xmlhttp=false;
                }
        }
        if(xmlhttp) {
                xmlhttp.open("HEAD", url,true);
                xmlhttp.send(null)
        }
