function Recipient(email, firstName, lastName)
{
	this.email = email;
	this.firstName = firstName;
	this.lastName = lastName;
	
	if (typeof(_recipient_prototype_called) == 'undefined')
	{
 		Recipient.prototype.toString = toString;
	}
	
	function toString(includeCount, useFullState)
	{
		var string = "&lt;" + this.email + "&gt;";
		if (this.lastName.length > 0) string = this.lastName + " " + string;
		if (this.firstName.length > 0) string = this.firstName + " " + string;
		return string;
	}
}