function CheckLength(obj,Length){ if (obj.value.length>Length) { alert("Exceeding Maximum " + Length +" Characters") obj.focus() obj.select() }}
Login to post response