function printerFriendly() {if (document.getElementById("maincontentbox")) {	var content = document.getElementById("maincontentbox").innerHTML;	var printWindow = window.open('','printwindow','menubar=yes,toolbar=no,status=no,scrollbars=yes,resizable=yes,location=no');	printWindow.document.open();	printWindow.document.write('<html><head><title>' + document.title + '<\/title>\n'		+'<link rel="stylesheet" type="text/css" media="all" href="http://www.pantagraph.com/includes/css/general.css">\n'		+'<link rel="stylesheet" type="text/css" media="all" href="http://www.pantagraph.com/includes/css/staticpage.css">\n'		+'<style type="text/css">body, .bodycopy, .maincontentbox, td { font-size: 10pt }</style>\n'		+'<style type="text/css">body { padding:12px }</style>\n'		+'<style type="text/css">.headline1, h1 { font-size: 20pt }</style>\n'		+'<style type="text/css">.headline2, h2 { font-size: 16pt }</style>\n'		+'<style type="text/css">.headline3, h3 { font-size: 12pt }</style>\n'		+'<body><p><img src="http://www.pantagraph.com/images/main/flag_200.gif" alt="" height="36" alt="Pantagraph.com" width="200" border="0"></p>');	// if (window.print) printWindow.document.write('<img src="http://www.pantagraph.com/images/main/print_icon.gif" align="middle" width="13" height="11" border="0" alt=""> <b><a href="javascript:window.print();">Print this page now<\/a><\/b><p>');	printWindow.document.write(content		+'<hr>Copyright &copy; '+new Date().getYear()+', Pantagraph Publishing Co. All rights reserved.'		+'<\/body><\/html>');	printWindow.document.close();	if (window.print) printWindow.print();	}}if (window.location.href.indexOf('newsbank')>0) {	document.write('<a href="javascript:printerFriendly()">'	+'<img src="http://www.pantagraph.com/images/main/print_icon.gif" width="13" height="11" border="0" alt="Print this page"><\/a> '	+'<b><a href="javascript:printerFriendly()">Print this article<\/a></b>');}else {	document.write('<a href="javascript:printerFriendly()">'	+'<img src="http://www.pantagraph.com/images/main/print_icon.gif" width="13" height="11" border="0" alt="Print this page"><\/a> '	+'<a href="javascript:printerFriendly()">Print this page<\/a> | ');}