function inputLenCorrect(form,msg) {
	if (!msg || !msg.length)
		var	msg	= 'Your input should contain ' + form.answer.maxLength + ' characters.';
	if (form.answer.value.length != form.answer.maxLength) {
		alert(msg);
		return false;
	} else return true;
}
