/* ------------------------------------------------------------------ */

function textInputFocus(inputObj) {
	if (inputObj.value == inputObj.defaultValue) {
		inputObj.value = "";
	}
}

function textInputBlur(inputObj) {
	if (inputObj.value == "") {
		inputObj.value = inputObj.defaultValue;
	}
}

function passwordInputFocus(passObj) {
	textInputFocus(passObj);
	passObj.type = "password";
}

function passwordInputBlur(passObj) {
	if (passObj.value == "") {
		passObj.type = "text";
		passObj.value = passObj.defaultValue;
	}
}

function searchSubmit(formObj) {
	var searchName = document.getElementById("searchName").value;
	var searchProvince = document.getElementById("searchProvince").value;
	var searchTown = document.getElementById("searchTown").value;
	var result;
	if (!(searchName || searchProvince || searchTown)) {
		alert("Nie podano kryteriow wyszukiwania");
		result = false;
	}
	else {
		formObj.action = document.getElementById("searchCategory").value;
		result = true;
	}
	return result;
}

function showHide(divId) {
	divObj = document.getElementById(divId);
	divObj.style.display = (divObj.style.display == "none" ? "" : "none");
}