// Create a print button and add it to the document

if(document.getElementById('bodyframe')) {


  var contentNode = document.getElementById('bodyframe');
  var printButton = document.createElement('img');
  function printPage() { 
  //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.print(); }

  printButton.setAttribute('src','http://www.thecoca-colacompany.com/images/print-button.gif');
  printButton.setAttribute('alt','Print this page');
  printButton.setAttribute('title','Print this page');
  printButton.className = 'print_button';
  printButton.onclick = printPage;
	

	
  contentNode.insertBefore(printButton,contentNode.firstChild);



}
