    function _cb_FindItems(root) {
        // alert("Entered _cb_FindItems");
        var items = root.Item|| [];
        var added = 0;
        var html = [];
        // alert("array length = " + items.length);
        html.push('<TABLE>');
        for(var i = 0; i < items.length; ++i) {
            // had to do the following hack only for the paper screenshot
            // else it would show nude pictures for charlize theron
            // if(i < 5) continue;
            // alert("entering for");
            var item = items[i];
            var url = item.GalleryURL;
            var clickurl = item.ViewItemURLForNaturalSearch;
            var title = item.Title;
            var price = item.ConvertedCurrentPrice;
            // alert(price.Value);
            if(url == null) {
                // alert("null url found");
            } else {
                // html.push('<TR><TD><BR><center>'  + '<a href = "' + clickurl + '"' + '<img src = "' + url + ' "></src>' + '</a></TD>' + '<TD>' + title +  '</TD>' + '</center>' + '<BR></TR>');
                var newtitle = title.substring(0, 40);
                if(title.length > newtitle.length) {
                    newtitle = newtitle + "...";
                }
                html.push('<TR><TD>'  + '<a href = "' + clickurl + '"' + '><img src = "' + url + ' ">' + '</a></TD>' + '<TD>' + '<a href = "' + clickurl + '"' + '>' + newtitle +  '</a>' + "<BR>" + 'Current Price: <B>(' + price.Value + '$)</B>' + '</TD>' +   '</TR>');
                // document.getElementById("ebayitems").innerHTML = html.join("");
                ++added;
                if(added >= 3) break;
            }
        }
        html.push('</TABLE>');
        document.getElementById("ebayitems").innerHTML = html.join("");
    }
