// JavaScript showhide
	function exibeoculta (div) {
	troca = document.getElementById(div);
		if (troca.className=="exibe") { troca.className="oculta"; }
			else { troca.className="exibe"; }
	}