function mostra(nomediv,stadiv){
	if (stadiv==1){
		document.getElementById(nomediv).style.display="block"
	}
	else{
		document.getElementById(nomediv).style.display="none"
	}	
}

function cor(tpdiv,estado){
	divcerta = "bot" + tpdiv
	simpdiv = document.getElementById(divcerta)
	if (estado==1){
		simpdiv.style.backgroundColor="#0282c1";
	}
	else{
		simpdiv.style.backgroundColor="#23a5dc"
	}
}