function textCounter(field,count) {
	if (field.value.length > count)
		field.value = field.value.substring(0, count);
	}