// stopka dokumentu
/*
jQuery(document).ready(function() {
	$('.stopkaStart').click(function() {
		$('.tresc_stopka').show();
	});
});
*/



function WlaczStopke() {
  div = document.getElementById("tresc_stopka");
  if (div.style.display=="block") div.style.display="none";
  else div.style.display="block";
}

function WlaczStopkeId(id) {
  div = document.getElementById("tresc_stopka"+id);
  if (div.style.display=="block") div.style.display="none";
  else div.style.display="block";
}

// stopka uchwaly
function WlaczStopkeUchwala(id) {
  div = document.getElementById("uchwala_stopka"+id);
  if (div.style.display=="block") div.style.display="none";
  else div.style.display="block";
}

// stopka oswiadczenia
function WlaczStopkeOswiadczenia(id) {
  div = document.getElementById("oswiadczenie_stopka"+id);
  if (div.style.display=="block") div.style.display="none";
  else div.style.display="block";
}

// Okno drukowania
function drukuj(adr) {
  Prn = window.open(adr,"Prn","width=800,height=600,left=0,top=0,scrollbars=yes,toolbar=no");
  Prn.focus();	
}

// Okno oswiadczenia
function oswiadczenie(adr) {
  Osw = window.open(adr,"Osw","width=800,height=600,left=0,top=0,scrollbars=yes,toolbar=no,resizable=yes");
  Osw.focus();	
}

// Okno uchwaly
function uchwaly(adr) {
  Uch = window.open(adr,"Uch","width=800,height=600,left=0,top=0,scrollbars=yes,toolbar=no,resizable=yes");
  Uch.focus();	
}

// Okno zdjecia
function foto(url) {
	Foto = window.open(url,"Foto","width=300,height=200,left=0,top=0,scrollbars=no,toolbar=no,resizable=no,status=yes");
  	Foto.focus();
}