function printerVersion() {
	newwindow2=window.open('','name','height=800,width=800,scrollbars=yes');
	var tmp = newwindow2.document;
	tmp.write('<html><head><title>' + document.title + ' - Printer Friendly Version</title>');
	tmp.write('<meta name="robots" content="noindex,nofollow" />');
	tmp.write('<link rel="stylesheet" href="/styles/printer_version.css"/>');
	tmp.write('</head><body>');
	tmp.write('<div id="logo"><img src="/images/print_header_fh_logo.gif" alt="FineHomebuilding.com" /></div>');
	tmp.write('<div align="center"><p><input type="button" value="Print" name="Print" onclick="javascript:window.print();">&nbsp;&nbsp;<input type="button" value="Close" name="Close" onclick="javascript:self.close()"></p></div>');
	tmp.write('<div id="main-content">');
	tmp.write(document.getElementById('center').innerHTML);
	tmp.write('</div>');
	tmp.write('<div class="clearfloat"></div><div id="copyright-for-print">Copyright&#169; 2007 The Taunton Press<br /><br />');
	tmp.write('<input type="button" value="Print" name="Print" onclick="javascript:window.print();">&nbsp;&nbsp;<input type="button" value="Close" name="Close" onclick="javascript:self.close()"></div>');
	tmp.write('<!--#include virtual="/CodeLib/hbx/hbx.asp"-->');
	tmp.write('</body></html>');
	tmp.close();
	newwindow2.focus;
}

//function printerVersion(url) {
//	newwindow2=window.open(url,'name','height=800,width=632,scrollbars=yes');
//	newwindow2.focus;
//}
