<!--
function textCounter(field, counterHolder, maxlimit) {
	if (field.value.length > maxlimit){		
		// if too many characters are in the field remove the excess!
		field.value = field.value.substring(0, maxlimit);
	} else {
		// if the user has characters remaining update the counter to show how many.
		document.getElementById(counterHolder).innerHTML = maxlimit - field.value.length;
	}
}
-->
