window.addEvent('domready', function(){ new SmoothScroll({duration: 700, transition: Fx.Transitions.expoOut}); });

function zmien()
{
	$('miasto').selectedIndex = 0;
	$('rodzaj').selectedIndex = 0;
	$('miasto').disabled = 'disabled';
	$('rodzaj').disabled = 'disabled';
	$('miasto').addClass('disabled');
	$('rodzaj').addClass('disabled');

	if ($('region').value) {
		var box = $('miasto');
		box.selectedIndex = 0;

		new Ajax('ajax.php',{ postBody:'region='+$('region').value, onComplete: function(opcje) {
			box.options.length=0;
			opcje = Json.evaluate(opcje);
			opcje.c.each(function(c) { box.options[box.length] = new Option(c.name,c.id); });
			$('miasto').disabled = '';
			$('rodzaj').disabled = '';
			$('miasto').removeClass('disabled');
			$('rodzaj').removeClass('disabled');
		}}).request();
	}
}

function sprawdz()
{
	if ($('miasto').value == '' && $('region').value == '' && $('rodzaj').value == '') {
		alert('Nie sprecyzowano zapytania');
		return false;
	}
}

function showMap(id,typ)
{
	var o = window.open("mapa.php?id="+id+"&type="+typ,"Mapa",'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=no,width=640,height=480,left=10, top=10,screenX=10,screenY=10');
	o.focus();
}

function showLocation(x,y,z,n)
{
	var o = window.open("mapa2.php?x="+x+"&y="+y+"&z="+z+"&n="+encodeURI(n),"Mapa",'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=no,width=640,height=480,left=10, top=10,screenX=10,screenY=10');
	o.focus();
}