0)
{
alert("Please do not enter any type of SCRIPT tags in the question field.");
me.SP.caseBody.focus();
return false;
}
}
// Check for length > 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();
}
}

