Is this the procedure in this thread thread183-705409?
If you want to simulate passing NULL values to the procedure, you can do it like this:
CREATE PROC TestProc
@Param1 VARCHAR(20),
@Param2 VARCHAR(20)
AS
IF (@Param1 = '')
SET @Param1 = NULL
IF (@Param2 = '')
SET @Param2 = NULL
then go on about the rest of your business...
-dave