function getXMLDocument(url) {
        getXmlHttpRequestObject();
        if(xmlHttp) {
               xmlHttp.open("GET", url, true);
               xmlHttp.onreadystatechange = processRequest
               xmlHttp.send(null);
        }
}
function processRequest(url) {
        if(xmlHttp.readyState == 4) {
          // Procedury przetwarzajce........
          alert("dania / odpowiedzi obsugiwane asynchronicznie");
        }
}
