      function _run() {
        /* 
        * Retrieve a list of blog posts
        */
        
        // Obtain a reference to the 'content' div
        var content = document.getElementById('news');

 //       var newsitem = 1;
        
        // Create the blogger service object
        var bloggerService =
            new google.gdata.blogger.BloggerService('com.appspot.interactivesampler');
        
        // The feed for a single blog. (In this case, the Official Google Blog.)
        //
        // The ID included in this URI can be retrieved from the
        // <link rel="service.post"> element in the Blog's HTML source
        var feedUri = 'http://www.blogger.com/feeds/8910280797828422736/posts/default?max-results=20';
        
        // A callback method invoked getBlogPostFeed() returns data
        var handleBlogPostFeed = function(postsFeedRoot) {
          var posts = postsFeedRoot.feed.getEntries();
          
          // This variable will buffer HTML output until function completes
          var html = '';
          
          // Display blog's title


          html += '<dl><strong>'
//               + '<dt><strong>Blog:</strong> '
               + postsFeedRoot.feed.getTitle().getText()
               + '</strong> <p></p>';
          
          // Display blog posts         

//          html += '<dd><ul>';
          for (var i = 0, post; post = posts[i]; i++) {
            var postTitle = post.getTitle().getText();
            var postURL = post.getHtmlLink().getHref();
            var postContent = post.getContent().getText();


            if (postTitle == "") 
            {
                 if (postContent.indexOf("@@@")>=0) 
                {
                    postTitle = postContent.substring(0,postContent.indexOf("@@@"));
                    postContent = postContent.substring(postContent.indexOf("@@@")+3); 
                }
            }
            



            html += '<a href="' + postURL + '" target="_blank">'
                      + postTitle
                      + '</a><p></p>' + postContent + '<p></p>';


          data[newsitem] = '<h2><a href="' + postURL + '" target="_blank">'
                      + postTitle
                      + '</a></h2><p></p>' + postContent + '<p></p>';

          newsitem += 1; 


          }
//          html += '</ul></dd>';
          
          // Write out buffered HTML, and clear the "Loading..." message
//          content.innerHTML = html;


//          content.innerHTML = 'Wayne Burrows';
        };
        
        var handleError = function(error) {
          content.innerHTML = '<pre>' + error + '</pre>';
        };
        
        bloggerService.getBlogPostFeed(feedUri, handleBlogPostFeed, handleError);
        
      }
      google.setOnLoadCallback(_run);
