function printContent(id) {
	
		wnd = window.open('','','width=800,height=600,resizable=yes,scrollbars=yes');

		wnd.id = 'printWindow';
		wnd.document.write('<html><head><title>BCC - drukuj</title></head><body>');
		wnd.document.writeln('<p><img src="fileadmin/templates/css/logo_print.png" /></p>');
		wnd.document.writeln('<style type="text/css"><!--@import url(\'fileadmin/templates/css/cssPrint.css\');--></style>');
		wnd.document.write(document.getElementById(id).innerHTML);
		wnd.document.write('</body></html>');
		wnd.document.close();
		wnd.print();
		
		/*
		printThis = function () {
			this.print();
		}
		
		wnd.onload = printThis;
		*/
}
