         function showaorta(json) {
            var feed=json.value;
            var myaorta="<div class='bbaortabox'>";
            var numentries=json.count;
            if (MaxEntries < numentries) { numentries = MaxEntries };
            for (var i=0;i<numentries;i++) {
              var entry = feed.items[i];
              var title = entry.title;
              var source = entry.source;
              var date = entry.pubDate;
              var link = entry.link;
              if (source=="picasa") {
                 var icon = "<img src='http://pulse.plaxo.com/pulse/img/event_icons/Picasa.gif' width='16px' height='16px' />";
                 myaorta+="<div class='bbaortaitem'>" + icon + " " + "<a href='" + link + "' title='Published on " + date.substring(0,16) + "'>" + title + "</a></div>";
              }
              if (source=="flickr") { 
                 var icon = "<img src='http://pulse.plaxo.com/pulse/img/event_icons/Flickr.gif' width='16px' height='16px' />";
                 if (showFlickr) { myaorta+="<div class='bbaortaitem'>" + icon + " " + "<a href='" + link + "' title='Published on " + date.substring(0,16) + "'>" + title + "</a></div>"; }
              }
              if (source=="youtube") { 
                 var icon = "<img src='http://pulse.plaxo.com/pulse/img/event_icons/YouTube.gif' width='16px' height='16px' />";
                 myaorta+="<div class='bbaortaitem'>" + icon + " " + "<a href='" + link + "' title='Published on " + date.substring(0,16) + "'>" + title + "</a></div>"; 
              }
              if (source=="blogger") { 
                 var icon = "<img src='http://www.blogger.com/favicon.ico' width='16px' height='16px' />";
                 myaorta+="<div class='bbaortaitem'>" + icon + " " + "<a href='" + link + "' title='Published on " + date.substring(0,16) + "'>" + title + "</a></div>";
              }
            }
            myaorta+="<div class='bbwidgetfooter'><a href='http://beautifulbeta.blogspot.com'>Widget by Beautiful Beta</a></div>";
            myaorta+="</div>";
            document.getElementById("bbaorta").innerHTML=myaorta;
         }
