function ProximoCampo(valor, tam, novoCampo, teclaPres)
{
	var tecla = (navigator.appName == 'Microsoft Internet Explorer') ? teclaPres.keyCode : teclaPres.which;
	
	if((tecla > 47 && tecla < 58) || (tecla > 95 && tecla < 106))
		if(valor.length == tam)
			novoCampo.focus();
}