GFdynamicFeedControl.prototype.setTitle_ = function(resultFeed,
opt_element) {
  var el = opt_element || this.nodes.title;
  this.clearNode_(el);
  var link = document.createElement('a');
  link.target = google.feeds.LINK_TARGET_BLANK;
  link.href = resultFeed.link;
  //link.style.cssFloat = 'left';
  link.innerHTML = resultFeed.title;
  el.appendChild(link);

} 