//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;
var n = "";
var e = "";
var u = "";
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;

if (document.getElementById('email'))
var e='&email='+document.getElementById('email').value;

if (document.getElementById('uwagi'))
var u='&uwagi='+document.getElementById('uwagi').value;

window.open('window.php?'+link+n+e+u, 'qumak' ,'left=280, top=20, width='+width+' , height='+height+', menubar=0, resizable=1, scrollbars=1');
}

//nowe okno dowolne
function new_window(link, width, height)
{
	var link;
	var width;
	var height;
	if (!width) width = 800;
	if (!height) height = 600;
	var left   = (screen.width  - width)/2;
	var top    = (screen.height - height)/2
	window.open(link, 'qumak' ,'left='+left+', top='+top+', 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"
}

/* strona główna - pokaz grafike wybranego dzialu */
function show_graph(id)
{
	for (i=0; i<=4; i++)
	{
		document.getElementById('graf'+i).style.display="none";
		document.getElementById('info'+i).style.display="none";
	}
	//głowna grafika
	g = document.getElementById('graf'+id);
	g.style.display = "block";
	//info po prawej
	inf = document.getElementById('info'+id);
	inf.style.display = "block";
	//tlo po bokach
	l = document.getElementById("left");
	r = document.getElementById("right");

	l.className="left"+id;
	r.className="right"+id;
}

//pokazuje wybrany div z mapa google
function map(id)
{
	e = document.getElementById(id);
	for (i=1; i<=3; i++)
	{
		if (id!=i) document.getElementById('mapa'+i).style.display = "none";
		else document.getElementById('mapa'+i).style.display = "block";

	}
}

