<!--
// apply this onkeyup or onkeypress slightly different result in each case
// good for fixing length of textarea fields
// could be used in conjunction with size information
function imposeMaxLength(Object, MaxLen){
	var len = Object.value.length;
	if ( len > MaxLen ){
		Object.value = Object.value.substring(0,MaxLen);
		len = Object.value.length;
		Object.focus();
	}
	return (Object.value.length < MaxLen);
}
-->


