function check_participantes(check_turma, turma_id) {
	if (check_turma.checked) {
		document.getElementById("participantesTurma[" + turma_id + "]").disabled = "";
	}
	else {
		document.getElementById("participantesTurma[" + turma_id + "]").disabled = "disabled";
	}
}

function mostraPeriodo(periodo_id) {
	var tabela;
	var spanPeriodo;

	tabela = document.getElementById ("tabelaPeriodo" + periodo_id);
	imagem = document.getElementById ("imgPeriodo" + periodo_id);
	spanPeriodo = document.getElementById ("spanPeriodo" + periodo_id);


	if (tabela.style.display == "none") {
		tabela.style.display = "";
		imagem.src = "../img/minus.gif";
		imagem.alt = "-";
		try {
			spanPeriodo.style.display = "none";
		} catch (e) {}
	}
	else {
		tabela.style.display = "none";
		imagem.src = "../img/plus.gif";
		imagem.alt = "+";
	}
}