function envia_dados() {
    tf = document.forms["participe"];

	nome = tf.Nome.value;
	socio	= tf.Numero_Socio.value;
	email	= tf.Email.value;
	sug	= tf.Sugestao.value;

	if (nome == "") {
	    alert("O campo Nome é de preenchimento obrogatório.");
		return;
	}

	if (socio == "") {
	    alert("O Número de Sócio é de preenchimento obrigatório.");
		return;
	}

	if (sug == "") {
	    alert("Falta sugerir o nome do boletim.");
		return;
	}

	texto = "Nome : " + nome + "%0ANúmero de sócio: "+ socio + " %0AEmail : " + email + "%0A%0ASugestão: " + sug;
	tf.action = tf.action + "?subject=Sugerir nome para o Boletim&body=" + texto;
	tf.submit();
}

function muda_boletim() {
	tf = document.forms["boletim"].numero;
	
	pg = parseInt( tf.options[tf.selectedIndex].value );
	
	if ( pg > 0 ) {
		self.document.location = "../boletim" + pg + "/default.htm"; 	    
	}
}