
function doHttp(InputUrl) {
    $.ajax({
        url: InputUrl,
        context: document.body,
        success: function() {
            
        }
    });
}

function tcptrack(IPv4, IPv6, Desc) {
   doHttp("http://www.deephousemix.com/sendHttp.aspx?action=httphit&IP4=" + IPv4 + "&IP6=" + IPv6 + "&Desc=" + Desc);
}




function jsSendHttp(url)
{ 
    doHttp(url);
    return;

    var targetUrl = url;
    var xhr;
    var httpResponse; 
    try { xhr = new XMLHttpRequest(); }                 
    catch(e) 
    {    
      xhr = new ActiveXObject("Microsoft.XMLHTTP");
    } 
 
    xhr.onreadystatechange  = function()
    {     
         if(xhr.readyState  == 4)
         {
        
              if(xhr.status  == 200) {
                  //alert(httpResponse);
                  httpResponse = xhr.responseText; 
                  }
              else  {
                  
                  //httpResponse = xhr.status;
                    }
         }
    }; 

   xhr.open("GET", targetUrl,  true); 
   xhr.send(null);
   return httpResponse;
   
   
} 



