I want to use a case or an if statement to launch IE to a certain website if the user is from a certain state.

I was trying to put together a case statement that went something like this but it is in the wrong format and I'm not sure it is possible to do this with case:

VB Code:
  1. Select Case strState
  2.  
  3. Case AK or AL or AR
  4.     'Do Stuff
  5.  
  6. Case WA or WY or WV
  7.     'Do Stuff

Is this possible to make the case a list of values like this or should I be using if statements?