function validEntry(theVal) {
	if (theVal.length < 1) {
		return false;
	}
	return true;
}
