Found it! Maybe you can glean something useful from this. Names have been changed to protect the innocent:
CREATE PROCEDURE usp_MailingEntries
@Date nvarchar(20) = '%',
@First nvarchar(20) = '%',
@Last nvarchar(25) = '%'
AS
SELECT PersonID, FirstName, LastName, Address1, City, StateAbbrev, Zip...