
/* Used by MissouriState.WebServices.Controls.TextBox */
function UpdateCharsRemaining(FormObject, MaxLength)
{
	document.getElementById(FormObject.id + "CharCount").innerHTML = (MaxLength - FormObject.value.length);
}

/* Used by MissouriState.WebServices.Controls.ValidInputValidator */
function ValidateInput(val)
{
    var value = ValidatorTrim(ValidatorGetValue(val.controltovalidate));

    return !value.match(/<[a-z]|<!|&#|\Won[a-z]*\s*=|(script\s*:)|expression\(/);
}