<!--
function digita_num(evento){
	var tecla = (evento.keyCode ? evento.keyCode: evento.which ? evento.which : evento.charCode)
	if (((tecla < 48) || (tecla > 57)) && (tecla != 8)){
		evento.returnValue = false; 
		return false;
	}
	return true;
}
//-->