<% If InStr(request.servervariables("http_referer"), "typingmaster.com") Then url = Request.QueryString("go") If isNull(url) Or isEmpty(url) Then url = "www.typingmaster.com" End If pos = InStr(url, "http://") If pos <> 1 Then url = "http://" + url End If Else url = "http://www.typingmaster.com/" End If 'redirect Response.Status = "301 Moved Permanently" Response.addheader "Location", url Response.End %>