// JAVASCRIPT FUNCTION FOR SET CONTENT - ANCHORLINE
function set_content(content)
{
  var html = ""

  for(var i in content.Entry)
  {
    html += ' <a class="new" href="' + _hesc(content.Entry[i].Link)'">'
    html += _hesc(content.Entry[i].Title) + '</a><br/>';
  }
  _gel("feed_titles").innerHTML = html;
}
_IG_FetchFeedAsJSON("http://divegroupers.blogspot.com/feeds/posts/default", set_content, 10, false);
_IG_AdjustIFrameHeight();