
function popup(foto,szer,wys,nazwa)
{

config='toolbar=no,location=no,directories=no,status=no,menubar=no,width='+szer+',height='+wys+' ,scrollbars=no,resizable=no';
var okno = window.open ("",nazwa,config);

okno.document.write('<html><head></head><body onClick="window.close()" leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0"><a href="#"><img src="'+foto+'" border=0  > </a></body></html>');

okno.document.close();
}


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></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();

} 
