function enforceMaxLength(field, maxlimit) {
    if (field.value.length > maxlimit) {
        field.value = field.value.substring(0, maxlimit);
        alert('You have exceeded the character limit for this text area.  As a result, the text has been truncated.');
    }
}