function validaDadosComment( TForm ){
	if( TForm.comment_nome.value == "" ){
		alert( "O campo NOME é obrigatório." );
		TForm.comment_nome.focus();
		return false;
	}
	
	if( TForm.comment_email.value == "" ){
		alert( "O campo E-MAIL é obrigatório." );
		TForm.comment_email.focus();
		return false;
	}
	
	if( !valida_email( TForm.comment_email.value ) ){
		alert( "O campo E-MAIL precisa ser preenchido corretamente." );
		TForm.comment_email.focus();
		return false;
	}
	if( TForm.comment_comment.value == "" ){
		alert( "O campo COMENTÁRIO é obrigatório." );
		TForm.comment_comment.focus();
		return false;
	}
	alert( "Sua mensagem foi enviada com sucesso.\n\n Obrigado.!" );
	return true;
}