	function SetZip(tText)
	{
		if (tText != '') 
			if (document.RegisterInfo)
				if (document.RegisterInfo.RVZipcode)
				{
					if (tText.substr(0,1)=='!')
						document.RegisterInfo.RVZipcode.value = tText.slice(1);
					if (tText.substr(0,1)=='?')
						alert('Unable to verify address and locate Zip Code. \nPlease check address and try again.')
					if (tText.substr(0,1)=='&')
						alert('Unable to verify address and locate Zip Code. \n Street Name and/or Street Number could be empty.')
				}
				else
				{
					//document.all['geocode_result'].innerHTML = 'Address not Found!';
					document.RegisterInfo.RVZipcode.value='Address not Found!';
				}
	
	}