Navigate Address Book

If I have the unique person ID of an entry in Address Book how do I get Address Book to bring up that entry with AppleScript? Is it possible?

Try something like this.

tell application "Address Book"
	activate
	set selection to person id "A unique person ID"
end tell