% Option Explicit
'###########################################################
'## COPYRIGHT (C) 2002-2005, Brinkster Site Statistics Corp.
'##
'## For licensing details, lease read the license.txt file
'## included with MetaTraffic or located at:
'## http://www.metasun.com/products/metatraffic/license.asp
'##
'## All copyright notices regarding MetaTraffic
'## must remain intact in the scripts and in the
'## outputted HTML. All text and logos with
'## references to Metasun or MetaTraffic must
'## remain visible when the pages are viewed on
'## the internet or intranet.
'##
'## For support, please visit http://www.metasun.com
'## and use the support forum.
'###########################################################
%>
<%
Server.ScriptTimeout = 9000
Dim intSetting : intSetting = Request.Querystring("s")
Dim objConfig : Set objConfig = New MTConfig
With objConfig
.Database = aryMTDB
.Setting = intSetting
.Config = aryMTConfig
End With
Call CreateDatabaseConnection(1)
Dim blnAdmin : blnAdmin = Authenticate(True, aryMTDB(5))
%>