	function soNumeros(e) {
		var tecla;
		if (e.keyCode) { // IE
			tecla = e.keyCode;
		}
		else if (e.which) { // Firefox
			tecla = e.which;
		}
		else { // Sei lá! :P
			return false;
		}
		var retorno = true;
		if( tecla < 48 || tecla > 57) retorno = false; // Demais Caracteres
		if(tecla == 8 || tecla == 9 || tecla == 46) retorno = true; // BackSpace & DEL & TAB
		//return !(tecla < 48 || tecla > 57); // Somente Números
		return retorno;
	}
