You could use JavaScript to check the number of characters in the textarea.
var1 = form1.textarea1.value;
if (var1.length > 140) {
do this
}
else{
do that
}
Norman
> I'm looking for any ideas about how to limit the
> amount of input that can be placed in a textarea
> field.
>