//menu rozwijane
function mshow(id) {
	var e = document.getElementById(id);
	e.style.visibility="visible";
}

function mhide(id) {
	var e = document.getElementById(id);
	e.style.visibility="hidden";
}

//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=5,top=5, width='+width+' , height='+height+', menubar=0, resizable=1, scrollbars=1');
}

//otwarcie zdjęcia w nowym oknie
function new_win(link, width, height) 
{
var link;
var width;
var height;
if (!width) width = 732;
if (!height) height = 700;
	
//gdy jest wysylana wiadomosc - odczytaj z głownego okna i wstaw do nowego
if (document.getElementById('nazwisko'))
var n='&nazwisko='+document.getElementById('nazwisko').value;
else n = "";

if (document.getElementById('email'))
var e='&email='+document.getElementById('email').value;
else e = "";

if (document.getElementById('uwagi'))
var u='&uwagi='+document.getElementById('uwagi').value;
else u = "";

window.open('window.php?'+link+n+e+u, 'qumak' ,'left=280, top=20, width='+width+' , height='+height+', menubar=0, resizable=1, scrollbars=1');
}

//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";
}

//schowaj banner na stronie głównej
function zamknij()
{
	var p = document.getElementById('fl');
	p.style.display="none"
}
