2000 in case they PASTED into field.
var theString = me.SP.caseBody.value;
if (theString.length > 2000) {
alert("You have reached the maximum number of characters for the question field.");
return false;
}
return true;
}
function submitCase(){
if(formValidation())
{
document.SP.submit();
}
}