function PrintContent(strid)
{
     var prtContent = document.getElementById(strid);
     var PrintWindow = window.open('','','left=100,top=100,width=640,height=100,toolbar=0,resizable=1,scrollbars=1,status=0');
     PrintWindow.document.write('<link rel="stylesheet" type="text/css" href="css/print.css" />');  // 08/09/09 MP - Use local print style sheet
     // Header
     // PrintWindow.document.write('<h1><img src="/images/PcgsLogo.png" alt="PCGS Logo" />&nbsp;&nbsp;PCGS Price Guide</h1><br />') ;
     PrintWindow.document.write('<img src="/images/PcgsPrintLogo.png" alt="PCGS Logo" /><br />') ;
     // End header
     
     // Main content.  I don't want to print the stupid "Price Changes" links, 
     // so I replace them with empty text.
     // The funky replace() function puts the search string in slashes, not quotes.
     // The "g" suffix on the first parameter is the "global" flag.
     
     PrintWindow.document.write('<div id="blue-table">'); // 08/09/09 MP - Added a div tag for the table to format correctly in print-friendly version
     PrintWindow.document.write(prtContent.innerHTML.replace(/Price Changes/g, ""));
     PrintWindow.document.write('</div>'); // 08/09/09 MP - Closing tag and div below to format correct in FF
     PrintWindow.document.write('<div style="clear: both;">&nbsp;</div>');
     
     // Footer
     PrintWindow.document.write('') ;
     PrintWindow.document.write('<h5><img src="/images/CollectorsLogo.png" alt="Collectors Universe, Inc. Logo" />'
       + '&nbsp;&nbsp;&copy; 1999 - 2009 Collectors Universe&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NASDAQ: CLCT</h5>') ;
     PrintWindow.document.write() ;
     
     // End Footer
     PrintWindow.document.close();
     PrintWindow.focus();
     PrintWindow.print();
     PrintWindow.close();
     // (art) 01-14-2009.  See http://tinyurl.com/79k4o
     window.location.reload( false );
}
