function printContent() {
	nw = window.open();
	nw.document.write('<html><head><title>');
	nw.document.write(document.title);
	nw.document.write('</title><link href="citiinfo.css" rel="stylesheet" type="text/css"><link href="print.css" rel="stylesheet" type="text/css"></head>');
	nw.document.write('<body onLoad="window.print()">');
	nw.document.write('<table width="650"><tr><td>');
	nw.document.write('<table width="100%"><tr><td><img src="images/printhead.gif" width="159" height="92" border="0"></td></tr></table>');
	nw.document.write('</td></tr><tr><td>&nbsp;</td></tr><tr><td>');
	nw.document.write(document.getElementById('printthis').innerHTML);
	nw.document.write('</td></tr></table>');
	nw.document.write('</body></html>');
	nw.document.close();
}
