﻿
// JScript File

function solonumeros(evt) {
        var tecla = (window.event) ? window.event.keyCode : evt.which;  
        if (tecla==8 || (tecla==13) ) return true;
        var patron = /\d/;
        return patron.test(String.fromCharCode(tecla));
}

