function processWWWArticleData (data) {
        //function requires global variable itemTypes
        //var itemTypes = [ "articles", "blogs", "video", "audio"];
        for (var j = 0; j < itemTypes.length; j++) {
                var listWrapperEl = document.getElementById('inform_www_'+itemTypes[j]);
                var listHeaderEl = document.getElementById(itemTypes[j]+'Inform');
                var articleList = data[itemTypes[j]];
                                
                /* for each element in the collection, create a new list item */                                
                articleCount = 0;
                for (var i = 0; i < articleList.length; i++) {
                        if (articleList[i].publication != 'Oklahoman') {
                        if (articleCount < 5) {
                                    var itemEl = document.createElement("li");
                                    var newDate = articleList[i].date.substring(0,articleList[i].date.length - 11);
                                    itemEl.innerHTML = "<a target='_blank' href=\"" + articleList[i].url + "\"><b>" + articleList[i].title + "</b></a><br/>" + "<em>" + articleList[i].publication + " | " + newDate + "</em><br/>" + articleList[i].blurb;
                                    listWrapperEl.appendChild(itemEl);
                                    articleCount++;
                            };
                        };
                };

                /* update the list's class to reflect the current state */
                listWrapperEl.style.display = articleCount ? "" : "none";
                listHeaderEl.style.display = articleCount ? "" : "none";
        };
};

