//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;
window.open('window.php?'+link+'', 'qumak' ,'left=300, 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"
}

//otwórz formularz message w nowym oknie, pobierz wpisane wartosci z małego formularza
function send_form()
{
	//odczytaj
	var n=opener.document.getElementById('nazwisko').value;
	var e=opener.document.getElementById('email').value;
	var u=opener.document.getElementById('uwagi').value;
	//wstaw
	document.getElementById('nazwisko').value = n;
	document.getElementById('email').value = e;
	document.getElementById('uwagi').value = u;
	//skasuj
	opener.document.getElementById('nazwisko').value = "";
	opener.document.getElementById('email').value = "";
	opener.document.getElementById('uwagi').value = "";
}
