/*  This script will put address into the address book */

address 'ontheball'
options results

address=''
done=FALSE

do while done=FALSE
	parse pull address
	if address='' then done=TRUE
	else do
		say AddAddress address
		'AddAddress'address
	end
end
