﻿// function to gain maxlength ability on textarea's
function imposeMaxLength(Object, MaxLen)
{
  return (Object.value.length <= MaxLen);
}
