function print_preview() {
	var inf = document.getElementById('enhance3').innerHTML;
	var title = document.getElementById('enhance3Middle').innerHTML;
	len = document.styleSheets.length;
	var str = '<html><head><title>' + title + '</title><style>@import url("public.css"); @media all{#enhance3Middle{ font-size: 17px;text-align: center;font-weight: bold;padding: 5px 0 10px 0;color: #1b3665;} ul{line-height: 1.3em;margin:2px 0 0 20px;} body,table{font: 11px Verdana, Lucida, Helvetica, Arial, sans-serif;}}';
	str += '@media print{ .printClose {display: none;} }></style></head><body>';
	str += '<div class="printClose"><a href="javascript:window.print();">Print</a> | <a href="javascript:window.close();">Close Window</a></div>' + inf + '</body></html>';
	win = window.open("", "newwin","height=500,width=700,status=yes,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=yes");
	win.document.write(str);
	win.document.close();
}
