function printContent() {
	nw = window.open();
	nw.document.write('<html><head><title>');
	nw.document.write(document.title);
	nw.document.write('</title><link href="koroshegy.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" cellpadding="0" cellspacing="0" border="0"><tr><td>');
	nw.document.write('<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td><img src="images/printhead.jpg" width="687" height="100" border="0"></td></tr><tr><td>');
	if (document.getElementById('printthis').nodeName == 'TABLE') nw.document.write('<table width="100%" cellpadding="0" cellspacing="0" border="0">');
	nw.document.write(document.getElementById('printthis').innerHTML);
	if (document.getElementById('printthis').nodeName == 'TABLE') nw.document.write('</table>');
	nw.document.write('</td></tr></table>');
	nw.document.write('</td></tr></table>');
	nw.document.write('</body></html>');
	nw.document.close();
}