the first few lines of my asp page are thus


VB Code:
  1. <%
  2. Function MakeLink(LvLink)
  3. Dim ResultIs
  4. dim MeUrl
  5. ' Where are we?
  6.     MeUrl = Request.ServerVariables("url")
  7.     ResultIs = "<a Href='" & MeUrl & "?Lv=" & LvLink & "'>" & LvLink & "</a>"
  8.     MakeLink = ResultIs
  9. End Function
  10. %>


it produces this:


Microsoft VBScript runtime error '800a01a8'

Object required: ''

/thehat/test/dev1/Zcon.asp, line 9


but I can not see what is wrong... anyone have an idea?