function new_window() 
{
window.open('photos/mapka2.gif', 'mapka2','width=376 , height=376 , toolbar=0, menubar=0, resizable=1');
}

//otwarcie zdjêcia w nowym oknie
function new_img(link, width, height) 
{
var link;
var width;
var height;
window.open(''+link+'','foto','left=20,top=20, width='+width+' , height='+height+', menubar=0, resizable=1, scrollbars=1');
}

function loaddoc(link) 
{
var link;
window.location.href=link;
}

//pokazuje pola adres 2
function show(id)
{
	e = document.getElementById(id);
	if (document.formularz.adr.value == "TAK")
	e.style.display = "block";
	else
	e.style.display = "none";
}
