// Create the AzzJax creation function
function CreateAzzjax() {
 if (window.XMLHttpRequest) {
  newazzjax = new XMLHttpRequest();
 } else if (window.ActiveXObject) {
  newazzjax = new ActiveXObject("Microsoft.XMLHTTP");
 }
 return newazzjax;
}

// AzzJax blind send (no return/response function attachment)
function AzzJaxBlindSend( sURL )
{
 var xmlhttp = CreateAzzjax();
 xmlhttp.onreadystatechange = function () { return true; };
 xmlhttp.open("GET",sURL,true);
 xmlhttp.send(null);
}