	function validAddr(theAddr) {
		if (theAddr.length < 3) {
			return false;
		}
		return true;
	}