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