Lorem Ipsum is simply dummy text of the printing and typesetting industry. ... w
function isNumber(evt) { evt = (evt) ? evt : window.event; var charCode = (evt.which) ? evt.which : evt.keyCode; if (charCode > 31 && (charCode < 48 || charCode > 57)) { return false; } return true; }
Lorem Ipsum is simply dummy text of the printing and typesetting industry. ... w
