function xmlhttpGet(strURL, id_osoby) {
        var xmlHttpReq = false;
        // Mozilla/Safari
        if (window.XMLHttpRequest) {
                xmlHttpReq = new XMLHttpRequest();
        }
        // IE
        else if (window.ActiveXObject) {
                xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
        }
        xmlHttpReq.open('GET', strURL, true);
        xmlHttpReq.onreadystatechange = function() {
                if (xmlHttpReq.readyState == 4 && xmlHttpReq.responseText) {
                        document.getElementById('syg' + id_osoby).innerHTML = xmlHttpReq.responseText;
			document.getElementById('link' + id_osoby).innerHTML = '';
                }
        }
        xmlHttpReq.send(null);
}


