<%
// Loop through all the topics
for nCurTopic := 0 to length(aTopicList) - 1 do
begin
// Notify about the topic being generated
HndGeneratorInfo.CurrentTopic := aTopicList[nCurTopic].id;
// Add an anchor to be able to link to that topic
printf('', [aTopicList[nCurTopic].helpid]);
// Get the topic level
nTopicLevel := HndTopics.GetTopicLevel(HndGeneratorInfo.CurrentTopic);
// Add the topic title
printf('%s ', [nTopicLevel, HndTopics.GetTopicHeaderTextCalculated(HndGeneratorInfo.CurrentTopic), nTopicLevel]);
// Output the topic content
print(HndTopics.GetTopicContentAsHtml(HndGeneratorInfo.CurrentTopic));
end;
%>
<% print(HTMLEncode(HndProjects.GetProjectCopyright())); %>