function wybranaMiejscowosc(miejscowosc){
	document.getElementById('miasto').value=miejscowosc;
	document.getElementById('miasto').form.submit();
	//document.getElementById('podaj_miejscowosc').submit();
	
}
function laduje(){
	document.getElementById("woj").style.display = 'none';
	document.getElementById("optionss").style.display = 'block';
	document.getElementById("wczytuje_miasta").innerHTML = 'wczytuje miasta...'.fontcolor("white");
}
function Wstecz(){
	document.getElementById('woj').style.display = 'block';
	document.getElementById("wczytuje_miasta").innerHTML = '<select id="optionss"></select>';
	document.getElementById("optionss").style.display = 'none';
}
function Reklama(){
    var w = 800;
    var h = 600;
    var left = (screen.width/2)-(w/2);
    var top = (screen.height/2)-(h/2);
    window.open('http://noweoblicze.pl/reklama.php', 'reklama', 'width=800px, height=600px,status=yes,toolbar=no,menubar=no,location=no, left='+left+', top='+top+'');
}
function duzeZdjecie(zrodlo){
	var zdj = new Image();
	zdj.src = zrodlo;
	if (zdj.complete)
		window.open(zrodlo, 'zoom', 'width='+zdj.width+'px, height='+zdj.height+'px, status=yes, toolbar=no, menubar=no, location=no');
	else setTimeout("duzeZdjecie('"+zrodlo+"')", 1000);
}
function dopasujRozmiar(){
	var w;
	if (navigator.appName=="Microsoft Internet Explorer")
		w = document.body.offsetWidth;
	else
		w = window.innerWidth;
	if (w<900){
		document.getElementById('logo').width = 250+'px';
		document.getElementById('main').style.width = 700+'px';
		document.getElementById('monit').style.width = 600+'px';
	}
}
