function habilitado(id){
    edit = document.getElementById(id);
    edit.style.background = 'lightsteelblue';	
}
function desabilitado(id){
    edit = document.getElementById(id);
    edit.style.background = "#FFFFFF";
	if (id != 'txbEmail')
	{
		edit.value = edit.value.toUpperCase();//converte para maiuscula
	}
}
