function showPicture(path, filename, width, height, subject, description, data)
{
 maxwidth = width+50;
 maxheight = height+50;
 okno = window.open('','DisplayWindow','left=0,top=20,width='+maxwidth+',height='+maxheight+',toolbar=0,resizable=1,menubar=0,scrollbars=1');
okno.document.clear();
 okno.document.write("<html><head><title>Emet Szczecinek sp. z.o.o.</title><link rel=\"stylesheet\" href=\"css/style.css\" type=\"text/css\"></head>");
 okno.document.write('<body  style="background-attachment: fixed;background-image: url(mapka.jpg);background-position: 1px 1px;"><center>');
 okno.document.write('<div class="Akttytul" style="margin-bottom:5px;">'+subject+'</div>');
 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 imgview(picture) 
 {
 document.images['imgtool'].src = picture;
}

var area1 = null;
function AreaOver(id1, id2)
{
  area1  = document.getElementById(id1);
  area1.style.visibility = 'visible';
  area2  = document.getElementById(id2);
  area2.style.visibility = 'visible';
  return (true);
}

function AreaOut(id1)
{
  //area1  = document.getElementById(id1);
  area1.style.visibility = 'hidden';
  area1  = null;
  area2.style.visibility = 'hidden';
  area2  = null;
  return (true);
}

function text_zmien(rozmiar)
{
var obiekt = document.getElementById('tekst');
if(obiekt!=null) obiekt.style.fontSize = rozmiar+'px';

}

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>Zgłoszenie serwisowe</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();
 
}

