<!-- Tag to check textarea field length -->
function errTextLength (thetext, fieldLabel, thesize, showalert) {
var errorStr = "";
	if (thetext.value.length > thesize) {
		errorStr = fieldLabel + " maximum length is " + thesize + "\n";
		if (showalert == true)
			alert(errorStr);
	}
	return errorStr;
}
