%@ Language=VBScript %>
<% Response.Buffer = True
'edit next line - list users allowed to access/view this page (is not case sensitive)
PageAccessRestrictedTo = "premier, gold, admin"
If InStr(PageAccessRestrictedTo, Session("UserClass")) < 1 then
Response.Redirect "http://www.time4english.com/index.htm"
End If
%>