function show_hide (elemento) {
	if ('indique' != elemento) {
		$("#indique").hide('fast');
	}
	if ('simular_frete' != elemento) {
		$("#simular_frete").hide('fast');
	}
	if (document.getElementById(elemento).style.display == "none") {
		$("#"+elemento).show('fast');
	} else {
		$("#"+elemento).hide('fast');
	}
}
function limpa_string(S) {
	var Digitos = "0123456789";
	var temp = "";
	var digito = "";
	for (var i=0; i<S.length; i++) {
		digito = S.charAt(i);
		if (Digitos.indexOf(digito)>=0) {
			temp=temp+digito
		}
	}
	return temp
}


function validar_num(campo) {
	nome=campo.name
	num = limpa_string(campo.value);
	campo.value = num;
}
