function pokaz_uczestnicy(id)
{
	var d = document.getElementById('uczestnicy_'+id)
	var b = document.getElementById('uczestnicy_but_'+id)
	
	if (d.style.display == 'block') {
		d.style.display = 'none'
		b.style.display = 'none'
	}
	else {
		d.style.display = 'block'
		b.style.display = 'block'
	}
}

function miasto_nieaktywne(obiekt)
{
	key = obiekt.options[obiekt.selectedIndex].value;

	if (key == 'pg' || key == 'psl' || key == 'agh') {
		location = '/nieaktywna2'
	}
}

// Validator

var validator_is_change = false;

function validator_check_change() {
	if (validator_is_change) {
		return "Formularz zawiera niezapisane dane. Czy na pewno chcesz opuścić tę stronę?";
	}
	else {
		return Null;
	}
}

function validator_set_change(status) {
	validator_is_change = status;
}

function validator_submit() {
	validator_set_change(false)
}

window.onbeforeunload = validator_check_change;
