<% ' Browser Detection code snippet ---------------------------------- Response.Buffer="true" Dim Browser Browser = Request.ServerVariables("HTTP_USER_AGENT") If (InStr(Browser, "MSIE")) Then Response.Redirect("consumer_site/style1/DW3_style1_consumer_home_dhtml.htm") Else Response.Redirect("consumer_site/style1/DW3_style1_the_art_of_freshness.htm") End If ' -------------------------------------------------------------------- %>