// Create a rss button and add it to the document
if(document.getElementById('bodyframe')) {
  var contentNode = document.getElementById('bodyframe');
  var rssButton = document.createElement('img');
  function rssGoPage() { 
  //alert('gImages[0].src: ' + gImages[0].src);
  //alert('Remove extension from DCS.dcsuri: ' + DCS.dcsuri.split('.html')[0]);
  //dcsMultiTrack("DCSext.eventType","Print","DCSext.print",1,'DCS.dcsuri',DCS.dcsuri.split('.html')[0] + '.print');
  //alert('gImages[1].src: ' + gImages[1].src);
  window.open('http://feeds.feedburner.com/NewsFromTheCoca-ColaCompany');}
  rssButton.setAttribute('src','http://www.thecoca-colacompany.com/images/rss-button.gif');
  rssButton.setAttribute('alt','RSS');
  rssButton.setAttribute('title','RSS');
  rssButton.className = 'rss_button';
  rssButton.onclick = rssGoPage;
  contentNode.insertBefore(rssButton,contentNode.firstChild);
}
