// JavaScript Document
function imposeMaxLength(Object, MaxLen)
{
  return (Object.value.length < MaxLen);
}
