  function isNumberKey(evt)
      {
         var charCode = (evt.which) ? evt.which : event.keyCode
         if (charCode > 31 && (charCode < 48 || charCode > 57)){
		
            alert ('Alphabets and special characters will not be allowed');
			return false;
			}
			
			
			return true;
      }