function showPicture(path, filename, width, height)
{

 maxwidth = width+50;
 maxheight = height+50;
 okno = window.open('','DisplayWindow','left=0,top=20,width='+maxwidth+',height='+maxheight+',toolbar=0,resizable=0');
 okno.document.write("<html><head><title></title></head>");
 okno.document.write('<body><center>');
 okno.document.write('<a href="#" onclick="javascript:window.close();" alt="Zamknij"><img src="'+path+filename+'" width="'+width+'" height="'+height+'" title="Zamknij" style="border: 4px solid #ffffff;"></a>');
 okno.document.write('</center></body></html>'); 
 okno.document.close();
 okno.focus();
 
} 

function print_data(id)
{

var object = document.getElementById(id);
 maxwidth = object.clientWidth+ 50;
 maxheight = object.clientHeight+90;
  
 okno = window.open('','DisplayWindow','left=0,top=20,width='+maxwidth+',height='+maxheight+',toolbar=0,resizable=1,scrollbars=1');
 okno.document.clear();
 okno.document.write('<html><head><title></title><link rel="stylesheet" href="css/style.css" type="text/css"> <link href="../styl.css" rel="stylesheet" type="text/css"></head><body style="background-color:#ffffff">'); 

 okno.document.write(object.innerHTML);
 
 
 okno.document.write('<div style="text-align:right;"><a href="#" onclick="javascript:window.print();window.close();" alt="Zamknij"><span style="font-family:arial; font-weight:bold; font-size:12px; color:#000000">Drukowanie</span></a>');
 okno.document.write('&nbsp;&nbsp;<a href="#" onclick="javascript:window.close();" alt="Zamknij"><span style="font-family:arial; font-weight:bold; font-size:12px; color:#000000">Zakończ</span></a><div>');
 okno.document.write('</body></html>'); 
 okno.document.close();
 okno.focus();
 
}


function text_zmien(rozmiar)
{
var obiekt = document.getElementById('text');
if(obiekt!=null) obiekt.style.fontSize = rozmiar+'px';

}