Thanks For The Replies, here is the entire track_user.asp script
<%
Dim strRefer
Dim strRemoteIP
Dim strDate
DIm strTime
Dim strBrowser
Dim strOS
Dim strPage
Dim strExt
Dim trkSQL
Dim dbTrack
strRefer = Request.ServerVariables("HTTP_REFERER"

strRemoteIP = Request.ServerVariables("REMOTE_ADDR"

strDate = Date()
strTime = Time()
strBrowser = Get_BrowserType
strOS = Get_OSBrand
strPage = Request.ServerVariables("SCRIPT_NAME"

strExt = Request.ServerVariables("QUERY_STRING"
If strRefer = "" Then strRefer = "Empty"
trkSQL = "INSERT INTO viewTrack (viewIP, viewDate, viewTime, viewPage, viewPageExt, viewBrowser, viewOS, viewRefer) " & _
"VALUES ('" & strRemoteIP & "', '" & strDate & "', '" & strTime & "', '" & strPage & "', " & _
"'" & strExt & "', '" & strBrowser & "', '" & strOS & "', '" & strRefer & "')"
Set dbTrack = DB_OpenConnection
'On Error Resume Next
dbTrack.Execute(trkSQL)
dbTrack.Close
Set dbTrack = Nothing
'If err.number <> 0 Then
' Dim strErrNum
' Dim strErrDesc
'
' strErrNum = err.number
' strErrDesc = err.description
' strErrorLog = strErrNum & ", " & strErrDesc & ", " & strDate & ", " & strTime & ", " & strBrowser & _
' ", " & strOS & ", " & strRefer & ", " & strRemoteIP & ", " & strPage & ", " & strExt
' Call Log_Error("Tracking", strErrorLog)
'End If
Function Get_BrowserType()
Dim strBrowser
strBrowser = Request.ServerVariables("HTTP_USER_AGENT"

If InStr(strBrowser, "MSIE"

Then
strBrowser = "MSIEv" & CInt(Mid(strBrowser, InStr(strBrowser, "MSIE"

+ 5, 1))
ElseIf InStr(strBrowser, "Mozilla"

Then
If InStr(strBrowser, "compatible"

= 0 AND InStr(strBrowser, "Opera"

= 0 Then
strBrowser = "Netscape"
Else
strBrowser = "Netscape Compatible"
End If
Else
strBrowser = "Unknown"
End If
Get_BrowserType = strBrowser
End Function
Function Get_OSBrand()
Dim strOS
strOS = Request.ServerVariables("HTTP_USER_AGENT"

If InStr(strOS, "Win"

= 0 Then
strOS = "Non-MS"
Else
strOS = "MS"
End If
Get_OSBrand = strOS
End Function
'Function To Establish an Open Database Connection Object
Function DB_OpenConnection()
Dim objDB
Dim strDBString
Dim strDBFile
Dim strUser
Dim strPass
strDBFile = "c:\Inetpub\
strDBString = "DRIVER={Microsoft Access Driver (*.mdb)}; "
strDBString = strDBString & "DBQ=" & strDBFile
Set objDB = Server.CreateObject("ADODB.Connection"

objDB.Open strDBString, "Admin", "pitfall"
Set DB_OpenConnection = objDB
End Function
%>