%[@ IncludeFile "Code/Util.vbs" ]%>
<%[@ IncludeFile "Code/Lang.vbs" ]%>
<%[
' The following prevents the page to be generated if the name is empty or the individual is excluded from the report.
' This is achieved simply by checking if the Href is empty
If (i.Href = "") Then
Report.AbortPage
End If
strName = i.Name
strTitle = Util.JavaScriptEncode(strName)
Report.TagBr = "
" & vbCRLF ' For debugging, but it does not harm to re-define the
tag
InitGlobalVariables
fPrivate = isPrivate(i)
fPrivateFolder = Eval(Left(Report.FileOutput,g_nPrivateFolder)=g_strPrivateFolder)
If (fPrivate <> fPrivateFolder) Then Report.AbortPage
]%>