// Muda automaticamente o campo
function mudaCampo (campo,tam,proximo) {
	tamanho = campo.value.length;
	if (tamanho == tam)
		proximo.focus();
}

