function V(url, urlReferrer, ip, trackingId, storeFrontId, key) {
    Load("../Visits.aspx?Url=" + url + "&UrlReferrer=" + urlReferrer + "&IP=" + ip + "&TrackingId=" + trackingId + "&StoreFrontId=" + storeFrontId + "&KEY=" + key);
}
function Load(url) {
    XMLHttp = null;   
    if (window.XMLHttpRequest)
        XMLHttp = new XMLHttpRequest();
    else if (window.ActiveXObject)
    	XMLHttp = new ActiveXObject("Microsoft.XMLHTTP");    	
    if (XMLHttp != null)
    {
	    XMLHttp.open("GET", url, true);
	    XMLHttp.send(null);
    }
}
