function validaForm(){
	var retVal = true;
	
	if(document.frm_fale.nome.value == ""){
		alert("O campo Nome precisa ser preenchido.");
		document.frm_fale.nome.focus();
		retVal = false;
	}

	if(retVal && document.frm_fale.email.value == ""){
		alert("O campo E-mail precisa ser preenchido.");
		document.frm_fale.email.focus();
		retVal = false;
	}
	
	if ( retVal && !isEmail( document.frm_fale.email.value )) {
		alert( "O E-mail informado não é valido." );
		document.frm_fale.email.focus();
		retVal = false;
	}
	
	if(retVal && document.frm_fale.comentario.value == ""){
		alert("O campo Comentário precisa ser preenchido.");
		document.frm_fale.comentario.focus();
		retVal = false;
	}
	
	return retVal;
}