<% ' ##TEMPTYPE##Active Server Page; ' ' this is asp script that runs on the server when the page is requested ' Dim SvrVarCollection Set SvrVarCollection = Request.ServerVariables Dim ua, os Dim AnyIE, AnyNetscape '''''''''''''''''''' ' Server Variables ' '''''''''''''''''''' ua = SvrVarCollection("HTTP_USER_AGENT") os = SvrVarCollection("HTTP_UA_OS") ''''''''''''''''''''''''' ' Determine the Browser ' ''''''''''''''''''''''''' AnyIE = False AnyNetscape = False If Instr(ua, "MSIE") Then AnyIE = True ElseIf Instr(ua, "Mozilla") And Instr(ua, "compatible") = 0 Then AnyNetscape = True End If '''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Check for the Mac and change to Netscape in this case' '''''''''''''''''''''''''''''''''''''''''''''''''''''''' If InStr(ua, "Mac") Then If InStr(ua, "PowerPC") Or InStr(ua, "PPC") Then AnyNetscape = True AnyIE = False End If End If %> ##Title##

<%if AnyIE then%> <%elseif AnyNetscape then%> <% end if %>