<!-- Hide from older browsers
function prntRahFunc() {
  if (document.getElementById != null) {
    var html = '<HTML>\n<HEAD>\n';

    if (document.getElementsByTagName != null) {
      var headTags = document.getElementsByTagName("head");
    }
    html +='\n<LINK REL="stylesheet" HREF="http://www.fedex.com/css/fedexascend.css" TYPE="text/css">\n';
    html +="\n<STYLE MEDIA='screen'> .subbuttons { display : visible ; } </STYLE>\n";
    html +="\n<STYLE MEDIA='print'> .subbuttons { display : none ; } </STYLE>\n";
    html +="\n<STYLE> .mainbuttons { display : none ; } </STYLE>\n";
    html +="\n<STYLE MEDIA='print'> .subbuttons1 { display : visible ; } </STYLE>\n";
    html +="\n<STYLE MEDIA='screen'> .subbuttons1 { display : visible; } </STYLE>\n";
    html += '\n</HEAD>\n<BODY>\n';

    // Close Button
    html +='<SPAN class="subbuttons"><table width="555" cellpadding="0" cellspacing="0" border="0"><tr bgcolor="#cccccc" height="25"><td width="500">&nbsp;</td><td width="20" valign="middle" align="right"><span class="subbuttons" style="vertical-align: middle;"><a href="javascript:window.print()"><img src="http://www.fedex.com/images/ascend/shared/icon_print.gif" width="18" height="18" alt="Print" border="0"></a></span></td><td width="5">&nbsp;</td><td width="20" valign="middle" align="left"><span class="subbuttons"><a href="javascript:window.print()" class="small">Print</a></span></td><td width="10"><img src="http://www.fedex.com/images/ascend/shared/spacer.gif" width="10" height="30"></td><td valign="middle"><a href="javascript:window.close()" class="small">Close</a></td></tr></table></SPAN><br>\n';

    
    // Add a company logo
    html += '<SPAN class="subbuttons1"><table width="555"><tr><td align="left"><img src="http://images.fedex.com/images/ascend/shared/corp_logo_print.gif" align="left" alt="" border="0" hspace="0" vspace="0"></td></tr></table></SPAN>'

    html += '<br>';

    // Find PrintContent
    var printReadyElem = document.getElementById("printReady");
    if (printReadyElem != null) {
      html += printReadyElem.innerHTML;
    } else {
      alert("Could not find the printReady section in the HTML");
      return;
    }

    var storyWin = window.open("",
                               "StoryWin",
                               "toolbar=no,screenx=0,screeny=0,top=0,left=0,width=605,height=440,directories=no,status=yes,scrollbars=yes,resizable=no,menubar=no");
    with (storyWin.document) {
      write(html);
      close(html);
    }
  } else {
    alert("Sorry, the print feature is only available in modern browsers.");
  }
}
// -->
