I am trying to use a select case in an ASP page and am having problems.

here is what I am trying to do

select case bh.fullversion
case 3
Response.Write "browser is old and junky, you get the dumbed down version of our otherwise kickass site"
case 4
Response.Write "you got a good enough browser so now we check other things.....hang on..."
case else
Response.Write "Bummer"
end select


If I try and put in something like this..

case < 4

I get an error from the less than sign.

I need to say something like

if < 4 and (something else) then
do something.

I would like to use select case statment but can't seem to get it to work.
basicly I can't get it to accept the greater than or less then sign.

any help???
thanks