% ' If country setting is blank then set default country to US, otherwise get country selection if request("country") <> "" then if (session("country") = "") then session("country") = "CA" else session("country") = request("country") end if ' If country is set to something other than US or CA then override and set country to default CA if session("country") <> "US" and session("country") <> "CA" then session("country") = "CA" %>