function textbox_check_len(ff, fd, tml) { if (ff.value.length > tml) { ff.value = ff.value.substring(0, tml); } else { document.getElementById(fd).innerHTML = tml - ff.value.length; } }