


function drukuj()
{
config='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no';
var pop = window.open ("","pop",config);
pop.document.write('<html><head>
<meta http-equiv=\"content-type\" content=\"text/html; charset=iso-8859-2\" /><link rel="stylesheet" href="styl2.css" type="text/css" /></head><body  leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0"><table  ><tr><td>');


  var txt='';
  txt+=document.getElementById('tabela').innerHTML;
   pop.document.write(txt);
  pop.document.write('</td></tr></body></html>');
pop.document.close();

pop.print();

} 