// JavaScript Document
//***********************************************
//*	Criador:		Jaime Peixe					*
//*	Data:			07/11/2007					*
//*	Funcionalidade:	Mudar o Objeto do Foco		*
//***********************************************
function mudaCampo(obj,tamanho,campo){
	try{
		if(obj.value.length == tamanho){
			document.getElementById(campo).focus();
	
			return true;
		} else {
			return false;	
		}
	} catch(e) {
		return false;	
	}
}
