function textLimit(field, maxlen) {
if (field.value.length > maxlen) {
field.value = field.value.substring(0, maxlen);
alert("Sorry, you have exceeded the limit in this text body.\n\nTry to keep your questions and/or comments to 100 words or less.  Thank You.."); 
} }