   function xmlHttpPostQ(strURL, qryStr, resBox) {
       var xmlHttpReq = false;
       // Mozilla/Safari
       if (window.XMLHttpRequest) {
           xmlHttpReq = new XMLHttpRequest();
           //xmlHttpReq.overrideMimeType('text/xml');
       }
       // IE
       else if (window.ActiveXObject) {
           xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
       }
       xmlHttpReq.open('POST', strURL, true);
       xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
       xmlHttpReq.onreadystatechange = function() {
           if (xmlHttpReq.readyState == 4) {
               document.getElementById(resBox).innerHTML = xmlHttpReq.responseText;
           }
       }
       xmlHttpReq.send(qryStr);
   }

   
   function xmlHttpPost(strURL, resBox) {
       var xmlHttpReq = false;
       // Mozilla/Safari
       if (window.XMLHttpRequest) {
           xmlHttpReq = new XMLHttpRequest();
           //xmlHttpReq.overrideMimeType('text/xml');
       }
       // IE
       else if (window.ActiveXObject) {
           xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
       }
       xmlHttpReq.open('POST', strURL, true);
       xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
       xmlHttpReq.onreadystatechange = function() {
           if (xmlHttpReq.readyState == 4) {
               document.getElementById(resBox).innerHTML = xmlHttpReq.responseText;
           }
       }
       xmlHttpReq.send(null);
   }
   