﻿// JScript File

function imposeMaxLength(Object, MaxLen)
{
  return (Object.value.length <= MaxLen - 1);
}

function increaseTextBoxHeight(Object)
{
    Object.style.height = Object.scrollHeight;
  return true;
}


