

function Enviar() {


	// CAMPO NOME
	if (document.form_depoimentos.nome.value=="") {
		document.form_depoimentos.nome.focus();
		alert("Por favor, preencha o campo Nome!");
		return;
	}

	// CAMPO TÍTULO
	if (document.form_depoimentos.titulo.value=="") {
		document.form_depoimentos.titulo.focus();
		alert("Por favor, preencha o campo Título!");
		return;
	}
	
	// CAMPO NOME
	if (document.form_depoimentos.depoimento.value=="") {
		document.form_depoimentos.depoimento.focus();
		alert("Por favor, preencha o campo Depoimento!");
		return;
	}	

// PARA BOTAO ENTRAR
	document.form_depoimentos.submit();
}
//-->
