function isNumberKey(evt)
      {
         var charCode = (evt.which) ? evt.which : event.keyCode
         if (charCode > 31 && (charCode < 48 || charCode > 57))
         	{
         		alert("Irányárnak csak számjegyek (0-9) adhatók meg!");
            	return false;
			}

         return true;
      }
