function textoVazio (valor) {
	if (valor.replace(/\s*/, '') == '') {
		return true;
	} else {
		return false;
	}
}