Edit:
Injection concerns aside, take care to note that constructing the command text to accomodate a variable number of parameters (as above) impede's SQL server's ability to take advantage of cached queries. The net result is that you almost certainly loose the value of using parameters in the first place (as opposed to merely inserting the predicate strings into the SQL itself).
Not that cached query plans aren't valuable, but IMO this query isn't nearly complicated enough to see much benefit from it. While the compilation costs may approach (or even exceed) the execution costs, you're still talking milliseconds.
If you have enough RAM, I'd expect MSSQL would probably cache a plan for the common counts of parameters as well. I suppose you could always add 5 parameters, and let the unspecified tags be NULL - the query plan should be the same, but it seems pretty ugly to me andI'm not sure that it'd worth the micro-optimization (although, on SO - it may very well be worth it).
Also, MSSQL 7+ will auto-parameterize queries, so using parameters isn't really necessary from a performance standpoint - it is, however, critical from a security standpoint - esp. with user inputted data like this.
