<% bigurl = "bigscreen.htm" smallurl = "smallscreen.htm" A = LCase(Request.ServerVariables("HTTP_USER_AGENT")) if instr(A,"msie 5")>0 or instr(A,"msie 4")>0 then %>
<% elseif instr(A,"msie 3")>0 then
smallurl = "smallscreen.htm" bigurl = "bigscreen.htm" a = request("http_ua_pixels") url = smallurl if instr(a,"x")>0 then a = split(a,"x") if clng(a(0)) >= 650 then url = bigurl end if end if response.redirect(url)