/* Check if they entered a street name */	
	function CheckProperty(tbthis) {
		if (HasValue(tbthis.StreetName)) { 
			return true; }
		else 	{
			tbOnError('Street Name Must Be Entered')
			}
		return false;		}

/* Checks if there is a value */	
	function HasValue(obj) {
		if (obj.value.length == 0)
			return false;
		else
			return true;
						}	