// Galeria - okienko na środku
var okno = null;
function galeriaPopup(url, nazwa, szer, wys, dodatki) {
  var marginL = (screen.width-szer)/2;
  var marginG = (screen.height-wys)/2;
  if (marginL < 0) marginL = 0;
  if (marginG < 0) marginG = 0;
  var opcje = 'height=' + wys + ',';
  opcje += 'width=' + szer + ',';
  opcje += 'top=' + marginG + ',';
  opcje += 'left=' + marginL + ',';
  opcje += dodatki;
  okno=window.open(url,nazwa,opcje);
  okno.window.focus();
}

// Przełączanie widoczności
function przelacz() {
	if(document.getElementById) {
			target1 = document.getElementById("switch1");
			target2 = document.getElementById("switch2");
			
			if (target1.style.display == "none") {
				target1.style.display = "";
				target2.style.display=target1.style.display;
			} else {
				target1.style.display = "none";	
				target2.style.display=target1.style.display;
			}
	}
}

// Przełączanie widoczności
function znajdz() {
	if(document.getElementById) {
			target = document.getElementById("formularz");
			if (target.style.display == "none") {
				target.style.display = "";
			} else {
				target.style.display = "none";	
			}
	}
	return false;
}



/* Przelicza ilość znaków do wpisania w komentarzu */
function licz(pole, v){
	var ilosc = pole.value.length + 1;
	document.getElementById(v).innerHTML=ilosc+" " ;
}

function cofnij(adres, czas){
	setTimeout("window.location.href='" + adres + "'", czas);
}
