







//<!--

function checkStringLimit(sTheString, iTheLimit, sEingabefeldName)
{
	if(sTheString.length > iTheLimit)
	{
		alert("???js_stringfunctions_error1_1??? " + iTheLimit + " ???js_stringfunctions_error1_2??? '" + sEingabefeldName + "' ???js_stringfunctions_error1_3???");
		return false;
	}
	
	return true;
}

//-->
