<!--
function validateMaxTextAreaLength(source, arguments)
   {
      if(arguments.Value.length<=source.attributes("MaxLength").value)
         arguments.IsValid=true;
      else
         arguments.IsValid=false;
   }
//-->