var ns6=document.getElementById&&!document.all
isIE = (navigator.userAgent.indexOf("MSIE") > -1);
digitos = 1;

function Numeros(campo, evento){
	lastkey = campo.value.charAt(campo.value.length-1);
	
	if (isIE){
		tecla = evento.keyCode;
	} else {
		tecla = evento.which;
	}
	
	permitidos = "0123456789";
	if (permitidos.indexOf(String.fromCharCode(tecla)) == -1){
		return false;
	} else if (String.fromCharCode(tecla) == " "){
		return false;
	}
	
}
