xmlHttp.onreadystatechange = function()

in site/js/projects.js [94:106]


        xmlHttp.onreadystatechange = function(state) {
            if (xmlHttp.readyState == 4) {
                if (cb) {
                    if (xmlHttp.status == 200) {
                        cb(JSON.parse(xmlHttp.responseText));
                    } else {
                        urlErrors.push(URL)
                        cb({});
                    }
                }
                GetAsyncJSONArray(urls, finalCallback);
            }
        }