//otwórz stronę
function loaddoc(link) {
var link;
window.location.href=link;
}

//otwarcie zdjęcia w nowym oknie
function new_img(link, width, height) {
var link;
var width;
var height;
window.open('window.php?bimage='+link+'', 'foto' ,'left=20,top=20, width='+width+' , height='+height+', menubar=0, resizable=1, scrollbars=1');
}

//otwarcie strony w nowym oknie
function new_win(link, width, height) {
var link;
var width;
var height;
window.open('window.php'+link+'', 'noweokno' ,'left=20,top=20, width='+width+' , height='+height+', menubar=0, resizable=1, scrollbars=1');
}


//w zależnosci od wybranego powiatu pokazuje odpowiedni select z gminami
function zmienPowiat()
{
	pow = document.getElementById('powiat').value; //wybrana wartosc w selekcie

	for (i=0; i<powiaty.length; i++) //petla po elementach tablicy
	{
		d = powiaty[i] //nr powiatu i div'a zarazem
		dif = document.getElementById(d) //id div

		if (pow == d) dif.style.display="inline"; //pokaz tylko wybrany
		else
		{
			dif.style.display="none";
			pow.value=""; //wyzeruj wszystkie inne selecty
		}
	}
}
