<!--

function submitform_znajdz(whattoreset,clearnazwisko) {
	// reset options each time the submit is ran
	if (whattoreset == "reset_all") {
		//alert('resetting all');
		//alert(document.znajdz.miasto_sel.options[0].value);
		
		// reset miasta
		document.znajdz.miasto_sel.options[0].selected=true;
		document.znajdz.miasto_sel.options[0].value = "";
		
		//reset kategoria
		document.znajdz.kategoria_spec_sel.options[0].selected=true;
		document.znajdz.kategoria_spec_sel.options[0].value = "";
	}
	if (whattoreset == "reset_kategoria") {
		//Alert('resetting kategoria only');
		
		//reset kategoria
		document.znajdz.kategoria_spec_sel.options[0].selected=true;
		document.znajdz.kategoria_spec_sel.options[0].value = "";
		
	}

	//reset nazwisko when people select stuff from pulldowns
	if (clearnazwisko == "clear_nazwisko") {
		document.znajdz.nazwisko.value = "";
	}

	// submit form	
	document.znajdz.submit();	
	
}





function popup(URL) {
	width = 500;
	height = 400;
	indenttop = (screen.height - height) / 2;
     	indentleft = (screen.width - width) / 2;

        var popwin = window.open(URL,"popwin","width=" + width + ",height=" + height + ",top=" + indenttop + ",left=" + indentleft + ",scrollbars=no");
        popwin.focus();
        
        
}




// -->

