<%
Option Explicit
Dim BC
set BC = server.createobject("MSWC.BrowserType")
If BC.Tables = "True" and BC.Frames = "True" then
  Response.Redirect "./full/index.asp"
ElseIf BC.Tables = "True" then
  Response.Redirect "./noframes/index.asp"
Else
  Response.Redirect "./none/index.asp"
End If
%>
