// JavaScript Document
function formataNumero(event, tammax) {
	var tecla = event.keyCode;
	
	//   8 - Backspace
	//   9 - Tab
	//  46 - Delete
	//  48 - 0
	//  57 - 9
	//  96 - 0 Numeric Keyboard
	// 105 - 9 Numeric Keyboard
	//  37 - Left
	//  38 - Down
	//  39 - Right
	//  40 - Up
	
	if (!(tecla == 8 || tecla == 9 || tecla == 46 || tecla >= 48 && tecla <= 57 || tecla >= 96 && tecla <= 105 || tecla >= 37 && tecla <= 40)) {
		event.cancelBubble = true;
		event.returnValue = false;
		return false;
	}	
}
