function PrintThisPage()

{
var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,";
sOption+="scrollbars=yes,width=750,height=600,left=100,top=25";
var sWinHTML=document.getElementById('contentColumn').innerHTML;
var winprint=window.open("","",sOption);
winprint.document.open();
winprint.document.write('<html><head><link rel="stylesheet" href="stylesheets/stylesheet.css" type="text/css"></head><body>');
winprint.document.write('<div id="printerFriendlyBody">');
winprint.document.write(sWinHTML);
winprint.document.write('<div align="right"><p id="footer">Copyright &#169; 2004-2009 Cellulose and Renewable Materials Division of the American Chemical Society</p></div>');
winprint.document.write('</div></body></html>');
winprint.document.close();
winprint.focus();
}
 
               
