﻿//Ignores Keystrokes if Max Length of the TextBox has been reached
function ControlMaxLength(txtBox, MaxLength) {
 if(txtBox) {
     return (txtBox.value.length < MaxLength);
    }
}
