function alternadistrito(){
	if (document.getElementById('todos').checked == true){	
		document.getElementById('distrito1').selectedIndex=0;
		document.getElementById('distrito2').selectedIndex=0;
		document.getElementById('distrito3').selectedIndex=0;
		document.getElementById('distrito1').disabled=true;
		document.getElementById('distrito2').disabled=true;
		document.getElementById('distrito3').disabled=true;
	} else {
		document.getElementById('distrito1').disabled=false;
		document.getElementById('distrito2').disabled=false;
		document.getElementById('distrito3').disabled=false;
	}
}
function verdein(linha){
	document.getElementById('linha'+linha).style.backgroundColor='#CAFFCA';
	document.getElementById('linhab'+linha).style.backgroundColor='#CAFFCA';
	document.getElementById('linhac'+linha).style.backgroundColor='#CAFFCA';
}
function verdeout(linha){
	document.getElementById('linha'+linha).style.backgroundColor='#FFFFFF';
	document.getElementById('linhab'+linha).style.backgroundColor='#FFFFFF';
	document.getElementById('linhac'+linha).style.backgroundColor='#FFFFFF';
}
function vermelhoin(linha){
	document.getElementById('linha'+linha).style.backgroundColor='#FFDFDF';
	document.getElementById('linhab'+linha).style.backgroundColor='#FFDFDF';
	document.getElementById('linhac'+linha).style.backgroundColor='#FFDFDF';
}
function vermelhoout(linha){
	document.getElementById('linha'+linha).style.backgroundColor='#FFFFFF';
	document.getElementById('linhab'+linha).style.backgroundColor='#FFFFFF';
	document.getElementById('linhac'+linha).style.backgroundColor='#FFFFFF';
}


