No, not exactly. TOP sucks compared to LIMIT. You want it for paging, like I did?
If you have sql server 2005, you can do this sort of hack like I had to.
select * from (
SELECT TOP 100 PERCENT ROW_NUMBER() OVER (ORDER BY myTimestampField DESC) AS ROWNUMBER,
field1, field2, blah
from myTable ) AS TBL
where ROWNUMBER between 10 and 20