//Impose MaxLength to textareas
//added by RXM on 9/30/3008
//Object - textarea object (use <<this>> when calling the function)
//MaxLen - int, maximum length in characters

function imposeMaxLength(Object, MaxLen)
{
  return (Object.value.length <= MaxLen);
}
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
