function maxchars(chars, object) {
	if(object.value.length > chars) {
		alert('Too much data in the text box. Please remove '+
		(object.value.length - chars)+ ' characters');
		return false;
	}
	else
		return true;
}
