﻿function isMaxLength(txtBox) {
    if (txtBox) {
        return (txtBox.value.length <= 256);
    }
}