js/src/tests/js1_5/Regress/regress-111557.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 5
michael@0 6 /*
michael@0 7 *
michael@0 8 * Date: 26 Nov 2001
michael@0 9 * SUMMARY: JS should not crash on this code
michael@0 10 * See http://bugzilla.mozilla.org/show_bug.cgi?id=111557
michael@0 11 *
michael@0 12 */
michael@0 13 //-----------------------------------------------------------------------------
michael@0 14 var BUGNUMBER = 111557;
michael@0 15 var summary = "Just seeing that we don't crash on this code -";
michael@0 16
michael@0 17 printBugNumber(BUGNUMBER);
michael@0 18 printStatus(summary);
michael@0 19
michael@0 20
michael@0 21 /*
michael@0 22 * NOTE: have defined |top| as |this| to make this a standalone JS shell test.
michael@0 23 * This came from the HTML of a frame, where |top| would have its DOM meaning.
michael@0 24 */
michael@0 25 var top = this;
michael@0 26
michael@0 27 top.authors = new Array();
michael@0 28 top.titles = new Array();
michael@0 29 var i = 0;
michael@0 30
michael@0 31
michael@0 32 top.authors[i] = "zPROD xA.5375.";
michael@0 33 top.titles[i] = "NDS Libraries for C";
michael@0 34 i++;
michael@0 35
michael@0 36 top.authors[i] = "zFLDR xB.5375.0100.";
michael@0 37 top.titles[i] = "NDS Backup Services";
michael@0 38 i++;
michael@0 39
michael@0 40 top.authors[i] = "zFLDR xC.5375.0100.0001.";
michael@0 41 top.titles[i] = "Functions";
michael@0 42 i++;
michael@0 43
michael@0 44 top.authors[i] = "zHTML xD.5375.0100.0001.0001.";
michael@0 45 top.titles[i] = "NDSBackupServerData";
michael@0 46 i++;
michael@0 47
michael@0 48 top.authors[i] = "zHTML xD.5375.0100.0001.0002.";
michael@0 49 top.titles[i] = "NDSFreeNameList";
michael@0 50 i++;
michael@0 51
michael@0 52 top.authors[i] = "zHTML xD.5375.0100.0001.0003.";
michael@0 53 top.titles[i] = "NDSGetReplicaPartitionNames";
michael@0 54 i++;
michael@0 55
michael@0 56 top.authors[i] = "zHTML xD.5375.0100.0001.0004.";
michael@0 57 top.titles[i] = "NDSIsOnlyServerInTree";
michael@0 58 i++;
michael@0 59
michael@0 60 top.authors[i] = "zHTML xD.5375.0100.0001.0005.";
michael@0 61 top.titles[i] = "NDSSYSVolumeRecovery";
michael@0 62 i++;
michael@0 63
michael@0 64 top.authors[i] = "zHTML xD.5375.0100.0001.0006.";
michael@0 65 top.titles[i] = "NDSVerifyServerInfo";
michael@0 66 i++;
michael@0 67
michael@0 68 top.authors[i] = "zFLDR xC.5375.0100.0002.";
michael@0 69 top.titles[i] = "Structures";
michael@0 70 i++;
michael@0 71
michael@0 72 top.authors[i] = "zHTML xD.5375.0100.0002.0001.";
michael@0 73 top.titles[i] = "NAMEID_TYPE";
michael@0 74 i++;
michael@0 75
michael@0 76 top.authors[i] = "zFLDR xC.5375.0100.0003.";
michael@0 77 top.titles[i] = "Values";
michael@0 78 i++;
michael@0 79
michael@0 80 top.authors[i] = "zHTML xD.5375.0100.0003.0001.";
michael@0 81 top.titles[i] = "NDS Reason Flags";
michael@0 82 i++;
michael@0 83
michael@0 84 top.authors[i] = "zHTML xD.5375.0100.0003.0002.";
michael@0 85 top.titles[i] = "NDS Server Flags";
michael@0 86 i++;
michael@0 87
michael@0 88 top.authors[i] = "zHTML xC.5375.0100.0004.";
michael@0 89 top.titles[i] = "Revision History";
michael@0 90 i++;
michael@0 91
michael@0 92 top.authors[i] = "zFLDR xB.5375.0300.";
michael@0 93 top.titles[i] = "NDS Event Services";
michael@0 94 i++;
michael@0 95
michael@0 96 top.authors[i] = "zFLDR xC.5375.0300.0001.";
michael@0 97 top.titles[i] = "Concepts";
michael@0 98 i++;
michael@0 99
michael@0 100 top.authors[i] = "zHTML xD.5375.0300.0001.0001.";
michael@0 101 top.titles[i] = "NDS Event Introduction";
michael@0 102 i++;
michael@0 103
michael@0 104 top.authors[i] = "zHTML xD.5375.0300.0001.0002.";
michael@0 105 top.titles[i] = "NDS Event Functions";
michael@0 106 i++;
michael@0 107
michael@0 108 top.authors[i] = "zHTML xD.5375.0300.0001.0003.";
michael@0 109 top.titles[i] = "NDS Event Priorities";
michael@0 110 i++;
michael@0 111
michael@0 112 top.authors[i] = "zHTML xD.5375.0300.0001.0004.";
michael@0 113 top.titles[i] = "NDS Event Data Filtering";
michael@0 114 i++;
michael@0 115
michael@0 116 top.authors[i] = "zHTML xD.5375.0300.0001.0005.";
michael@0 117 top.titles[i] = "NDS Event Types";
michael@0 118 i++;
michael@0 119
michael@0 120 top.authors[i] = "zHTML xD.5375.0300.0001.0006.";
michael@0 121 top.titles[i] = "Global Network Monitoring";
michael@0 122 i++;
michael@0 123
michael@0 124 top.authors[i] = "zFLDR xC.5375.0300.0002.";
michael@0 125 top.titles[i] = "Tasks";
michael@0 126 i++;
michael@0 127
michael@0 128 top.authors[i] = "zHTML xD.5375.0300.0002.0001.";
michael@0 129 top.titles[i] = "Monitoring NDS Events";
michael@0 130 i++;
michael@0 131
michael@0 132 top.authors[i] = "zHTML xD.5375.0300.0002.0002.";
michael@0 133 top.titles[i] = "Registering for NDS Events";
michael@0 134 i++;
michael@0 135
michael@0 136 top.authors[i] = "zHTML xD.5375.0300.0002.0003.";
michael@0 137 top.titles[i] = "Unregistering for NDS Events";
michael@0 138 i++;
michael@0 139
michael@0 140 top.authors[i] = "zFLDR xC.5375.0300.0003.";
michael@0 141 top.titles[i] = "Functions";
michael@0 142 i++;
michael@0 143
michael@0 144 top.authors[i] = "zHTML xD.5375.0300.0003.0001.";
michael@0 145 top.titles[i] = "NWDSEConvertEntryName";
michael@0 146 i++;
michael@0 147
michael@0 148 top.authors[i] = "zHTML xD.5375.0300.0003.0002.";
michael@0 149 top.titles[i] = "NWDSEGetLocalAttrID";
michael@0 150 i++;
michael@0 151
michael@0 152 top.authors[i] = "zHTML xD.5375.0300.0003.0003.";
michael@0 153 top.titles[i] = "NWDSEGetLocalAttrName";
michael@0 154 i++;
michael@0 155
michael@0 156 top.authors[i] = "zHTML xD.5375.0300.0003.0004.";
michael@0 157 top.titles[i] = "NWDSEGetLocalClassID";
michael@0 158 i++;
michael@0 159
michael@0 160 top.authors[i] = "zHTML xD.5375.0300.0003.0005.";
michael@0 161 top.titles[i] = "NWDSEGetLocalClassName";
michael@0 162 i++;
michael@0 163
michael@0 164 top.authors[i] = "zHTML xD.5375.0300.0003.0006.";
michael@0 165 top.titles[i] = "NWDSEGetLocalEntryID";
michael@0 166 i++;
michael@0 167
michael@0 168 top.authors[i] = "zHTML xD.5375.0300.0003.0007.";
michael@0 169 top.titles[i] = "NWDSEGetLocalEntryName";
michael@0 170 i++;
michael@0 171
michael@0 172 top.authors[i] = "zHTML xD.5375.0300.0003.0008.";
michael@0 173 top.titles[i] = "NWDSERegisterForEvent";
michael@0 174 i++;
michael@0 175
michael@0 176 top.authors[i] = "zHTML xD.5375.0300.0003.0009.";
michael@0 177 top.titles[i] = "NWDSERegisterForEventWithResult";
michael@0 178 i++;
michael@0 179
michael@0 180 top.authors[i] = "zHTML xD.5375.0300.0003.0010.";
michael@0 181 top.titles[i] = "NWDSEUnRegisterForEvent";
michael@0 182 i++;
michael@0 183
michael@0 184 top.authors[i] = "zFLDR xC.5375.0300.0004.";
michael@0 185 top.titles[i] = "Structures";
michael@0 186 i++;
michael@0 187
michael@0 188 top.authors[i] = "zHTML xD.5375.0300.0004.0001.";
michael@0 189 top.titles[i] = "DSEACL";
michael@0 190 i++;
michael@0 191
michael@0 192 top.authors[i] = "zHTML xD.5375.0300.0004.0002.";
michael@0 193 top.titles[i] = "DSEBackLink";
michael@0 194 i++;
michael@0 195
michael@0 196 top.authors[i] = "zHTML xD.5375.0300.0004.0003.";
michael@0 197 top.titles[i] = "DSEBinderyObjectInfo";
michael@0 198 i++;
michael@0 199
michael@0 200 top.authors[i] = "zHTML xD.5375.0300.0004.0004.";
michael@0 201 top.titles[i] = "DSEBitString";
michael@0 202 i++;
michael@0 203
michael@0 204 top.authors[i] = "zHTML xD.5375.0300.0004.0005.";
michael@0 205 top.titles[i] = "DSEChangeConnState";
michael@0 206 i++;
michael@0 207
michael@0 208 top.authors[i] = "zHTML xD.5375.0300.0004.0006.";
michael@0 209 top.titles[i] = "DSECIList";
michael@0 210 i++;
michael@0 211
michael@0 212 top.authors[i] = "zHTML xD.5375.0300.0004.0007.";
michael@0 213 top.titles[i] = "DSEDebugInfo";
michael@0 214 i++;
michael@0 215
michael@0 216 top.authors[i] = "zHTML xD.5375.0300.0004.0008.";
michael@0 217 top.titles[i] = "DSEEmailAddress";
michael@0 218 i++;
michael@0 219
michael@0 220 top.authors[i] = "zHTML xD.5375.0300.0004.0009.";
michael@0 221 top.titles[i] = "DSEEntryInfo";
michael@0 222 i++;
michael@0 223
michael@0 224 top.authors[i] = "zHTML xD.5375.0300.0004.0010.";
michael@0 225 top.titles[i] = "DSEEntryInfo2";
michael@0 226 i++;
michael@0 227
michael@0 228 top.authors[i] = "zHTML xD.5375.0300.0004.0011.";
michael@0 229 top.titles[i] = "DSEEventData";
michael@0 230 i++;
michael@0 231
michael@0 232 top.authors[i] = "zHTML xD.5375.0300.0004.0012.";
michael@0 233 top.titles[i] = "DSEFaxNumber";
michael@0 234 i++;
michael@0 235
michael@0 236 top.authors[i] = "zHTML xD.5375.0300.0004.0013.";
michael@0 237 top.titles[i] = "DSEHold";
michael@0 238 i++;
michael@0 239
michael@0 240 top.authors[i] = "zHTML xD.5375.0300.0004.0014.";
michael@0 241 top.titles[i] = "DSEModuleState";
michael@0 242 i++;
michael@0 243
michael@0 244 top.authors[i] = "zHTML xD.5375.0300.0004.0015.";
michael@0 245 top.titles[i] = "DSENetAddress";
michael@0 246 i++;
michael@0 247
michael@0 248 top.authors[i] = "zHTML xD.5375.0300.0004.0016.";
michael@0 249 top.titles[i] = "DSEOctetList";
michael@0 250 i++;
michael@0 251
michael@0 252 top.authors[i] = "zHTML xD.5375.0300.0004.0017.";
michael@0 253 top.titles[i] = "DSEPath";
michael@0 254 i++;
michael@0 255
michael@0 256 top.authors[i] = "zHTML xD.5375.0300.0004.0018.";
michael@0 257 top.titles[i] = "DSEReplicaPointer";
michael@0 258 i++;
michael@0 259
michael@0 260 top.authors[i] = "zHTML xD.5375.0300.0004.0019.";
michael@0 261 top.titles[i] = "DSESEVInfo";
michael@0 262 i++;
michael@0 263
michael@0 264 top.authors[i] = "zHTML xD.5375.0300.0004.0020.";
michael@0 265 top.titles[i] = "DSETimeStamp";
michael@0 266 i++;
michael@0 267
michael@0 268 top.authors[i] = "zHTML xD.5375.0300.0004.0021.";
michael@0 269 top.titles[i] = "DSETraceInfo";
michael@0 270 i++;
michael@0 271
michael@0 272 top.authors[i] = "zHTML xD.5375.0300.0004.0022.";
michael@0 273 top.titles[i] = "DSETypedName";
michael@0 274 i++;
michael@0 275
michael@0 276 top.authors[i] = "zHTML xD.5375.0300.0004.0023.";
michael@0 277 top.titles[i] = "DSEVALData";
michael@0 278 i++;
michael@0 279
michael@0 280 top.authors[i] = "zHTML xD.5375.0300.0004.0024.";
michael@0 281 top.titles[i] = "DSEValueInfo";
michael@0 282 i++;
michael@0 283
michael@0 284 top.authors[i] = "zFLDR xC.5375.0300.0005.";
michael@0 285 top.titles[i] = "Values";
michael@0 286 i++;
michael@0 287
michael@0 288 top.authors[i] = "zHTML xD.5375.0300.0005.0001.";
michael@0 289 top.titles[i] = "Event Priorities";
michael@0 290 i++;
michael@0 291
michael@0 292 top.authors[i] = "zHTML xD.5375.0300.0005.0002.";
michael@0 293 top.titles[i] = "Event Types";
michael@0 294 i++;
michael@0 295
michael@0 296 top.authors[i] = "zHTML xC.5375.0300.0006.";
michael@0 297 top.titles[i] = "Revision History";
michael@0 298 i++;
michael@0 299
michael@0 300 top.authors[i] = "zFLDR xB.5375.0600.";
michael@0 301 top.titles[i] = "NDS Technical Overview";
michael@0 302 i++;
michael@0 303
michael@0 304 top.authors[i] = "zFLDR xC.5375.0600.0001.";
michael@0 305 top.titles[i] = "NDS as the Internet Directory";
michael@0 306 i++;
michael@0 307
michael@0 308 top.authors[i] = "zHTML xD.5375.0600.0001.0001.";
michael@0 309 top.titles[i] = "Requirements for Networks and the Internet";
michael@0 310 i++;
michael@0 311
michael@0 312 top.authors[i] = "zHTML xD.5375.0600.0001.0002.";
michael@0 313 top.titles[i] = "NDS Compliance to X.500 Standard";
michael@0 314 i++;
michael@0 315
michael@0 316 top.authors[i] = "zHTML xD.5375.0600.0001.0003.";
michael@0 317 top.titles[i] = "NDS Compliance with LDAP v3";
michael@0 318 i++;
michael@0 319
michael@0 320 top.authors[i] = "zHTML xD.5375.0600.0001.0004.";
michael@0 321 top.titles[i] = "Directory Access Protocols";
michael@0 322 i++;
michael@0 323
michael@0 324 top.authors[i] = "zHTML xD.5375.0600.0001.0005.";
michael@0 325 top.titles[i] = "Programming Interfaces for NDS";
michael@0 326 i++;
michael@0 327
michael@0 328 top.authors[i] = "zHTML xD.5375.0600.0001.0006.";
michael@0 329 top.titles[i] = "NDS Architecture";
michael@0 330 i++;
michael@0 331
michael@0 332 top.authors[i] = "zFLDR xC.5375.0600.0002.";
michael@0 333 top.titles[i] = "NDS Objects";
michael@0 334 i++;
michael@0 335
michael@0 336 top.authors[i] = "zHTML xD.5375.0600.0002.0001.";
michael@0 337 top.titles[i] = "NDS Names";
michael@0 338 i++;
michael@0 339
michael@0 340 top.authors[i] = "zHTML xD.5375.0600.0002.0002.";
michael@0 341 top.titles[i] = "Types of Information Stored in NDS";
michael@0 342 i++;
michael@0 343
michael@0 344 top.authors[i] = "zHTML xD.5375.0600.0002.0003.";
michael@0 345 top.titles[i] = "Retrieval of Information from NDS";
michael@0 346 i++;
michael@0 347
michael@0 348 top.authors[i] = "zHTML xD.5375.0600.0002.0004.";
michael@0 349 top.titles[i] = "Tree Walking";
michael@0 350 i++;
michael@0 351
michael@0 352 top.authors[i] = "zHTML xD.5375.0600.0002.0005.";
michael@0 353 top.titles[i] = "NDS Object Management";
michael@0 354 i++;
michael@0 355
michael@0 356 top.authors[i] = "zFLDR xC.5375.0600.0003.";
michael@0 357 top.titles[i] = "NDS Security";
michael@0 358 i++;
michael@0 359
michael@0 360 top.authors[i] = "zHTML xD.5375.0600.0003.0001.";
michael@0 361 top.titles[i] = "Authentication";
michael@0 362 i++;
michael@0 363
michael@0 364 top.authors[i] = "zHTML xD.5375.0600.0003.0002.";
michael@0 365 top.titles[i] = "Access Control Lists";
michael@0 366 i++;
michael@0 367
michael@0 368 top.authors[i] = "zHTML xD.5375.0600.0003.0003.";
michael@0 369 top.titles[i] = "Inheritance";
michael@0 370 i++;
michael@0 371
michael@0 372 top.authors[i] = "zHTML xD.5375.0600.0003.0004.";
michael@0 373 top.titles[i] = "NetWare File System";
michael@0 374 i++;
michael@0 375
michael@0 376 top.authors[i] = "zFLDR xC.5375.0600.0004.";
michael@0 377 top.titles[i] = "Partitions and Replicas";
michael@0 378 i++;
michael@0 379
michael@0 380 top.authors[i] = "zHTML xD.5375.0600.0004.0001.";
michael@0 381 top.titles[i] = "Partitioning";
michael@0 382 i++;
michael@0 383
michael@0 384 top.authors[i] = "zHTML xD.5375.0600.0004.0002.";
michael@0 385 top.titles[i] = "Replication";
michael@0 386 i++;
michael@0 387
michael@0 388 top.authors[i] = "zHTML xD.5375.0600.0004.0003.";
michael@0 389 top.titles[i] = "Distributed Reference Management";
michael@0 390 i++;
michael@0 391
michael@0 392 top.authors[i] = "zHTML xD.5375.0600.0004.0004.";
michael@0 393 top.titles[i] = "Partition Operations";
michael@0 394 i++;
michael@0 395
michael@0 396 top.authors[i] = "zHTML xD.5375.0600.0004.0005.";
michael@0 397 top.titles[i] = "Synchronization";
michael@0 398 i++;
michael@0 399
michael@0 400 top.authors[i] = "zHTML xD.5375.0600.0004.0006.";
michael@0 401 top.titles[i] = "Background Processes";
michael@0 402 i++;
michael@0 403
michael@0 404 top.authors[i] = "zFLDR xC.5375.0600.0005.";
michael@0 405 top.titles[i] = "Bindery Services";
michael@0 406 i++;
michael@0 407
michael@0 408 top.authors[i] = "zHTML xD.5375.0600.0005.0001.";
michael@0 409 top.titles[i] = "NDS Bindery Context";
michael@0 410 i++;
michael@0 411
michael@0 412 top.authors[i] = "zHTML xD.5375.0600.0005.0002.";
michael@0 413 top.titles[i] = "Bindery Context Path";
michael@0 414 i++;
michael@0 415
michael@0 416 top.authors[i] = "zHTML xD.5375.0600.0005.0003.";
michael@0 417 top.titles[i] = "Bindery Context Eclipsing";
michael@0 418 i++;
michael@0 419
michael@0 420 top.authors[i] = "zHTML xD.5375.0600.0005.0004.";
michael@0 421 top.titles[i] = "NDS Bindery Objects";
michael@0 422 i++;
michael@0 423
michael@0 424 top.authors[i] = "zFLDR xC.5375.0600.0006.";
michael@0 425 top.titles[i] = "NDS Return Values";
michael@0 426 i++;
michael@0 427
michael@0 428 top.authors[i] = "zHTML xD.5375.0600.0006.0001.";
michael@0 429 top.titles[i] = "NDS Return Values from the Operating System";
michael@0 430 i++;
michael@0 431
michael@0 432 top.authors[i] = "zHTML xD.5375.0600.0006.0002.";
michael@0 433 top.titles[i] = "NDS Client Return Values";
michael@0 434 i++;
michael@0 435
michael@0 436 top.authors[i] = "zHTML xD.5375.0600.0006.0003.";
michael@0 437 top.titles[i] = "NDS Agent Return Values";
michael@0 438 i++;
michael@0 439
michael@0 440 top.authors[i] = "zFLDR xC.5375.0600.0007.";
michael@0 441 top.titles[i] = "Directory Services Trace Utilities";
michael@0 442 i++;
michael@0 443
michael@0 444 top.authors[i] = "zHTML xD.5375.0600.0007.0001.";
michael@0 445 top.titles[i] = "Using the DSTrace NLM";
michael@0 446 i++;
michael@0 447
michael@0 448 top.authors[i] = "zHTML xD.5375.0600.0007.0002.";
michael@0 449 top.titles[i] = "Using Basic SET DSTrace Commands";
michael@0 450 i++;
michael@0 451
michael@0 452 top.authors[i] = "zHTML xD.5375.0600.0007.0003.";
michael@0 453 top.titles[i] = "Starting Background Processes with SET DSTrace";
michael@0 454 i++;
michael@0 455
michael@0 456 top.authors[i] = "zHTML xD.5375.0600.0007.0004.";
michael@0 457 top.titles[i] = "Tuning Background Processes";
michael@0 458 i++;
michael@0 459
michael@0 460 top.authors[i] = "zHTML xD.5375.0600.0007.0005.";
michael@0 461 top.titles[i] = "Enabling DSTrace Messages with SET DSTrace";
michael@0 462 i++;
michael@0 463
michael@0 464 top.authors[i] = "zHTML xC.5375.0600.0008.";
michael@0 465 top.titles[i] = "Revision History";
michael@0 466 i++;
michael@0 467
michael@0 468 top.authors[i] = "zFLDR xB.5375.0200.";
michael@0 469 top.titles[i] = "NDS Core Services";
michael@0 470 i++;
michael@0 471
michael@0 472 top.authors[i] = "zFLDR xC.5375.0200.0001.";
michael@0 473 top.titles[i] = "Programming Concepts";
michael@0 474 i++;
michael@0 475
michael@0 476 top.authors[i] = "zHTML xD.5375.0200.0001.0001.";
michael@0 477 top.titles[i] = "Context Handles";
michael@0 478 i++;
michael@0 479
michael@0 480 top.authors[i] = "zHTML xD.5375.0200.0001.0002.";
michael@0 481 top.titles[i] = "Buffer Management";
michael@0 482 i++;
michael@0 483
michael@0 484 top.authors[i] = "zHTML xD.5375.0200.0001.0003.";
michael@0 485 top.titles[i] = "Read Requests for Object Information";
michael@0 486 i++;
michael@0 487
michael@0 488 top.authors[i] = "zHTML xD.5375.0200.0001.0004.";
michael@0 489 top.titles[i] = "Search Requests";
michael@0 490 i++;
michael@0 491
michael@0 492 top.authors[i] = "zHTML xD.5375.0200.0001.0005.";
michael@0 493 top.titles[i] = "Developing in a Loosely Consistent Environment";
michael@0 494 i++;
michael@0 495
michael@0 496 top.authors[i] = "zHTML xD.5375.0200.0001.0006.";
michael@0 497 top.titles[i] = "Add Object Requests";
michael@0 498 i++;
michael@0 499
michael@0 500 top.authors[i] = "zHTML xD.5375.0200.0001.0007.";
michael@0 501 top.titles[i] = "NDS Security and Applications";
michael@0 502 i++;
michael@0 503
michael@0 504 top.authors[i] = "zHTML xD.5375.0200.0001.0008.";
michael@0 505 top.titles[i] = "Authentication of Client Applications";
michael@0 506 i++;
michael@0 507
michael@0 508 top.authors[i] = "zHTML xD.5375.0200.0001.0009.";
michael@0 509 top.titles[i] = "Multiple Tree Support";
michael@0 510 i++;
michael@0 511
michael@0 512 top.authors[i] = "zHTML xD.5375.0200.0001.0010.";
michael@0 513 top.titles[i] = "Effective Rights Function";
michael@0 514 i++;
michael@0 515
michael@0 516 top.authors[i] = "zHTML xD.5375.0200.0001.0011.";
michael@0 517 top.titles[i] = "Partition Functions";
michael@0 518 i++;
michael@0 519
michael@0 520 top.authors[i] = "zHTML xD.5375.0200.0001.0012.";
michael@0 521 top.titles[i] = "Replica Functions";
michael@0 522 i++;
michael@0 523
michael@0 524 top.authors[i] = "zHTML xD.5375.0200.0001.0013.";
michael@0 525 top.titles[i] = "Read Requests for Schema Information";
michael@0 526 i++;
michael@0 527
michael@0 528 top.authors[i] = "zHTML xD.5375.0200.0001.0014.";
michael@0 529 top.titles[i] = "Schema Extension Requests";
michael@0 530 i++;
michael@0 531
michael@0 532 top.authors[i] = "zFLDR xC.5375.0200.0002.";
michael@0 533 top.titles[i] = "Tasks";
michael@0 534 i++;
michael@0 535
michael@0 536 top.authors[i] = "zHTML xD.5375.0200.0002.0001.";
michael@0 537 top.titles[i] = "Context Handle Tasks";
michael@0 538 i++;
michael@0 539
michael@0 540 top.authors[i] = "zHTML xD.5375.0200.0002.0002.";
michael@0 541 top.titles[i] = "Buffer Tasks";
michael@0 542 i++;
michael@0 543
michael@0 544 top.authors[i] = "zHTML xD.5375.0200.0002.0003.";
michael@0 545 top.titles[i] = "Authentication and Connection Tasks";
michael@0 546 i++;
michael@0 547
michael@0 548 top.authors[i] = "zHTML xD.5375.0200.0002.0004.";
michael@0 549 top.titles[i] = "Object Tasks";
michael@0 550 i++;
michael@0 551
michael@0 552 top.authors[i] = "zHTML xD.5375.0200.0002.0005.";
michael@0 553 top.titles[i] = "Partition and Replica Tasks";
michael@0 554 i++;
michael@0 555
michael@0 556 top.authors[i] = "zHTML xD.5375.0200.0002.0006.";
michael@0 557 top.titles[i] = "Schema Tasks";
michael@0 558 i++;
michael@0 559
michael@0 560 top.authors[i] = "zFLDR xC.5375.0200.0003.";
michael@0 561 top.titles[i] = "Functions";
michael@0 562 i++;
michael@0 563
michael@0 564 top.authors[i] = "zHTML xD.5375.0200.0003.0001.";
michael@0 565 top.titles[i] = "NWDSAbbreviateName";
michael@0 566 i++;
michael@0 567
michael@0 568 top.authors[i] = "zHTML xD.5375.0200.0003.0002.";
michael@0 569 top.titles[i] = "NWDSAbortPartitionOperation";
michael@0 570 i++;
michael@0 571
michael@0 572 top.authors[i] = "zHTML xD.5375.0200.0003.0003.";
michael@0 573 top.titles[i] = "NWDSAddFilterToken";
michael@0 574 i++;
michael@0 575
michael@0 576 top.authors[i] = "zHTML xD.5375.0200.0003.0004.";
michael@0 577 top.titles[i] = "NWDSAddObject";
michael@0 578 i++;
michael@0 579
michael@0 580 top.authors[i] = "zHTML xD.5375.0200.0003.0005.";
michael@0 581 top.titles[i] = "NWDSAddPartition (obsolete&#45;&#45;&#45;moved from .h file 11/99)";
michael@0 582 i++;
michael@0 583
michael@0 584 top.authors[i] = "zHTML xD.5375.0200.0003.0006.";
michael@0 585 top.titles[i] = "NWDSAddReplica";
michael@0 586 i++;
michael@0 587
michael@0 588 top.authors[i] = "zHTML xD.5375.0200.0003.0007.";
michael@0 589 top.titles[i] = "NWDSAddSecurityEquiv";
michael@0 590 i++;
michael@0 591
michael@0 592 top.authors[i] = "zHTML xD.5375.0200.0003.0008.";
michael@0 593 top.titles[i] = "NWDSAllocBuf";
michael@0 594 i++;
michael@0 595
michael@0 596 top.authors[i] = "zHTML xD.5375.0200.0003.0009.";
michael@0 597 top.titles[i] = "NWDSAllocFilter";
michael@0 598 i++;
michael@0 599
michael@0 600 top.authors[i] = "zHTML xD.5375.0200.0003.0010.";
michael@0 601 top.titles[i] = "NWDSAuditGetObjectID";
michael@0 602 i++;
michael@0 603
michael@0 604 top.authors[i] = "zHTML xD.5375.0200.0003.0011.";
michael@0 605 top.titles[i] = "NWDSAuthenticate";
michael@0 606 i++;
michael@0 607
michael@0 608 top.authors[i] = "zHTML xD.5375.0200.0003.0012.";
michael@0 609 top.titles[i] = "NWDSAuthenticateConn";
michael@0 610 i++;
michael@0 611
michael@0 612 top.authors[i] = "zHTML xD.5375.0200.0003.0013.";
michael@0 613 top.titles[i] = "NWDSAuthenticateConnEx";
michael@0 614 i++;
michael@0 615
michael@0 616 top.authors[i] = "zHTML xD.5375.0200.0003.0014.";
michael@0 617 top.titles[i] = "NWDSBackupObject";
michael@0 618 i++;
michael@0 619
michael@0 620 top.authors[i] = "zHTML xD.5375.0200.0003.0015.";
michael@0 621 top.titles[i] = "NWDSBeginClassItem";
michael@0 622 i++;
michael@0 623
michael@0 624 top.authors[i] = "zHTML xD.5375.0200.0003.0016.";
michael@0 625 top.titles[i] = "NWDSCanDSAuthenticate";
michael@0 626 i++;
michael@0 627
michael@0 628 top.authors[i] = "zHTML xD.5375.0200.0003.0017.";
michael@0 629 top.titles[i] = "NWDSCanonicalizeName";
michael@0 630 i++;
michael@0 631
michael@0 632 top.authors[i] = "zHTML xD.5375.0200.0003.0018.";
michael@0 633 top.titles[i] = "NWDSChangeObjectPassword";
michael@0 634 i++;
michael@0 635
michael@0 636 top.authors[i] = "zHTML xD.5375.0200.0003.0019.";
michael@0 637 top.titles[i] = "NWDSChangeReplicaType";
michael@0 638 i++;
michael@0 639
michael@0 640 top.authors[i] = "zHTML xD.5375.0200.0003.0020.";
michael@0 641 top.titles[i] = "NWDSCIStringsMatch";
michael@0 642 i++;
michael@0 643
michael@0 644 top.authors[i] = "zHTML xD.5375.0200.0003.0021.";
michael@0 645 top.titles[i] = "NWDSCloseIteration";
michael@0 646 i++;
michael@0 647
michael@0 648 top.authors[i] = "zHTML xD.5375.0200.0003.0022.";
michael@0 649 top.titles[i] = "NWDSCompare";
michael@0 650 i++;
michael@0 651
michael@0 652 top.authors[i] = "zHTML xD.5375.0200.0003.0023.";
michael@0 653 top.titles[i] = "NWDSComputeAttrValSize";
michael@0 654 i++;
michael@0 655
michael@0 656 top.authors[i] = "zHTML xD.5375.0200.0003.0024.";
michael@0 657 top.titles[i] = "NWDSCreateContext (obsolete&#45;&#45;&#45;moved from .h file 6/99)";
michael@0 658 i++;
michael@0 659
michael@0 660 top.authors[i] = "zHTML xD.5375.0200.0003.0025.";
michael@0 661 top.titles[i] = "NWDSCreateContextHandle";
michael@0 662 i++;
michael@0 663
michael@0 664 top.authors[i] = "zHTML xD.5375.0200.0003.0026.";
michael@0 665 top.titles[i] = "NWDSDefineAttr";
michael@0 666 i++;
michael@0 667
michael@0 668 top.authors[i] = "zHTML xD.5375.0200.0003.0027.";
michael@0 669 top.titles[i] = "NWDSDefineClass";
michael@0 670 i++;
michael@0 671
michael@0 672 top.authors[i] = "zHTML xD.5375.0200.0003.0028.";
michael@0 673 top.titles[i] = "NWDSDelFilterToken";
michael@0 674 i++;
michael@0 675
michael@0 676 top.authors[i] = "zHTML xD.5375.0200.0003.0029.";
michael@0 677 top.titles[i] = "NWDSDuplicateContext (obsolete 03/99)";
michael@0 678 i++;
michael@0 679
michael@0 680 top.authors[i] = "zHTML xD.5375.0200.0003.0030.";
michael@0 681 top.titles[i] = "NWDSDuplicateContextHandle";
michael@0 682 i++;
michael@0 683
michael@0 684 top.authors[i] = "zHTML xD.5375.0200.0003.0031.";
michael@0 685 top.titles[i] = "NWDSExtSyncList";
michael@0 686 i++;
michael@0 687
michael@0 688 top.authors[i] = "zHTML xD.5375.0200.0003.0032.";
michael@0 689 top.titles[i] = "NWDSExtSyncRead";
michael@0 690 i++;
michael@0 691
michael@0 692 top.authors[i] = "zHTML xD.5375.0200.0003.0033.";
michael@0 693 top.titles[i] = "NWDSExtSyncSearch";
michael@0 694 i++;
michael@0 695
michael@0 696 top.authors[i] = "zHTML xD.5375.0200.0003.0034.";
michael@0 697 top.titles[i] = "NWDSFreeBuf";
michael@0 698 i++;
michael@0 699
michael@0 700 top.authors[i] = "zHTML xD.5375.0200.0003.0035.";
michael@0 701 top.titles[i] = "NWDSFreeContext";
michael@0 702 i++;
michael@0 703
michael@0 704 top.authors[i] = "zHTML xD.5375.0200.0003.0036.";
michael@0 705 top.titles[i] = "NWDSFreeFilter";
michael@0 706 i++;
michael@0 707
michael@0 708 top.authors[i] = "zHTML xD.5375.0200.0003.0037.";
michael@0 709 top.titles[i] = "NWDSGenerateObjectKeyPair";
michael@0 710 i++;
michael@0 711
michael@0 712 top.authors[i] = "zHTML xD.5375.0200.0003.0038.";
michael@0 713 top.titles[i] = "NWDSGetAttrCount";
michael@0 714 i++;
michael@0 715
michael@0 716 top.authors[i] = "zHTML xD.5375.0200.0003.0039.";
michael@0 717 top.titles[i] = "NWDSGetAttrDef";
michael@0 718 i++;
michael@0 719
michael@0 720 top.authors[i] = "zHTML xD.5375.0200.0003.0040.";
michael@0 721 top.titles[i] = "NWDSGetAttrName";
michael@0 722 i++;
michael@0 723
michael@0 724 top.authors[i] = "zHTML xD.5375.0200.0003.0041.";
michael@0 725 top.titles[i] = "NWDSGetAttrVal";
michael@0 726 i++;
michael@0 727
michael@0 728 top.authors[i] = "zHTML xD.5375.0200.0003.0042.";
michael@0 729 top.titles[i] = "NWDSGetAttrValFlags";
michael@0 730 i++;
michael@0 731
michael@0 732 top.authors[i] = "zHTML xD.5375.0200.0003.0043.";
michael@0 733 top.titles[i] = "NWDSGetAttrValModTime";
michael@0 734 i++;
michael@0 735
michael@0 736 top.authors[i] = "zHTML xD.5375.0200.0003.0044.";
michael@0 737 top.titles[i] = "NWDSGetBinderyContext";
michael@0 738 i++;
michael@0 739
michael@0 740 top.authors[i] = "zHTML xD.5375.0200.0003.0045.";
michael@0 741 top.titles[i] = "NWDSGetClassDef";
michael@0 742 i++;
michael@0 743
michael@0 744 top.authors[i] = "zHTML xD.5375.0200.0003.0046.";
michael@0 745 top.titles[i] = "NWDSGetClassDefCount";
michael@0 746 i++;
michael@0 747
michael@0 748 top.authors[i] = "zHTML xD.5375.0200.0003.0047.";
michael@0 749 top.titles[i] = "NWDSGetClassItem";
michael@0 750 i++;
michael@0 751
michael@0 752 top.authors[i] = "zHTML xD.5375.0200.0003.0048.";
michael@0 753 top.titles[i] = "NWDSGetClassItemCount";
michael@0 754 i++;
michael@0 755
michael@0 756 top.authors[i] = "zHTML xD.5375.0200.0003.0049.";
michael@0 757 top.titles[i] = "NWDSGetContext";
michael@0 758 i++;
michael@0 759
michael@0 760 top.authors[i] = "zHTML xD.5375.0200.0003.0050.";
michael@0 761 top.titles[i] = "NWDSGetCountByClassAndName";
michael@0 762 i++;
michael@0 763
michael@0 764 top.authors[i] = "zHTML xD.5375.0200.0003.0051.";
michael@0 765 top.titles[i] = "NWDSGetCurrentUser";
michael@0 766 i++;
michael@0 767
michael@0 768 top.authors[i] = "zHTML xD.5375.0200.0003.0052.";
michael@0 769 top.titles[i] = "NWDSGetDefNameContext";
michael@0 770 i++;
michael@0 771
michael@0 772 top.authors[i] = "zHTML xD.5375.0200.0003.0053.";
michael@0 773 top.titles[i] = "NWDSGetDSIInfo";
michael@0 774 i++;
michael@0 775
michael@0 776 top.authors[i] = "zHTML xD.5375.0200.0003.0054.";
michael@0 777 top.titles[i] = "NWDSGetDSVerInfo";
michael@0 778 i++;
michael@0 779
michael@0 780 top.authors[i] = "zHTML xD.5375.0200.0003.0055.";
michael@0 781 top.titles[i] = "NWDSGetEffectiveRights";
michael@0 782 i++;
michael@0 783
michael@0 784 top.authors[i] = "zHTML xD.5375.0200.0003.0056.";
michael@0 785 top.titles[i] = "NWDSGetMonitoredConnRef";
michael@0 786 i++;
michael@0 787
michael@0 788 top.authors[i] = "zHTML xD.5375.0200.0003.0057.";
michael@0 789 top.titles[i] = "NWDSGetNDSInfo";
michael@0 790 i++;
michael@0 791
michael@0 792 top.authors[i] = "zHTML xD.5375.0200.0003.0058.";
michael@0 793 top.titles[i] = "NWDSGetObjectCount";
michael@0 794 i++;
michael@0 795
michael@0 796 top.authors[i] = "zHTML xD.5375.0200.0003.0059.";
michael@0 797 top.titles[i] = "NWDSGetObjectHostServerAddress";
michael@0 798 i++;
michael@0 799
michael@0 800 top.authors[i] = "zHTML xD.5375.0200.0003.0060.";
michael@0 801 top.titles[i] = "NWDSGetObjectName";
michael@0 802 i++;
michael@0 803
michael@0 804 top.authors[i] = "zHTML xD.5375.0200.0003.0061.";
michael@0 805 top.titles[i] = "NWDSGetObjectNameAndInfo";
michael@0 806 i++;
michael@0 807
michael@0 808 top.authors[i] = "zHTML xD.5375.0200.0003.0062.";
michael@0 809 top.titles[i] = "NWDSGetPartitionExtInfo";
michael@0 810 i++;
michael@0 811
michael@0 812 top.authors[i] = "zHTML xD.5375.0200.0003.0063.";
michael@0 813 top.titles[i] = "NWDSGetPartitionExtInfoPtr";
michael@0 814 i++;
michael@0 815
michael@0 816 top.authors[i] = "zHTML xD.5375.0200.0003.0064.";
michael@0 817 top.titles[i] = "NWDSGetPartitionInfo";
michael@0 818 i++;
michael@0 819
michael@0 820 top.authors[i] = "zHTML xD.5375.0200.0003.0065.";
michael@0 821 top.titles[i] = "NWDSGetPartitionRoot";
michael@0 822 i++;
michael@0 823
michael@0 824 top.authors[i] = "zHTML xD.5375.0200.0003.0066.";
michael@0 825 top.titles[i] = "NWDSGetServerAddresses (obsolete 3/98)";
michael@0 826 i++;
michael@0 827
michael@0 828 top.authors[i] = "zHTML xD.5375.0200.0003.0067.";
michael@0 829 top.titles[i] = "NWDSGetServerAddresses2";
michael@0 830 i++;
michael@0 831
michael@0 832 top.authors[i] = "zHTML xD.5375.0200.0003.0068.";
michael@0 833 top.titles[i] = "NWDSGetServerDN";
michael@0 834 i++;
michael@0 835
michael@0 836 top.authors[i] = "zHTML xD.5375.0200.0003.0069.";
michael@0 837 top.titles[i] = "NWDSGetServerName";
michael@0 838 i++;
michael@0 839
michael@0 840 top.authors[i] = "zHTML xD.5375.0200.0003.0070.";
michael@0 841 top.titles[i] = "NWDSGetSyntaxCount";
michael@0 842 i++;
michael@0 843
michael@0 844 top.authors[i] = "zHTML xD.5375.0200.0003.0071.";
michael@0 845 top.titles[i] = "NWDSGetSyntaxDef";
michael@0 846 i++;
michael@0 847
michael@0 848 top.authors[i] = "zHTML xD.5375.0200.0003.0072.";
michael@0 849 top.titles[i] = "NWDSGetSyntaxID";
michael@0 850 i++;
michael@0 851
michael@0 852 top.authors[i] = "zHTML xD.5375.0200.0003.0073.";
michael@0 853 top.titles[i] = "NWDSInitBuf";
michael@0 854 i++;
michael@0 855
michael@0 856 top.authors[i] = "zHTML xD.5375.0200.0003.0074.";
michael@0 857 top.titles[i] = "NWDSInspectEntry";
michael@0 858 i++;
michael@0 859
michael@0 860 top.authors[i] = "zHTML xD.5375.0200.0003.0075.";
michael@0 861 top.titles[i] = "NWDSJoinPartitions";
michael@0 862 i++;
michael@0 863
michael@0 864 top.authors[i] = "zHTML xD.5375.0200.0003.0076.";
michael@0 865 top.titles[i] = "NWDSList";
michael@0 866 i++;
michael@0 867
michael@0 868 top.authors[i] = "zHTML xD.5375.0200.0003.0077.";
michael@0 869 top.titles[i] = "NWDSListAttrsEffectiveRights";
michael@0 870 i++;
michael@0 871
michael@0 872 top.authors[i] = "zHTML xD.5375.0200.0003.0078.";
michael@0 873 top.titles[i] = "NWDSListByClassAndName";
michael@0 874 i++;
michael@0 875
michael@0 876 top.authors[i] = "zHTML xD.5375.0200.0003.0079.";
michael@0 877 top.titles[i] = "NWDSListContainableClasses";
michael@0 878 i++;
michael@0 879
michael@0 880 top.authors[i] = "zHTML xD.5375.0200.0003.0080.";
michael@0 881 top.titles[i] = "NWDSListContainers";
michael@0 882 i++;
michael@0 883
michael@0 884 top.authors[i] = "zHTML xD.5375.0200.0003.0081.";
michael@0 885 top.titles[i] = "NWDSListPartitions";
michael@0 886 i++;
michael@0 887
michael@0 888 top.authors[i] = "zHTML xD.5375.0200.0003.0082.";
michael@0 889 top.titles[i] = "NWDSListPartitionsExtInfo";
michael@0 890 i++;
michael@0 891
michael@0 892 top.authors[i] = "zHTML xD.5375.0200.0003.0083.";
michael@0 893 top.titles[i] = "NWDSLogin";
michael@0 894 i++;
michael@0 895
michael@0 896 top.authors[i] = "zHTML xD.5375.0200.0003.0084.";
michael@0 897 top.titles[i] = "NWDSLoginAsServer";
michael@0 898 i++;
michael@0 899
michael@0 900 top.authors[i] = "zHTML xD.5375.0200.0003.0085.";
michael@0 901 top.titles[i] = "NWDSLogout";
michael@0 902 i++;
michael@0 903
michael@0 904 top.authors[i] = "zHTML xD.5375.0200.0003.0086.";
michael@0 905 top.titles[i] = "NWDSMapIDToName";
michael@0 906 i++;
michael@0 907
michael@0 908 top.authors[i] = "zHTML xD.5375.0200.0003.0087.";
michael@0 909 top.titles[i] = "NWDSMapNameToID";
michael@0 910 i++;
michael@0 911
michael@0 912 top.authors[i] = "zHTML xD.5375.0200.0003.0088.";
michael@0 913 top.titles[i] = "NWDSModifyClassDef";
michael@0 914 i++;
michael@0 915
michael@0 916 top.authors[i] = "zHTML xD.5375.0200.0003.0089.";
michael@0 917 top.titles[i] = "NWDSModifyDN";
michael@0 918 i++;
michael@0 919
michael@0 920 top.authors[i] = "zHTML xD.5375.0200.0003.0090.";
michael@0 921 top.titles[i] = "NWDSModifyObject";
michael@0 922 i++;
michael@0 923
michael@0 924 top.authors[i] = "zHTML xD.5375.0200.0003.0091.";
michael@0 925 top.titles[i] = "NWDSModifyRDN";
michael@0 926 i++;
michael@0 927
michael@0 928 top.authors[i] = "zHTML xD.5375.0200.0003.0092.";
michael@0 929 top.titles[i] = "NWDSMoveObject";
michael@0 930 i++;
michael@0 931
michael@0 932 top.authors[i] = "zHTML xD.5375.0200.0003.0093.";
michael@0 933 top.titles[i] = "NWDSMutateObject";
michael@0 934 i++;
michael@0 935
michael@0 936 top.authors[i] = "zHTML xD.5375.0200.0003.0094.";
michael@0 937 top.titles[i] = "NWDSOpenConnToNDSServer";
michael@0 938 i++;
michael@0 939
michael@0 940 top.authors[i] = "zHTML xD.5375.0200.0003.0095.";
michael@0 941 top.titles[i] = "NWDSOpenMonitoredConn";
michael@0 942 i++;
michael@0 943
michael@0 944 top.authors[i] = "zHTML xD.5375.0200.0003.0096.";
michael@0 945 top.titles[i] = "NWDSOpenStream";
michael@0 946 i++;
michael@0 947
michael@0 948 top.authors[i] = "zHTML xD.5375.0200.0003.0097.";
michael@0 949 top.titles[i] = "NWDSPartitionReceiveAllUpdates";
michael@0 950 i++;
michael@0 951
michael@0 952 top.authors[i] = "zHTML xD.5375.0200.0003.0098.";
michael@0 953 top.titles[i] = "NWDSPartitionSendAllUpdates";
michael@0 954 i++;
michael@0 955
michael@0 956 top.authors[i] = "zHTML xD.5375.0200.0003.0099.";
michael@0 957 top.titles[i] = "NWDSPutAttrName";
michael@0 958 i++;
michael@0 959
michael@0 960 top.authors[i] = "zHTML xD.5375.0200.0003.0100.";
michael@0 961 top.titles[i] = "NWDSPutAttrNameAndVal";
michael@0 962 i++;
michael@0 963
michael@0 964 top.authors[i] = "zHTML xD.5375.0200.0003.0101.";
michael@0 965 top.titles[i] = "NWDSPutAttrVal";
michael@0 966 i++;
michael@0 967
michael@0 968 top.authors[i] = "zHTML xD.5375.0200.0003.0102.";
michael@0 969 top.titles[i] = "NWDSPutChange";
michael@0 970 i++;
michael@0 971
michael@0 972 top.authors[i] = "zHTML xD.5375.0200.0003.0103.";
michael@0 973 top.titles[i] = "NWDSPutChangeAndVal";
michael@0 974 i++;
michael@0 975
michael@0 976 top.authors[i] = "zHTML xD.5375.0200.0003.0104.";
michael@0 977 top.titles[i] = "NWDSPutClassItem";
michael@0 978 i++;
michael@0 979
michael@0 980 top.authors[i] = "zHTML xD.5375.0200.0003.0105.";
michael@0 981 top.titles[i] = "NWDSPutClassName";
michael@0 982 i++;
michael@0 983
michael@0 984 top.authors[i] = "zHTML xD.5375.0200.0003.0106.";
michael@0 985 top.titles[i] = "NWDSPutFilter";
michael@0 986 i++;
michael@0 987
michael@0 988 top.authors[i] = "zHTML xD.5375.0200.0003.0107.";
michael@0 989 top.titles[i] = "NWDSPutSyntaxName";
michael@0 990 i++;
michael@0 991
michael@0 992 top.authors[i] = "zHTML xD.5375.0200.0003.0108.";
michael@0 993 top.titles[i] = "NWDSRead";
michael@0 994 i++;
michael@0 995
michael@0 996 top.authors[i] = "zHTML xD.5375.0200.0003.0109.";
michael@0 997 top.titles[i] = "NWDSReadAttrDef";
michael@0 998 i++;
michael@0 999
michael@0 1000 top.authors[i] = "zHTML xD.5375.0200.0003.0110.";
michael@0 1001 top.titles[i] = "NWDSReadClassDef";
michael@0 1002 i++;
michael@0 1003
michael@0 1004 top.authors[i] = "zHTML xD.5375.0200.0003.0111.";
michael@0 1005 top.titles[i] = "NWDSReadNDSInfo";
michael@0 1006 i++;
michael@0 1007
michael@0 1008 top.authors[i] = "zHTML xD.5375.0200.0003.0112.";
michael@0 1009 top.titles[i] = "NWDSReadObjectDSIInfo";
michael@0 1010 i++;
michael@0 1011
michael@0 1012 top.authors[i] = "zHTML xD.5375.0200.0003.0113.";
michael@0 1013 top.titles[i] = "NWDSReadObjectInfo";
michael@0 1014 i++;
michael@0 1015
michael@0 1016 top.authors[i] = "zHTML xD.5375.0200.0003.0114.";
michael@0 1017 top.titles[i] = "NWDSReadReferences";
michael@0 1018 i++;
michael@0 1019
michael@0 1020 top.authors[i] = "zHTML xD.5375.0200.0003.0115.";
michael@0 1021 top.titles[i] = "NWDSReadSyntaxDef";
michael@0 1022 i++;
michael@0 1023
michael@0 1024 top.authors[i] = "zHTML xD.5375.0200.0003.0116.";
michael@0 1025 top.titles[i] = "NWDSReadSyntaxes";
michael@0 1026 i++;
michael@0 1027
michael@0 1028 top.authors[i] = "zHTML xD.5375.0200.0003.0117.";
michael@0 1029 top.titles[i] = "NWDSReloadDS";
michael@0 1030 i++;
michael@0 1031
michael@0 1032 top.authors[i] = "zHTML xD.5375.0200.0003.0118.";
michael@0 1033 top.titles[i] = "NWDSRemoveAllTypes";
michael@0 1034 i++;
michael@0 1035
michael@0 1036 top.authors[i] = "zHTML xD.5375.0200.0003.0119.";
michael@0 1037 top.titles[i] = "NWDSRemoveAttrDef";
michael@0 1038 i++;
michael@0 1039
michael@0 1040 top.authors[i] = "zHTML xD.5375.0200.0003.0120.";
michael@0 1041 top.titles[i] = "NWDSRemoveClassDef";
michael@0 1042 i++;
michael@0 1043
michael@0 1044 top.authors[i] = "zHTML xD.5375.0200.0003.0121.";
michael@0 1045 top.titles[i] = "NWDSRemoveObject";
michael@0 1046 i++;
michael@0 1047
michael@0 1048 top.authors[i] = "zHTML xD.5375.0200.0003.0122.";
michael@0 1049 top.titles[i] = "NWDSRemovePartition";
michael@0 1050 i++;
michael@0 1051
michael@0 1052 top.authors[i] = "zHTML xD.5375.0200.0003.0123.";
michael@0 1053 top.titles[i] = "NWDSRemoveReplica";
michael@0 1054 i++;
michael@0 1055
michael@0 1056 top.authors[i] = "zHTML xD.5375.0200.0003.0124.";
michael@0 1057 top.titles[i] = "NWDSRemSecurityEquiv";
michael@0 1058 i++;
michael@0 1059
michael@0 1060 top.authors[i] = "zHTML xD.5375.0200.0003.0125.";
michael@0 1061 top.titles[i] = "NWDSRepairTimeStamps";
michael@0 1062 i++;
michael@0 1063
michael@0 1064 top.authors[i] = "zHTML xD.5375.0200.0003.0126.";
michael@0 1065 top.titles[i] = "NWDSReplaceAttrNameAbbrev";
michael@0 1066 i++;
michael@0 1067
michael@0 1068 top.authors[i] = "zHTML xD.5375.0200.0003.0127.";
michael@0 1069 top.titles[i] = "NWDSResolveName";
michael@0 1070 i++;
michael@0 1071
michael@0 1072 top.authors[i] = "zHTML xD.5375.0200.0003.0128.";
michael@0 1073 top.titles[i] = "NWDSRestoreObject";
michael@0 1074 i++;
michael@0 1075
michael@0 1076 top.authors[i] = "zHTML xD.5375.0200.0003.0129.";
michael@0 1077 top.titles[i] = "NWDSReturnBlockOfAvailableTrees";
michael@0 1078 i++;
michael@0 1079
michael@0 1080 top.authors[i] = "zHTML xD.5375.0200.0003.0130.";
michael@0 1081 top.titles[i] = "NWDSScanConnsForTrees";
michael@0 1082 i++;
michael@0 1083
michael@0 1084 top.authors[i] = "zHTML xD.5375.0200.0003.0131.";
michael@0 1085 top.titles[i] = "NWDSScanForAvailableTrees";
michael@0 1086 i++;
michael@0 1087
michael@0 1088 top.authors[i] = "zHTML xD.5375.0200.0003.0132.";
michael@0 1089 top.titles[i] = "NWDSSearch";
michael@0 1090 i++;
michael@0 1091
michael@0 1092 top.authors[i] = "zHTML xD.5375.0200.0003.0133.";
michael@0 1093 top.titles[i] = "NWDSSetContext";
michael@0 1094 i++;
michael@0 1095
michael@0 1096 top.authors[i] = "zHTML xD.5375.0200.0003.0134.";
michael@0 1097 top.titles[i] = "NWDSSetCurrentUser";
michael@0 1098 i++;
michael@0 1099
michael@0 1100 top.authors[i] = "zHTML xD.5375.0200.0003.0135.";
michael@0 1101 top.titles[i] = "NWDSSetDefNameContext";
michael@0 1102 i++;
michael@0 1103
michael@0 1104 top.authors[i] = "zHTML xD.5375.0200.0003.0136.";
michael@0 1105 top.titles[i] = "NWDSSetMonitoredConnection";
michael@0 1106 i++;
michael@0 1107
michael@0 1108 top.authors[i] = "zHTML xD.5375.0200.0003.0137.";
michael@0 1109 top.titles[i] = "NWDSSplitPartition";
michael@0 1110 i++;
michael@0 1111
michael@0 1112 top.authors[i] = "zHTML xD.5375.0200.0003.0138.";
michael@0 1113 top.titles[i] = "NWDSSyncPartition";
michael@0 1114 i++;
michael@0 1115
michael@0 1116 top.authors[i] = "zHTML xD.5375.0200.0003.0139.";
michael@0 1117 top.titles[i] = "NWDSSyncReplicaToServer";
michael@0 1118 i++;
michael@0 1119
michael@0 1120 top.authors[i] = "zHTML xD.5375.0200.0003.0140.";
michael@0 1121 top.titles[i] = "NWDSSyncSchema";
michael@0 1122 i++;
michael@0 1123
michael@0 1124 top.authors[i] = "zHTML xD.5375.0200.0003.0141.";
michael@0 1125 top.titles[i] = "NWDSUnlockConnection";
michael@0 1126 i++;
michael@0 1127
michael@0 1128 top.authors[i] = "zHTML xD.5375.0200.0003.0142.";
michael@0 1129 top.titles[i] = "NWDSVerifyObjectPassword";
michael@0 1130 i++;
michael@0 1131
michael@0 1132 top.authors[i] = "zHTML xD.5375.0200.0003.0143.";
michael@0 1133 top.titles[i] = "NWDSWhoAmI";
michael@0 1134 i++;
michael@0 1135
michael@0 1136 top.authors[i] = "zHTML xD.5375.0200.0003.0144.";
michael@0 1137 top.titles[i] = "NWGetDefaultNameContext";
michael@0 1138 i++;
michael@0 1139
michael@0 1140 top.authors[i] = "zHTML xD.5375.0200.0003.0145.";
michael@0 1141 top.titles[i] = "NWGetFileServerUTCTime";
michael@0 1142 i++;
michael@0 1143
michael@0 1144 top.authors[i] = "zHTML xD.5375.0200.0003.0146.";
michael@0 1145 top.titles[i] = "NWGetNumConnections";
michael@0 1146 i++;
michael@0 1147
michael@0 1148 top.authors[i] = "zHTML xD.5375.0200.0003.0147.";
michael@0 1149 top.titles[i] = "NWGetNWNetVersion";
michael@0 1150 i++;
michael@0 1151
michael@0 1152 top.authors[i] = "zHTML xD.5375.0200.0003.0148.";
michael@0 1153 top.titles[i] = "NWGetPreferredConnName";
michael@0 1154 i++;
michael@0 1155
michael@0 1156 top.authors[i] = "zHTML xD.5375.0200.0003.0149.";
michael@0 1157 top.titles[i] = "NWIsDSAuthenticated";
michael@0 1158 i++;
michael@0 1159
michael@0 1160 top.authors[i] = "zHTML xD.5375.0200.0003.0150.";
michael@0 1161 top.titles[i] = "NWIsDSServer";
michael@0 1162 i++;
michael@0 1163
michael@0 1164 top.authors[i] = "zHTML xD.5375.0200.0003.0151.";
michael@0 1165 top.titles[i] = "NWNetInit";
michael@0 1166 i++;
michael@0 1167
michael@0 1168 top.authors[i] = "zHTML xD.5375.0200.0003.0152.";
michael@0 1169 top.titles[i] = "NWNetTerm";
michael@0 1170 i++;
michael@0 1171
michael@0 1172 top.authors[i] = "zHTML xD.5375.0200.0003.0153.";
michael@0 1173 top.titles[i] = "NWSetDefaultNameContext";
michael@0 1174 i++;
michael@0 1175
michael@0 1176 top.authors[i] = "zHTML xD.5375.0200.0003.0154.";
michael@0 1177 top.titles[i] = "NWSetPreferredDSTree";
michael@0 1178 i++;
michael@0 1179
michael@0 1180 top.authors[i] = "zFLDR xC.5375.0200.0004.";
michael@0 1181 top.titles[i] = "Structures";
michael@0 1182 i++;
michael@0 1183
michael@0 1184 top.authors[i] = "zHTML xD.5375.0200.0004.0001.";
michael@0 1185 top.titles[i] = "Asn1ID_T";
michael@0 1186 i++;
michael@0 1187
michael@0 1188 top.authors[i] = "zHTML xD.5375.0200.0004.0002.";
michael@0 1189 top.titles[i] = "Attr_Info_T";
michael@0 1190 i++;
michael@0 1191
michael@0 1192 top.authors[i] = "zHTML xD.5375.0200.0004.0003.";
michael@0 1193 top.titles[i] = "Back_Link_T";
michael@0 1194 i++;
michael@0 1195
michael@0 1196 top.authors[i] = "zHTML xD.5375.0200.0004.0004.";
michael@0 1197 top.titles[i] = "Bit_String_T";
michael@0 1198 i++;
michael@0 1199
michael@0 1200 top.authors[i] = "zHTML xD.5375.0200.0004.0005.";
michael@0 1201 top.titles[i] = "Buf_T";
michael@0 1202 i++;
michael@0 1203
michael@0 1204 top.authors[i] = "zHTML xD.5375.0200.0004.0006.";
michael@0 1205 top.titles[i] = "CI_List_T";
michael@0 1206 i++;
michael@0 1207
michael@0 1208 top.authors[i] = "zHTML xD.5375.0200.0004.0007.";
michael@0 1209 top.titles[i] = "Class_Info_T";
michael@0 1210 i++;
michael@0 1211
michael@0 1212 top.authors[i] = "zHTML xD.5375.0200.0004.0008.";
michael@0 1213 top.titles[i] = "EMail_Address_T";
michael@0 1214 i++;
michael@0 1215
michael@0 1216 top.authors[i] = "zHTML xD.5375.0200.0004.0009.";
michael@0 1217 top.titles[i] = "Fax_Number_T";
michael@0 1218 i++;
michael@0 1219
michael@0 1220 top.authors[i] = "zHTML xD.5375.0200.0004.0010.";
michael@0 1221 top.titles[i] = "Filter_Cursor_T";
michael@0 1222 i++;
michael@0 1223
michael@0 1224 top.authors[i] = "zHTML xD.5375.0200.0004.0011.";
michael@0 1225 top.titles[i] = "Filter_Node_T";
michael@0 1226 i++;
michael@0 1227
michael@0 1228 top.authors[i] = "zHTML xD.5375.0200.0004.0012.";
michael@0 1229 top.titles[i] = "Hold_T";
michael@0 1230 i++;
michael@0 1231
michael@0 1232 top.authors[i] = "zHTML xD.5375.0200.0004.0013.";
michael@0 1233 top.titles[i] = "NDSOSVersion_T";
michael@0 1234 i++;
michael@0 1235
michael@0 1236 top.authors[i] = "zHTML xD.5375.0200.0004.0014.";
michael@0 1237 top.titles[i] = "NDSStatsInfo_T";
michael@0 1238 i++;
michael@0 1239
michael@0 1240 top.authors[i] = "zHTML xD.5375.0200.0004.0015.";
michael@0 1241 top.titles[i] = "Net_Address_T";
michael@0 1242 i++;
michael@0 1243
michael@0 1244 top.authors[i] = "zHTML xD.5375.0200.0004.0016.";
michael@0 1245 top.titles[i] = "NWDS_TimeStamp_T";
michael@0 1246 i++;
michael@0 1247
michael@0 1248 top.authors[i] = "zHTML xD.5375.0200.0004.0017.";
michael@0 1249 top.titles[i] = "Object_ACL_T";
michael@0 1250 i++;
michael@0 1251
michael@0 1252 top.authors[i] = "zHTML xD.5375.0200.0004.0018.";
michael@0 1253 top.titles[i] = "Object_Info_T";
michael@0 1254 i++;
michael@0 1255
michael@0 1256 top.authors[i] = "zHTML xD.5375.0200.0004.0019.";
michael@0 1257 top.titles[i] = "Octet_List_T";
michael@0 1258 i++;
michael@0 1259
michael@0 1260 top.authors[i] = "zHTML xD.5375.0200.0004.0020.";
michael@0 1261 top.titles[i] = "Octet_String_T";
michael@0 1262 i++;
michael@0 1263
michael@0 1264 top.authors[i] = "zHTML xD.5375.0200.0004.0021.";
michael@0 1265 top.titles[i] = "Path_T";
michael@0 1266 i++;
michael@0 1267
michael@0 1268 top.authors[i] = "zHTML xD.5375.0200.0004.0022.";
michael@0 1269 top.titles[i] = "Replica_Pointer_T";
michael@0 1270 i++;
michael@0 1271
michael@0 1272 top.authors[i] = "zHTML xD.5375.0200.0004.0023.";
michael@0 1273 top.titles[i] = "Syntax_Info_T";
michael@0 1274 i++;
michael@0 1275
michael@0 1276 top.authors[i] = "zHTML xD.5375.0200.0004.0024.";
michael@0 1277 top.titles[i] = "TimeStamp_T";
michael@0 1278 i++;
michael@0 1279
michael@0 1280 top.authors[i] = "zHTML xD.5375.0200.0004.0025.";
michael@0 1281 top.titles[i] = "Typed_Name_T";
michael@0 1282 i++;
michael@0 1283
michael@0 1284 top.authors[i] = "zHTML xD.5375.0200.0004.0026.";
michael@0 1285 top.titles[i] = "Unknown_Attr_T";
michael@0 1286 i++;
michael@0 1287
michael@0 1288 top.authors[i] = "zFLDR xC.5375.0200.0005.";
michael@0 1289 top.titles[i] = "Values";
michael@0 1290 i++;
michael@0 1291
michael@0 1292 top.authors[i] = "zHTML xD.5375.0200.0005.0001.";
michael@0 1293 top.titles[i] = "Attribute Constraint Flags";
michael@0 1294 i++;
michael@0 1295
michael@0 1296 top.authors[i] = "zHTML xD.5375.0200.0005.0002.";
michael@0 1297 top.titles[i] = "Attribute Value Flags";
michael@0 1298 i++;
michael@0 1299
michael@0 1300 top.authors[i] = "zHTML xD.5375.0200.0005.0003.";
michael@0 1301 top.titles[i] = "Buffer Operation Types and Related Functions";
michael@0 1302 i++;
michael@0 1303
michael@0 1304 top.authors[i] = "zHTML xD.5375.0200.0005.0004.";
michael@0 1305 top.titles[i] = "Class Flags";
michael@0 1306 i++;
michael@0 1307
michael@0 1308 top.authors[i] = "zHTML xD.5375.0200.0005.0005.";
michael@0 1309 top.titles[i] = "Change Types for Modifying Objects";
michael@0 1310 i++;
michael@0 1311
michael@0 1312 top.authors[i] = "zHTML xD.5375.0200.0005.0006.";
michael@0 1313 top.titles[i] = "Context Keys and Flags";
michael@0 1314 i++;
michael@0 1315
michael@0 1316 top.authors[i] = "zHTML xD.5375.0200.0005.0007.";
michael@0 1317 top.titles[i] = "Default Context Key Values";
michael@0 1318 i++;
michael@0 1319
michael@0 1320 top.authors[i] = "zHTML xD.5375.0200.0005.0008.";
michael@0 1321 top.titles[i] = "DCK_FLAGS Bit Values";
michael@0 1322 i++;
michael@0 1323
michael@0 1324 top.authors[i] = "zHTML xD.5375.0200.0005.0009.";
michael@0 1325 top.titles[i] = "DCK_NAME_FORM Values";
michael@0 1326 i++;
michael@0 1327
michael@0 1328 top.authors[i] = "zHTML xD.5375.0200.0005.0010.";
michael@0 1329 top.titles[i] = "DCK_CONFIDENCE Bit Values";
michael@0 1330 i++;
michael@0 1331
michael@0 1332 top.authors[i] = "zHTML xD.5375.0200.0005.0011.";
michael@0 1333 top.titles[i] = "DCK_DSI_FLAGS Values";
michael@0 1334 i++;
michael@0 1335
michael@0 1336 top.authors[i] = "zHTML xD.5375.0200.0005.0012.";
michael@0 1337 top.titles[i] = "DSI_ENTRY_FLAGS Values";
michael@0 1338 i++;
michael@0 1339
michael@0 1340 top.authors[i] = "zHTML xD.5375.0200.0005.0013.";
michael@0 1341 top.titles[i] = "Filter Tokens";
michael@0 1342 i++;
michael@0 1343
michael@0 1344 top.authors[i] = "zHTML xD.5375.0200.0005.0014.";
michael@0 1345 top.titles[i] = "Information Types for Attribute Definitions";
michael@0 1346 i++;
michael@0 1347
michael@0 1348 top.authors[i] = "zHTML xD.5375.0200.0005.0015.";
michael@0 1349 top.titles[i] = "Information Types for Class Definitions";
michael@0 1350 i++;
michael@0 1351
michael@0 1352 top.authors[i] = "zHTML xD.5375.0200.0005.0016.";
michael@0 1353 top.titles[i] = "Information Types for Search and Read";
michael@0 1354 i++;
michael@0 1355
michael@0 1356 top.authors[i] = "zHTML xD.5375.0200.0005.0017.";
michael@0 1357 top.titles[i] = "Name Space Types";
michael@0 1358 i++;
michael@0 1359
michael@0 1360 top.authors[i] = "zHTML xD.5375.0200.0005.0018.";
michael@0 1361 top.titles[i] = "NDS Access Control Rights";
michael@0 1362 i++;
michael@0 1363
michael@0 1364 top.authors[i] = "zHTML xD.5375.0200.0005.0019.";
michael@0 1365 top.titles[i] = "NDS Ping Flags";
michael@0 1366 i++;
michael@0 1367
michael@0 1368 top.authors[i] = "zHTML xD.5375.0200.0005.0020.";
michael@0 1369 top.titles[i] = "DSP Replica Information Flags";
michael@0 1370 i++;
michael@0 1371
michael@0 1372 top.authors[i] = "zHTML xD.5375.0200.0005.0021.";
michael@0 1373 top.titles[i] = "Network Address Types";
michael@0 1374 i++;
michael@0 1375
michael@0 1376 top.authors[i] = "zHTML xD.5375.0200.0005.0022.";
michael@0 1377 top.titles[i] = "Scope Flags";
michael@0 1378 i++;
michael@0 1379
michael@0 1380 top.authors[i] = "zHTML xD.5375.0200.0005.0023.";
michael@0 1381 top.titles[i] = "Replica Types";
michael@0 1382 i++;
michael@0 1383
michael@0 1384 top.authors[i] = "zHTML xD.5375.0200.0005.0024.";
michael@0 1385 top.titles[i] = "Replica States";
michael@0 1386 i++;
michael@0 1387
michael@0 1388 top.authors[i] = "zHTML xD.5375.0200.0005.0025.";
michael@0 1389 top.titles[i] = "Syntax Matching Flags";
michael@0 1390 i++;
michael@0 1391
michael@0 1392 top.authors[i] = "zHTML xD.5375.0200.0005.0026.";
michael@0 1393 top.titles[i] = "Syntax IDs";
michael@0 1394 i++;
michael@0 1395
michael@0 1396 top.authors[i] = "zFLDR xC.5375.0200.0006.";
michael@0 1397 top.titles[i] = "NDS Example Code";
michael@0 1398 i++;
michael@0 1399
michael@0 1400 top.authors[i] = "zHTML xD.5375.0200.0006.0001.";
michael@0 1401 top.titles[i] = "Context Handle";
michael@0 1402 i++;
michael@0 1403
michael@0 1404 top.authors[i] = "zHTML xD.5375.0200.0006.0002.";
michael@0 1405 top.titles[i] = "Object and Attribute";
michael@0 1406 i++;
michael@0 1407
michael@0 1408 top.authors[i] = "zHTML xD.5375.0200.0006.0003.";
michael@0 1409 top.titles[i] = "Browsing and Searching";
michael@0 1410 i++;
michael@0 1411
michael@0 1412 top.authors[i] = "zHTML xD.5375.0200.0006.0004.";
michael@0 1413 top.titles[i] = "Batch Modification of Objects and Attributes";
michael@0 1414 i++;
michael@0 1415
michael@0 1416 top.authors[i] = "zHTML xD.5375.0200.0006.0005.";
michael@0 1417 top.titles[i] = "Schema";
michael@0 1418 i++;
michael@0 1419
michael@0 1420 top.authors[i] = "zHTML xC.5375.0200.0007.";
michael@0 1421 top.titles[i] = "Revision History";
michael@0 1422 i++;
michael@0 1423
michael@0 1424 top.authors[i] = "zFLDR xB.5375.0500.";
michael@0 1425 top.titles[i] = "NDS Schema Reference";
michael@0 1426 i++;
michael@0 1427
michael@0 1428 top.authors[i] = "zFLDR xC.5375.0500.0001.";
michael@0 1429 top.titles[i] = "Schema Concepts";
michael@0 1430 i++;
michael@0 1431
michael@0 1432 top.authors[i] = "zHTML xD.5375.0500.0001.0001.";
michael@0 1433 top.titles[i] = "Schema Structure";
michael@0 1434 i++;
michael@0 1435
michael@0 1436 top.authors[i] = "zHTML xD.5375.0500.0001.0002.";
michael@0 1437 top.titles[i] = "Schema Components";
michael@0 1438 i++;
michael@0 1439
michael@0 1440 top.authors[i] = "zHTML xD.5375.0500.0001.0003.";
michael@0 1441 top.titles[i] = "Object Classes";
michael@0 1442 i++;
michael@0 1443
michael@0 1444 top.authors[i] = "zHTML xD.5375.0500.0001.0004.";
michael@0 1445 top.titles[i] = "Naming Attributes";
michael@0 1446 i++;
michael@0 1447
michael@0 1448 top.authors[i] = "zHTML xD.5375.0500.0001.0005.";
michael@0 1449 top.titles[i] = "Containment Classes";
michael@0 1450 i++;
michael@0 1451
michael@0 1452 top.authors[i] = "zHTML xD.5375.0500.0001.0006.";
michael@0 1453 top.titles[i] = "Super Classes";
michael@0 1454 i++;
michael@0 1455
michael@0 1456 top.authors[i] = "zHTML xD.5375.0500.0001.0007.";
michael@0 1457 top.titles[i] = "Object Class Flags";
michael@0 1458 i++;
michael@0 1459
michael@0 1460 top.authors[i] = "zHTML xD.5375.0500.0001.0008.";
michael@0 1461 top.titles[i] = "Mandatory and Optional Attributes";
michael@0 1462 i++;
michael@0 1463
michael@0 1464 top.authors[i] = "zHTML xD.5375.0500.0001.0009.";
michael@0 1465 top.titles[i] = "Default ACL Templates";
michael@0 1466 i++;
michael@0 1467
michael@0 1468 top.authors[i] = "zHTML xD.5375.0500.0001.0010.";
michael@0 1469 top.titles[i] = "Auxiliary Classes";
michael@0 1470 i++;
michael@0 1471
michael@0 1472 top.authors[i] = "zHTML xD.5375.0500.0001.0011.";
michael@0 1473 top.titles[i] = "Attribute Type Definitions";
michael@0 1474 i++;
michael@0 1475
michael@0 1476 top.authors[i] = "zHTML xD.5375.0500.0001.0012.";
michael@0 1477 top.titles[i] = "Attribute Syntax Definitions";
michael@0 1478 i++;
michael@0 1479
michael@0 1480 top.authors[i] = "zHTML xD.5375.0500.0001.0013.";
michael@0 1481 top.titles[i] = "Schema Extensions";
michael@0 1482 i++;
michael@0 1483
michael@0 1484 top.authors[i] = "zFLDR xC.5375.0500.0002.";
michael@0 1485 top.titles[i] = "Base Object Class Definitions";
michael@0 1486 i++;
michael@0 1487
michael@0 1488 top.authors[i] = "zHTML xD.5375.0500.0002.0001.";
michael@0 1489 top.titles[i] = "AFP Server";
michael@0 1490 i++;
michael@0 1491
michael@0 1492 top.authors[i] = "zHTML xD.5375.0500.0002.0002.";
michael@0 1493 top.titles[i] = "Alias";
michael@0 1494 i++;
michael@0 1495
michael@0 1496 top.authors[i] = "zHTML xD.5375.0500.0002.0003.";
michael@0 1497 top.titles[i] = "applicationEntity";
michael@0 1498 i++;
michael@0 1499
michael@0 1500 top.authors[i] = "zHTML xD.5375.0500.0002.0004.";
michael@0 1501 top.titles[i] = "applicationProcess";
michael@0 1502 i++;
michael@0 1503
michael@0 1504 top.authors[i] = "zHTML xD.5375.0500.0002.0005.";
michael@0 1505 top.titles[i] = "Audit:File Object";
michael@0 1506 i++;
michael@0 1507
michael@0 1508 top.authors[i] = "zHTML xD.5375.0500.0002.0006.";
michael@0 1509 top.titles[i] = "Bindery Object";
michael@0 1510 i++;
michael@0 1511
michael@0 1512 top.authors[i] = "zHTML xD.5375.0500.0002.0007.";
michael@0 1513 top.titles[i] = "Bindery Queue";
michael@0 1514 i++;
michael@0 1515
michael@0 1516 top.authors[i] = "zHTML xD.5375.0500.0002.0008.";
michael@0 1517 top.titles[i] = "certificationAuthority";
michael@0 1518 i++;
michael@0 1519
michael@0 1520 top.authors[i] = "zHTML xD.5375.0500.0002.0009.";
michael@0 1521 top.titles[i] = "CommExec";
michael@0 1522 i++;
michael@0 1523
michael@0 1524 top.authors[i] = "zHTML xD.5375.0500.0002.0010.";
michael@0 1525 top.titles[i] = "Computer";
michael@0 1526 i++;
michael@0 1527
michael@0 1528 top.authors[i] = "zHTML xD.5375.0500.0002.0011.";
michael@0 1529 top.titles[i] = "Country";
michael@0 1530 i++;
michael@0 1531
michael@0 1532 top.authors[i] = "zHTML xD.5375.0500.0002.0012.";
michael@0 1533 top.titles[i] = "cRLDistributionPoint";
michael@0 1534 i++;
michael@0 1535
michael@0 1536 top.authors[i] = "zHTML xD.5375.0500.0002.0013.";
michael@0 1537 top.titles[i] = "dcObject";
michael@0 1538 i++;
michael@0 1539
michael@0 1540 top.authors[i] = "zHTML xD.5375.0500.0002.0014.";
michael@0 1541 top.titles[i] = "Device";
michael@0 1542 i++;
michael@0 1543
michael@0 1544 top.authors[i] = "zHTML xD.5375.0500.0002.0015.";
michael@0 1545 top.titles[i] = "Directory Map";
michael@0 1546 i++;
michael@0 1547
michael@0 1548 top.authors[i] = "zHTML xD.5375.0500.0002.0016.";
michael@0 1549 top.titles[i] = "domain";
michael@0 1550 i++;
michael@0 1551
michael@0 1552 top.authors[i] = "zHTML xD.5375.0500.0002.0017.";
michael@0 1553 top.titles[i] = "dSA";
michael@0 1554 i++;
michael@0 1555
michael@0 1556 top.authors[i] = "zHTML xD.5375.0500.0002.0018.";
michael@0 1557 top.titles[i] = "External Entity";
michael@0 1558 i++;
michael@0 1559
michael@0 1560 top.authors[i] = "zHTML xD.5375.0500.0002.0019.";
michael@0 1561 top.titles[i] = "Group";
michael@0 1562 i++;
michael@0 1563
michael@0 1564 top.authors[i] = "zHTML xD.5375.0500.0002.0020.";
michael@0 1565 top.titles[i] = "LDAP Group";
michael@0 1566 i++;
michael@0 1567
michael@0 1568 top.authors[i] = "zHTML xD.5375.0500.0002.0021.";
michael@0 1569 top.titles[i] = "LDAP Server";
michael@0 1570 i++;
michael@0 1571
michael@0 1572 top.authors[i] = "zHTML xD.5375.0500.0002.0022.";
michael@0 1573 top.titles[i] = "List";
michael@0 1574 i++;
michael@0 1575
michael@0 1576 top.authors[i] = "zHTML xD.5375.0500.0002.0023.";
michael@0 1577 top.titles[i] = "Locality";
michael@0 1578 i++;
michael@0 1579
michael@0 1580 top.authors[i] = "zHTML xD.5375.0500.0002.0024.";
michael@0 1581 top.titles[i] = "MASV:Security Policy";
michael@0 1582 i++;
michael@0 1583
michael@0 1584 top.authors[i] = "zHTML xD.5375.0500.0002.0025.";
michael@0 1585 top.titles[i] = "Message Routing Group";
michael@0 1586 i++;
michael@0 1587
michael@0 1588 top.authors[i] = "zHTML xD.5375.0500.0002.0026.";
michael@0 1589 top.titles[i] = "Messaging Server";
michael@0 1590 i++;
michael@0 1591
michael@0 1592 top.authors[i] = "zHTML xD.5375.0500.0002.0027.";
michael@0 1593 top.titles[i] = "NCP Server";
michael@0 1594 i++;
michael@0 1595
michael@0 1596 top.authors[i] = "zHTML xD.5375.0500.0002.0028.";
michael@0 1597 top.titles[i] = "ndsLoginProperties";
michael@0 1598 i++;
michael@0 1599
michael@0 1600 top.authors[i] = "zHTML xD.5375.0500.0002.0029.";
michael@0 1601 top.titles[i] = "NDSPKI:Certificate Authority";
michael@0 1602 i++;
michael@0 1603
michael@0 1604 top.authors[i] = "zHTML xD.5375.0500.0002.0030.";
michael@0 1605 top.titles[i] = "NDSPKI:Key Material";
michael@0 1606 i++;
michael@0 1607
michael@0 1608 top.authors[i] = "zHTML xD.5375.0500.0002.0031.";
michael@0 1609 top.titles[i] = "NDSPKI:SD Key Access Partition";
michael@0 1610 i++;
michael@0 1611
michael@0 1612 top.authors[i] = "zHTML xD.5375.0500.0002.0032.";
michael@0 1613 top.titles[i] = "NDSPKI:SD Key List";
michael@0 1614 i++;
michael@0 1615
michael@0 1616 top.authors[i] = "zHTML xD.5375.0500.0002.0033.";
michael@0 1617 top.titles[i] = "NDSPKI:Trusted Root";
michael@0 1618 i++;
michael@0 1619
michael@0 1620 top.authors[i] = "zHTML xD.5375.0500.0002.0034.";
michael@0 1621 top.titles[i] = "NDSPKI:Trusted Root Object";
michael@0 1622 i++;
michael@0 1623
michael@0 1624 top.authors[i] = "zHTML xD.5375.0500.0002.0035.";
michael@0 1625 top.titles[i] = "NSCP:groupOfCertificates";
michael@0 1626 i++;
michael@0 1627
michael@0 1628 top.authors[i] = "zHTML xD.5375.0500.0002.0036.";
michael@0 1629 top.titles[i] = "NSCP:mailGroup1";
michael@0 1630 i++;
michael@0 1631
michael@0 1632 top.authors[i] = "zHTML xD.5375.0500.0002.0037.";
michael@0 1633 top.titles[i] = "NSCP:mailRecipient";
michael@0 1634 i++;
michael@0 1635
michael@0 1636 top.authors[i] = "zHTML xD.5375.0500.0002.0038.";
michael@0 1637 top.titles[i] = "NSCP:NetscapeMailServer5";
michael@0 1638 i++;
michael@0 1639
michael@0 1640 top.authors[i] = "zHTML xD.5375.0500.0002.0039.";
michael@0 1641 top.titles[i] = "NSCP:NetscapeServer5";
michael@0 1642 i++;
michael@0 1643
michael@0 1644 top.authors[i] = "zHTML xD.5375.0500.0002.0040.";
michael@0 1645 top.titles[i] = "NSCP:nginfo3";
michael@0 1646 i++;
michael@0 1647
michael@0 1648 top.authors[i] = "zHTML xD.5375.0500.0002.0041.";
michael@0 1649 top.titles[i] = "NSCP:nsLicenseUser";
michael@0 1650 i++;
michael@0 1651
michael@0 1652 top.authors[i] = "zHTML xD.5375.0500.0002.0042.";
michael@0 1653 top.titles[i] = "Organization";
michael@0 1654 i++;
michael@0 1655
michael@0 1656 top.authors[i] = "zHTML xD.5375.0500.0002.0043.";
michael@0 1657 top.titles[i] = "Organizational Person";
michael@0 1658 i++;
michael@0 1659
michael@0 1660 top.authors[i] = "zHTML xD.5375.0500.0002.0044.";
michael@0 1661 top.titles[i] = "Organizational Role";
michael@0 1662 i++;
michael@0 1663
michael@0 1664 top.authors[i] = "zHTML xD.5375.0500.0002.0045.";
michael@0 1665 top.titles[i] = "Organizational Unit";
michael@0 1666 i++;
michael@0 1667
michael@0 1668 top.authors[i] = "zHTML xD.5375.0500.0002.0046.";
michael@0 1669 top.titles[i] = "Partition";
michael@0 1670 i++;
michael@0 1671
michael@0 1672 top.authors[i] = "zHTML xD.5375.0500.0002.0047.";
michael@0 1673 top.titles[i] = "Person";
michael@0 1674 i++;
michael@0 1675
michael@0 1676 top.authors[i] = "zHTML xD.5375.0500.0002.0048.";
michael@0 1677 top.titles[i] = "pkiCA";
michael@0 1678 i++;
michael@0 1679
michael@0 1680 top.authors[i] = "zHTML xD.5375.0500.0002.0049.";
michael@0 1681 top.titles[i] = "pkiUser";
michael@0 1682 i++;
michael@0 1683
michael@0 1684 top.authors[i] = "zHTML xD.5375.0500.0002.0050.";
michael@0 1685 top.titles[i] = "Print Server";
michael@0 1686 i++;
michael@0 1687
michael@0 1688 top.authors[i] = "zHTML xD.5375.0500.0002.0051.";
michael@0 1689 top.titles[i] = "Printer";
michael@0 1690 i++;
michael@0 1691
michael@0 1692 top.authors[i] = "zHTML xD.5375.0500.0002.0052.";
michael@0 1693 top.titles[i] = "Profile";
michael@0 1694 i++;
michael@0 1695
michael@0 1696 top.authors[i] = "zHTML xD.5375.0500.0002.0053.";
michael@0 1697 top.titles[i] = "Queue";
michael@0 1698 i++;
michael@0 1699
michael@0 1700 top.authors[i] = "zHTML xD.5375.0500.0002.0054.";
michael@0 1701 top.titles[i] = "Resource";
michael@0 1702 i++;
michael@0 1703
michael@0 1704 top.authors[i] = "zHTML xD.5375.0500.0002.0055.";
michael@0 1705 top.titles[i] = "SAS:Security";
michael@0 1706 i++;
michael@0 1707
michael@0 1708 top.authors[i] = "zHTML xD.5375.0500.0002.0056.";
michael@0 1709 top.titles[i] = "SAS:Service";
michael@0 1710 i++;
michael@0 1711
michael@0 1712 top.authors[i] = "zHTML xD.5375.0500.0002.0057.";
michael@0 1713 top.titles[i] = "Server";
michael@0 1714 i++;
michael@0 1715
michael@0 1716 top.authors[i] = "zHTML xD.5375.0500.0002.0058.";
michael@0 1717 top.titles[i] = "strongAuthenticationUser";
michael@0 1718 i++;
michael@0 1719
michael@0 1720 top.authors[i] = "zHTML xD.5375.0500.0002.0059.";
michael@0 1721 top.titles[i] = "Template";
michael@0 1722 i++;
michael@0 1723
michael@0 1724 top.authors[i] = "zHTML xD.5375.0500.0002.0060.";
michael@0 1725 top.titles[i] = "Top";
michael@0 1726 i++;
michael@0 1727
michael@0 1728 top.authors[i] = "zHTML xD.5375.0500.0002.0061.";
michael@0 1729 top.titles[i] = "Tree Root";
michael@0 1730 i++;
michael@0 1731
michael@0 1732 top.authors[i] = "zHTML xD.5375.0500.0002.0062.";
michael@0 1733 top.titles[i] = "Unknown";
michael@0 1734 i++;
michael@0 1735
michael@0 1736 top.authors[i] = "zHTML xD.5375.0500.0002.0063.";
michael@0 1737 top.titles[i] = "User";
michael@0 1738 i++;
michael@0 1739
michael@0 1740 top.authors[i] = "zHTML xD.5375.0500.0002.0064.";
michael@0 1741 top.titles[i] = "userSecurityInformation";
michael@0 1742 i++;
michael@0 1743
michael@0 1744 top.authors[i] = "zHTML xD.5375.0500.0002.0065.";
michael@0 1745 top.titles[i] = "Volume";
michael@0 1746 i++;
michael@0 1747
michael@0 1748 top.authors[i] = "zHTML xD.5375.0500.0002.0066.";
michael@0 1749 top.titles[i] = "WANMAN:LAN Area";
michael@0 1750 i++;
michael@0 1751
michael@0 1752 top.authors[i] = "zFLDR xC.5375.0500.0003.";
michael@0 1753 top.titles[i] = "Novell Object Class Extensions";
michael@0 1754 i++;
michael@0 1755
michael@0 1756 top.authors[i] = "zHTML xD.5375.0500.0003.0001.";
michael@0 1757 top.titles[i] = "Entrust:CRLDistributionPoint";
michael@0 1758 i++;
michael@0 1759
michael@0 1760 top.authors[i] = "zHTML xD.5375.0500.0003.0002.";
michael@0 1761 top.titles[i] = "inetOrgPerson";
michael@0 1762 i++;
michael@0 1763
michael@0 1764 top.authors[i] = "zHTML xD.5375.0500.0003.0003.";
michael@0 1765 top.titles[i] = "NDPS Broker";
michael@0 1766 i++;
michael@0 1767
michael@0 1768 top.authors[i] = "zHTML xD.5375.0500.0003.0004.";
michael@0 1769 top.titles[i] = "NDPS Manager";
michael@0 1770 i++;
michael@0 1771
michael@0 1772 top.authors[i] = "zHTML xD.5375.0500.0003.0005.";
michael@0 1773 top.titles[i] = "NDPS Printer";
michael@0 1774 i++;
michael@0 1775
michael@0 1776 top.authors[i] = "zHTML xD.5375.0500.0003.0006.";
michael@0 1777 top.titles[i] = "NDSCat:Catalog";
michael@0 1778 i++;
michael@0 1779
michael@0 1780 top.authors[i] = "zHTML xD.5375.0500.0003.0007.";
michael@0 1781 top.titles[i] = "NDSCat:Master Catalog";
michael@0 1782 i++;
michael@0 1783
michael@0 1784 top.authors[i] = "zHTML xD.5375.0500.0003.0008.";
michael@0 1785 top.titles[i] = "NDSCat:Slave Catalog";
michael@0 1786 i++;
michael@0 1787
michael@0 1788 top.authors[i] = "zHTML xD.5375.0500.0003.0009.";
michael@0 1789 top.titles[i] = "NetSvc";
michael@0 1790 i++;
michael@0 1791
michael@0 1792 top.authors[i] = "zHTML xD.5375.0500.0003.0010.";
michael@0 1793 top.titles[i] = "NLS:License Certificate";
michael@0 1794 i++;
michael@0 1795
michael@0 1796 top.authors[i] = "zHTML xD.5375.0500.0003.0011.";
michael@0 1797 top.titles[i] = "NLS:License Server";
michael@0 1798 i++;
michael@0 1799
michael@0 1800 top.authors[i] = "zHTML xD.5375.0500.0003.0012.";
michael@0 1801 top.titles[i] = "NLS:Product Container";
michael@0 1802 i++;
michael@0 1803
michael@0 1804 top.authors[i] = "zHTML xD.5375.0500.0003.0013.";
michael@0 1805 top.titles[i] = "NSCP:groupOfUniqueNames5";
michael@0 1806 i++;
michael@0 1807
michael@0 1808 top.authors[i] = "zHTML xD.5375.0500.0003.0014.";
michael@0 1809 top.titles[i] = "NSCP:mailGroup5";
michael@0 1810 i++;
michael@0 1811
michael@0 1812 top.authors[i] = "zHTML xD.5375.0500.0003.0015.";
michael@0 1813 top.titles[i] = "NSCP:Nginfo";
michael@0 1814 i++;
michael@0 1815
michael@0 1816 top.authors[i] = "zHTML xD.5375.0500.0003.0016.";
michael@0 1817 top.titles[i] = "NSCP:Nginfo2";
michael@0 1818 i++;
michael@0 1819
michael@0 1820 top.authors[i] = "zHTML xD.5375.0500.0003.0017.";
michael@0 1821 top.titles[i] = "residentialPerson";
michael@0 1822 i++;
michael@0 1823
michael@0 1824 top.authors[i] = "zHTML xD.5375.0500.0003.0018.";
michael@0 1825 top.titles[i] = "SLP Scope Unit";
michael@0 1826 i++;
michael@0 1827
michael@0 1828 top.authors[i] = "zHTML xD.5375.0500.0003.0019.";
michael@0 1829 top.titles[i] = "SLP Directory Agent";
michael@0 1830 i++;
michael@0 1831
michael@0 1832 top.authors[i] = "zHTML xD.5375.0500.0003.0020.";
michael@0 1833 top.titles[i] = "SLP Service";
michael@0 1834 i++;
michael@0 1835
michael@0 1836 top.authors[i] = "zHTML xD.5375.0500.0003.0021.";
michael@0 1837 top.titles[i] = "SMS SMDR Class";
michael@0 1838 i++;
michael@0 1839
michael@0 1840 top.authors[i] = "zFLDR xC.5375.0500.0004.";
michael@0 1841 top.titles[i] = "Graphical View of Object Class Inheritance";
michael@0 1842 i++;
michael@0 1843
michael@0 1844 top.authors[i] = "zHTML xD.5375.0500.0004.0001.";
michael@0 1845 top.titles[i] = "Alias and Bindery Object Classes";
michael@0 1846 i++;
michael@0 1847
michael@0 1848 top.authors[i] = "zHTML xD.5375.0500.0004.0002.";
michael@0 1849 top.titles[i] = "Tree Root, domain, and Unknown";
michael@0 1850 i++;
michael@0 1851
michael@0 1852 top.authors[i] = "zHTML xD.5375.0500.0004.0003.";
michael@0 1853 top.titles[i] = "Computer, Country, Device, and Printer";
michael@0 1854 i++;
michael@0 1855
michael@0 1856 top.authors[i] = "zHTML xD.5375.0500.0004.0004.";
michael@0 1857 top.titles[i] = "List and Locality";
michael@0 1858 i++;
michael@0 1859
michael@0 1860 top.authors[i] = "zHTML xD.5375.0500.0004.0005.";
michael@0 1861 top.titles[i] = "Organizational Role and Partition";
michael@0 1862 i++;
michael@0 1863
michael@0 1864 top.authors[i] = "zHTML xD.5375.0500.0004.0006.";
michael@0 1865 top.titles[i] = "ndsLoginProperties, Organization, and Organizational Unit";
michael@0 1866 i++;
michael@0 1867
michael@0 1868 top.authors[i] = "zHTML xD.5375.0500.0004.0007.";
michael@0 1869 top.titles[i] = "ndsLoginProperties, Person, Organizational Person, and User";
michael@0 1870 i++;
michael@0 1871
michael@0 1872 top.authors[i] = "zHTML xD.5375.0500.0004.0008.";
michael@0 1873 top.titles[i] = "Directory Map, Profile, Queues, Resource, and Volume";
michael@0 1874 i++;
michael@0 1875
michael@0 1876 top.authors[i] = "zHTML xD.5375.0500.0004.0009.";
michael@0 1877 top.titles[i] = "Servers (AFP, Messaging, NCP, Print) and CommExec";
michael@0 1878 i++;
michael@0 1879
michael@0 1880 top.authors[i] = "zHTML xD.5375.0500.0004.0010.";
michael@0 1881 top.titles[i] = "External Entity, Group, and Message Routing Group";
michael@0 1882 i++;
michael@0 1883
michael@0 1884 top.authors[i] = "zFLDR xC.5375.0500.0005.";
michael@0 1885 top.titles[i] = "Base Attribute Definitions";
michael@0 1886 i++;
michael@0 1887
michael@0 1888 top.authors[i] = "zHTML xD.5375.0500.0005.0001.";
michael@0 1889 top.titles[i] = "Aliased Object Name";
michael@0 1890 i++;
michael@0 1891
michael@0 1892 top.authors[i] = "zHTML xD.5375.0500.0005.0002.";
michael@0 1893 top.titles[i] = "Account Balance";
michael@0 1894 i++;
michael@0 1895
michael@0 1896 top.authors[i] = "zHTML xD.5375.0500.0005.0003.";
michael@0 1897 top.titles[i] = "ACL";
michael@0 1898 i++;
michael@0 1899
michael@0 1900 top.authors[i] = "zHTML xD.5375.0500.0005.0004.";
michael@0 1901 top.titles[i] = "Allow Unlimited Credit";
michael@0 1902 i++;
michael@0 1903
michael@0 1904 top.authors[i] = "zHTML xD.5375.0500.0005.0005.";
michael@0 1905 top.titles[i] = "associatedName";
michael@0 1906 i++;
michael@0 1907
michael@0 1908 top.authors[i] = "zHTML xD.5375.0500.0005.0006.";
michael@0 1909 top.titles[i] = "attributeCertificate";
michael@0 1910 i++;
michael@0 1911
michael@0 1912 top.authors[i] = "zHTML xD.5375.0500.0005.0007.";
michael@0 1913 top.titles[i] = "Audit:A Encryption Key";
michael@0 1914 i++;
michael@0 1915
michael@0 1916 top.authors[i] = "zHTML xD.5375.0500.0005.0008.";
michael@0 1917 top.titles[i] = "Audit:B Encryption Key";
michael@0 1918 i++;
michael@0 1919
michael@0 1920 top.authors[i] = "zHTML xD.5375.0500.0005.0009.";
michael@0 1921 top.titles[i] = "Audit:Contents";
michael@0 1922 i++;
michael@0 1923
michael@0 1924 top.authors[i] = "zHTML xD.5375.0500.0005.0010.";
michael@0 1925 top.titles[i] = "Audit:Current Encryption Key";
michael@0 1926 i++;
michael@0 1927
michael@0 1928 top.authors[i] = "zHTML xD.5375.0500.0005.0011.";
michael@0 1929 top.titles[i] = "Audit:File Link";
michael@0 1930 i++;
michael@0 1931
michael@0 1932 top.authors[i] = "zHTML xD.5375.0500.0005.0012.";
michael@0 1933 top.titles[i] = "Audit:Link List";
michael@0 1934 i++;
michael@0 1935
michael@0 1936 top.authors[i] = "zHTML xD.5375.0500.0005.0013.";
michael@0 1937 top.titles[i] = "Audit:Path";
michael@0 1938 i++;
michael@0 1939
michael@0 1940 top.authors[i] = "zHTML xD.5375.0500.0005.0014.";
michael@0 1941 top.titles[i] = "Audit:Policy";
michael@0 1942 i++;
michael@0 1943
michael@0 1944 top.authors[i] = "zHTML xD.5375.0500.0005.0015.";
michael@0 1945 top.titles[i] = "Audit:Type";
michael@0 1946 i++;
michael@0 1947
michael@0 1948 top.authors[i] = "zHTML xD.5375.0500.0005.0016.";
michael@0 1949 top.titles[i] = "authorityRevocationList";
michael@0 1950 i++;
michael@0 1951
michael@0 1952 top.authors[i] = "zHTML xD.5375.0500.0005.0017.";
michael@0 1953 top.titles[i] = "Authority Revocation";
michael@0 1954 i++;
michael@0 1955
michael@0 1956 top.authors[i] = "zHTML xD.5375.0500.0005.0018.";
michael@0 1957 top.titles[i] = "AuxClass Object Class Backup";
michael@0 1958 i++;
michael@0 1959
michael@0 1960 top.authors[i] = "zHTML xD.5375.0500.0005.0019.";
michael@0 1961 top.titles[i] = "Auxiliary Class Flag";
michael@0 1962 i++;
michael@0 1963
michael@0 1964 top.authors[i] = "zHTML xD.5375.0500.0005.0020.";
michael@0 1965 top.titles[i] = "Back Link";
michael@0 1966 i++;
michael@0 1967
michael@0 1968 top.authors[i] = "zHTML xD.5375.0500.0005.0021.";
michael@0 1969 top.titles[i] = "Bindery Object Restriction";
michael@0 1970 i++;
michael@0 1971
michael@0 1972 top.authors[i] = "zHTML xD.5375.0500.0005.0022.";
michael@0 1973 top.titles[i] = "Bindery Property";
michael@0 1974 i++;
michael@0 1975
michael@0 1976 top.authors[i] = "zHTML xD.5375.0500.0005.0023.";
michael@0 1977 top.titles[i] = "Bindery Restriction Level";
michael@0 1978 i++;
michael@0 1979
michael@0 1980 top.authors[i] = "zHTML xD.5375.0500.0005.0024.";
michael@0 1981 top.titles[i] = "Bindery Type";
michael@0 1982 i++;
michael@0 1983
michael@0 1984 top.authors[i] = "zHTML xD.5375.0500.0005.0025.";
michael@0 1985 top.titles[i] = "businessCategory";
michael@0 1986 i++;
michael@0 1987
michael@0 1988 top.authors[i] = "zHTML xD.5375.0500.0005.0026.";
michael@0 1989 top.titles[i] = "";
michael@0 1990 i++;
michael@0 1991
michael@0 1992 top.authors[i] = "zHTML xD.5375.0500.0005.0027.";
michael@0 1993 top.titles[i] = "cACertificate";
michael@0 1994 i++;
michael@0 1995
michael@0 1996 top.authors[i] = "zHTML xD.5375.0500.0005.0028.";
michael@0 1997 top.titles[i] = "CA Private Key";
michael@0 1998 i++;
michael@0 1999
michael@0 2000 top.authors[i] = "zHTML xD.5375.0500.0005.0029.";
michael@0 2001 top.titles[i] = "CA Public Key";
michael@0 2002 i++;
michael@0 2003
michael@0 2004 top.authors[i] = "zHTML xD.5375.0500.0005.0030.";
michael@0 2005 top.titles[i] = "Cartridge";
michael@0 2006 i++;
michael@0 2007
michael@0 2008 top.authors[i] = "zHTML xD.5375.0500.0005.0031.";
michael@0 2009 top.titles[i] = "certificateRevocationList";
michael@0 2010 i++;
michael@0 2011
michael@0 2012 top.authors[i] = "zHTML xD.5375.0500.0005.0032.";
michael@0 2013 top.titles[i] = "Certificate Revocation";
michael@0 2014 i++;
michael@0 2015
michael@0 2016 top.authors[i] = "zHTML xD.5375.0500.0005.0033.";
michael@0 2017 top.titles[i] = "Certificate Validity Interval";
michael@0 2018 i++;
michael@0 2019
michael@0 2020 top.authors[i] = "zHTML xD.5375.0500.0005.0034.";
michael@0 2021 top.titles[i] = "crossCertificatePair";
michael@0 2022 i++;
michael@0 2023
michael@0 2024 top.authors[i] = "zHTML xD.5375.0500.0005.0035.";
michael@0 2025 top.titles[i] = "";
michael@0 2026 i++;
michael@0 2027
michael@0 2028 top.authors[i] = "zHTML xD.5375.0500.0005.0036.";
michael@0 2029 top.titles[i] = "Convergence";
michael@0 2030 i++;
michael@0 2031
michael@0 2032 top.authors[i] = "zHTML xD.5375.0500.0005.0037.";
michael@0 2033 top.titles[i] = "Cross Certificate Pair";
michael@0 2034 i++;
michael@0 2035
michael@0 2036 top.authors[i] = "zHTML xD.5375.0500.0005.0038.";
michael@0 2037 top.titles[i] = "dc";
michael@0 2038 i++;
michael@0 2039
michael@0 2040 top.authors[i] = "zHTML xD.5375.0500.0005.0039.";
michael@0 2041 top.titles[i] = "Default Queue";
michael@0 2042 i++;
michael@0 2043
michael@0 2044 top.authors[i] = "zHTML xD.5375.0500.0005.0040.";
michael@0 2045 top.titles[i] = "deltaRevocationList";
michael@0 2046 i++;
michael@0 2047
michael@0 2048 top.authors[i] = "zHTML xD.5375.0500.0005.0041.";
michael@0 2049 top.titles[i] = "departmentNumber";
michael@0 2050 i++;
michael@0 2051
michael@0 2052 top.authors[i] = "zHTML xD.5375.0500.0005.0042.";
michael@0 2053 top.titles[i] = "Description";
michael@0 2054 i++;
michael@0 2055
michael@0 2056 top.authors[i] = "zHTML xD.5375.0500.0005.0043.";
michael@0 2057 top.titles[i] = "destinationIndicator";
michael@0 2058 i++;
michael@0 2059
michael@0 2060 top.authors[i] = "zHTML xD.5375.0500.0005.0044.";
michael@0 2061 top.titles[i] = "Detect Intruder";
michael@0 2062 i++;
michael@0 2063
michael@0 2064 top.authors[i] = "zHTML xD.5375.0500.0005.0045.";
michael@0 2065 top.titles[i] = "Device";
michael@0 2066 i++;
michael@0 2067
michael@0 2068 top.authors[i] = "zHTML xD.5375.0500.0005.0046.";
michael@0 2069 top.titles[i] = "dmdName";
michael@0 2070 i++;
michael@0 2071
michael@0 2072 top.authors[i] = "zHTML xD.5375.0500.0005.0047.";
michael@0 2073 top.titles[i] = "dn";
michael@0 2074 i++;
michael@0 2075
michael@0 2076 top.authors[i] = "zHTML xD.5375.0500.0005.0048.";
michael@0 2077 top.titles[i] = "dnQualifier";
michael@0 2078 i++;
michael@0 2079
michael@0 2080 top.authors[i] = "zHTML xD.5375.0500.0005.0049.";
michael@0 2081 top.titles[i] = "DS Revision";
michael@0 2082 i++;
michael@0 2083
michael@0 2084 top.authors[i] = "zHTML xD.5375.0500.0005.0050.";
michael@0 2085 top.titles[i] = "EMail Address";
michael@0 2086 i++;
michael@0 2087
michael@0 2088 top.authors[i] = "zHTML xD.5375.0500.0005.0051.";
michael@0 2089 top.titles[i] = "employeeType";
michael@0 2090 i++;
michael@0 2091
michael@0 2092 top.authors[i] = "zHTML xD.5375.0500.0005.0052.";
michael@0 2093 top.titles[i] = "enhancedSearchGuide";
michael@0 2094 i++;
michael@0 2095
michael@0 2096 top.authors[i] = "zHTML xD.5375.0500.0005.0053.";
michael@0 2097 top.titles[i] = "Equivalent To Me";
michael@0 2098 i++;
michael@0 2099
michael@0 2100 top.authors[i] = "zHTML xD.5375.0500.0005.0054.";
michael@0 2101 top.titles[i] = "External Name";
michael@0 2102 i++;
michael@0 2103
michael@0 2104 top.authors[i] = "zHTML xD.5375.0500.0005.0055.";
michael@0 2105 top.titles[i] = "External Synchronizer";
michael@0 2106 i++;
michael@0 2107
michael@0 2108 top.authors[i] = "zHTML xD.5375.0500.0005.0056.";
michael@0 2109 top.titles[i] = "Facsimile Telephone Number";
michael@0 2110 i++;
michael@0 2111
michael@0 2112 top.authors[i] = "zHTML xD.5375.0500.0005.0057.";
michael@0 2113 top.titles[i] = "Full Name";
michael@0 2114 i++;
michael@0 2115
michael@0 2116 top.authors[i] = "zHTML xD.5375.0500.0005.0058.";
michael@0 2117 top.titles[i] = "Generational Qualifier";
michael@0 2118 i++;
michael@0 2119
michael@0 2120 top.authors[i] = "zHTML xD.5375.0500.0005.0059.";
michael@0 2121 top.titles[i] = "generationQualifier";
michael@0 2122 i++;
michael@0 2123
michael@0 2124 top.authors[i] = "zHTML xD.5375.0500.0005.0060.";
michael@0 2125 top.titles[i] = "";
michael@0 2126 i++;
michael@0 2127
michael@0 2128 top.authors[i] = "zHTML xD.5375.0500.0005.0061.";
michael@0 2129 top.titles[i] = "Given Name";
michael@0 2130 i++;
michael@0 2131
michael@0 2132 top.authors[i] = "zHTML xD.5375.0500.0005.0062.";
michael@0 2133 top.titles[i] = "";
michael@0 2134 i++;
michael@0 2135
michael@0 2136 top.authors[i] = "zHTML xD.5375.0500.0005.0063.";
michael@0 2137 top.titles[i] = "GUID";
michael@0 2138 i++;
michael@0 2139
michael@0 2140 top.authors[i] = "zHTML xD.5375.0500.0005.0064.";
michael@0 2141 top.titles[i] = "High Convergence Sync Interval";
michael@0 2142 i++;
michael@0 2143
michael@0 2144 top.authors[i] = "zHTML xD.5375.0500.0005.0065.";
michael@0 2145 top.titles[i] = "Higher Privileges";
michael@0 2146 i++;
michael@0 2147
michael@0 2148 top.authors[i] = "zHTML xD.5375.0500.0005.0066.";
michael@0 2149 top.titles[i] = "Home Directory";
michael@0 2150 i++;
michael@0 2151
michael@0 2152 top.authors[i] = "zHTML xD.5375.0500.0005.0067.";
michael@0 2153 top.titles[i] = "Home Directory Rights";
michael@0 2154 i++;
michael@0 2155
michael@0 2156 top.authors[i] = "zHTML xD.5375.0500.0005.0068.";
michael@0 2157 top.titles[i] = "homePhone";
michael@0 2158 i++;
michael@0 2159
michael@0 2160 top.authors[i] = "zHTML xD.5375.0500.0005.0069.";
michael@0 2161 top.titles[i] = "homePostalAddress";
michael@0 2162 i++;
michael@0 2163
michael@0 2164 top.authors[i] = "zHTML xD.5375.0500.0005.0070.";
michael@0 2165 top.titles[i] = "houseIdentifier";
michael@0 2166 i++;
michael@0 2167
michael@0 2168 top.authors[i] = "zHTML xD.5375.0500.0005.0071.";
michael@0 2169 top.titles[i] = "Host Device";
michael@0 2170 i++;
michael@0 2171
michael@0 2172 top.authors[i] = "zHTML xD.5375.0500.0005.0072.";
michael@0 2173 top.titles[i] = "Host Resource Name";
michael@0 2174 i++;
michael@0 2175
michael@0 2176 top.authors[i] = "zHTML xD.5375.0500.0005.0073.";
michael@0 2177 top.titles[i] = "Host Server";
michael@0 2178 i++;
michael@0 2179
michael@0 2180 top.authors[i] = "zHTML xD.5375.0500.0005.0074.";
michael@0 2181 top.titles[i] = "Inherited ACL";
michael@0 2182 i++;
michael@0 2183
michael@0 2184 top.authors[i] = "zHTML xD.5375.0500.0005.0075.";
michael@0 2185 top.titles[i] = "Initials";
michael@0 2186 i++;
michael@0 2187
michael@0 2188 top.authors[i] = "zHTML xD.5375.0500.0005.0076.";
michael@0 2189 top.titles[i] = "internationaliSDNNumber";
michael@0 2190 i++;
michael@0 2191
michael@0 2192 top.authors[i] = "zHTML xD.5375.0500.0005.0077.";
michael@0 2193 top.titles[i] = "Internet EMail Address";
michael@0 2194 i++;
michael@0 2195
michael@0 2196 top.authors[i] = "zHTML xD.5375.0500.0005.0078.";
michael@0 2197 top.titles[i] = "Intruder Attempt Reset Interval";
michael@0 2198 i++;
michael@0 2199
michael@0 2200 top.authors[i] = "zHTML xD.5375.0500.0005.0079.";
michael@0 2201 top.titles[i] = "Intruder Lockout Reset Interval";
michael@0 2202 i++;
michael@0 2203
michael@0 2204 top.authors[i] = "zHTML xD.5375.0500.0005.0080.";
michael@0 2205 top.titles[i] = "knowledgeInformation";
michael@0 2206 i++;
michael@0 2207
michael@0 2208 top.authors[i] = "zHTML xD.5375.0500.0005.0081.";
michael@0 2209 top.titles[i] = "";
michael@0 2210 i++;
michael@0 2211
michael@0 2212 top.authors[i] = "zHTML xD.5375.0500.0005.0082.";
michael@0 2213 top.titles[i] = "Language";
michael@0 2214 i++;
michael@0 2215
michael@0 2216 top.authors[i] = "zHTML xD.5375.0500.0005.0083.";
michael@0 2217 top.titles[i] = "Last Login Time";
michael@0 2218 i++;
michael@0 2219
michael@0 2220 top.authors[i] = "zHTML xD.5375.0500.0005.0084.";
michael@0 2221 top.titles[i] = "Last Referenced Time";
michael@0 2222 i++;
michael@0 2223
michael@0 2224 top.authors[i] = "zHTML xD.5375.0500.0005.0085.";
michael@0 2225 top.titles[i] = "LDAP ACL v11";
michael@0 2226 i++;
michael@0 2227
michael@0 2228 top.authors[i] = "zHTML xD.5375.0500.0005.0086.";
michael@0 2229 top.titles[i] = "LDAP Allow Clear Text Password";
michael@0 2230 i++;
michael@0 2231
michael@0 2232 top.authors[i] = "zHTML xD.5375.0500.0005.0087.";
michael@0 2233 top.titles[i] = "LDAP Anonymous Identity";
michael@0 2234 i++;
michael@0 2235
michael@0 2236 top.authors[i] = "zHTML xD.5375.0500.0005.0088.";
michael@0 2237 top.titles[i] = "LDAP Attribute Map v11";
michael@0 2238 i++;
michael@0 2239
michael@0 2240 top.authors[i] = "zHTML xD.5375.0500.0005.0089.";
michael@0 2241 top.titles[i] = "LDAP Backup Log Filename";
michael@0 2242 i++;
michael@0 2243
michael@0 2244 top.authors[i] = "zHTML xD.5375.0500.0005.0090.";
michael@0 2245 top.titles[i] = "LDAP Class Map v11";
michael@0 2246 i++;
michael@0 2247
michael@0 2248 top.authors[i] = "zHTML xD.5375.0500.0005.0091.";
michael@0 2249 top.titles[i] = "LDAP Enable SSL";
michael@0 2250 i++;
michael@0 2251
michael@0 2252 top.authors[i] = "zHTML xD.5375.0500.0005.0092.";
michael@0 2253 top.titles[i] = "LDAP Enable TCP";
michael@0 2254 i++;
michael@0 2255
michael@0 2256 top.authors[i] = "zHTML xD.5375.0500.0005.0093.";
michael@0 2257 top.titles[i] = "LDAP Enable UDP";
michael@0 2258 i++;
michael@0 2259
michael@0 2260 top.authors[i] = "zHTML xD.5375.0500.0005.0094.";
michael@0 2261 top.titles[i] = "LDAP Group";
michael@0 2262 i++;
michael@0 2263
michael@0 2264 top.authors[i] = "zHTML xD.5375.0500.0005.0095.";
michael@0 2265 top.titles[i] = "LDAP Host Server";
michael@0 2266 i++;
michael@0 2267
michael@0 2268 top.authors[i] = "zHTML xD.5375.0500.0005.0096.";
michael@0 2269 top.titles[i] = "LDAP Log Filename";
michael@0 2270 i++;
michael@0 2271
michael@0 2272 top.authors[i] = "zHTML xD.5375.0500.0005.0097.";
michael@0 2273 top.titles[i] = "LDAP Log Level";
michael@0 2274 i++;
michael@0 2275
michael@0 2276 top.authors[i] = "zHTML xD.5375.0500.0005.0098.";
michael@0 2277 top.titles[i] = "LDAP Log Size Limit";
michael@0 2278 i++;
michael@0 2279
michael@0 2280 top.authors[i] = "zHTML xD.5375.0500.0005.0099.";
michael@0 2281 top.titles[i] = "LDAP Referral";
michael@0 2282 i++;
michael@0 2283
michael@0 2284 top.authors[i] = "zHTML xD.5375.0500.0005.0100.";
michael@0 2285 top.titles[i] = "LDAP Screen Level";
michael@0 2286 i++;
michael@0 2287
michael@0 2288 top.authors[i] = "zHTML xD.5375.0500.0005.0101.";
michael@0 2289 top.titles[i] = "LDAP Search Size Limit";
michael@0 2290 i++;
michael@0 2291
michael@0 2292 top.authors[i] = "zHTML xD.5375.0500.0005.0102.";
michael@0 2293 top.titles[i] = "LDAP Search Time Limit";
michael@0 2294 i++;
michael@0 2295
michael@0 2296 top.authors[i] = "zHTML xD.5375.0500.0005.0103.";
michael@0 2297 top.titles[i] = "LDAP Server";
michael@0 2298 i++;
michael@0 2299
michael@0 2300 top.authors[i] = "zHTML xD.5375.0500.0005.0104.";
michael@0 2301 top.titles[i] = "LDAP Server Bind Limit";
michael@0 2302 i++;
michael@0 2303
michael@0 2304 top.authors[i] = "zHTML xD.5375.0500.0005.0105.";
michael@0 2305 top.titles[i] = "LDAP Server Idle Timeout";
michael@0 2306 i++;
michael@0 2307
michael@0 2308 top.authors[i] = "zHTML xD.5375.0500.0005.0106.";
michael@0 2309 top.titles[i] = "LDAP Server List";
michael@0 2310 i++;
michael@0 2311
michael@0 2312 top.authors[i] = "zHTML xD.5375.0500.0005.0107.";
michael@0 2313 top.titles[i] = "LDAP SSL Port";
michael@0 2314 i++;
michael@0 2315
michael@0 2316 top.authors[i] = "zHTML xD.5375.0500.0005.0108.";
michael@0 2317 top.titles[i] = "LDAP Suffix";
michael@0 2318 i++;
michael@0 2319
michael@0 2320 top.authors[i] = "zHTML xD.5375.0500.0005.0109.";
michael@0 2321 top.titles[i] = "LDAP TCP Port";
michael@0 2322 i++;
michael@0 2323
michael@0 2324 top.authors[i] = "zHTML xD.5375.0500.0005.0110.";
michael@0 2325 top.titles[i] = "LDAP UDP Port";
michael@0 2326 i++;
michael@0 2327
michael@0 2328 top.authors[i] = "zHTML xD.5375.0500.0005.0111.";
michael@0 2329 top.titles[i] = "LDAP:bindCatalog";
michael@0 2330 i++;
michael@0 2331
michael@0 2332 top.authors[i] = "zHTML xD.5375.0500.0005.0112.";
michael@0 2333 top.titles[i] = "LDAP:bindCatalogUsage";
michael@0 2334 i++;
michael@0 2335
michael@0 2336 top.authors[i] = "zHTML xD.5375.0500.0005.0113.";
michael@0 2337 top.titles[i] = "LDAP:keyMaterialName";
michael@0 2338 i++;
michael@0 2339
michael@0 2340 top.authors[i] = "zHTML xD.5375.0500.0005.0114.";
michael@0 2341 top.titles[i] = "LDAP:otherReferralUsage";
michael@0 2342 i++;
michael@0 2343
michael@0 2344 top.authors[i] = "zHTML xD.5375.0500.0005.0115.";
michael@0 2345 top.titles[i] = "LDAP:searchCatalog";
michael@0 2346 i++;
michael@0 2347
michael@0 2348 top.authors[i] = "zHTML xD.5375.0500.0005.0116.";
michael@0 2349 top.titles[i] = "LDAP:searchCatalogUsage";
michael@0 2350 i++;
michael@0 2351
michael@0 2352 top.authors[i] = "zHTML xD.5375.0500.0005.0117.";
michael@0 2353 top.titles[i] = "LDAP:searchReferralUsage";
michael@0 2354 i++;
michael@0 2355
michael@0 2356 top.authors[i] = "zHTML xD.5375.0500.0005.0118.";
michael@0 2357 top.titles[i] = "Locked By Intruder";
michael@0 2358 i++;
michael@0 2359
michael@0 2360 top.authors[i] = "zHTML xD.5375.0500.0005.0119.";
michael@0 2361 top.titles[i] = "Lockout After Detection";
michael@0 2362 i++;
michael@0 2363
michael@0 2364 top.authors[i] = "zHTML xD.5375.0500.0005.0120.";
michael@0 2365 top.titles[i] = "Login Allowed Time Map";
michael@0 2366 i++;
michael@0 2367
michael@0 2368 top.authors[i] = "zHTML xD.5375.0500.0005.0121.";
michael@0 2369 top.titles[i] = "Login Disabled";
michael@0 2370 i++;
michael@0 2371
michael@0 2372 top.authors[i] = "zHTML xD.5375.0500.0005.0122.";
michael@0 2373 top.titles[i] = "Login Expiration Time";
michael@0 2374 i++;
michael@0 2375
michael@0 2376 top.authors[i] = "zHTML xD.5375.0500.0005.0123.";
michael@0 2377 top.titles[i] = "Login Grace Limit";
michael@0 2378 i++;
michael@0 2379
michael@0 2380 top.authors[i] = "zHTML xD.5375.0500.0005.0124.";
michael@0 2381 top.titles[i] = "Login Grace Remaining";
michael@0 2382 i++;
michael@0 2383
michael@0 2384 top.authors[i] = "zHTML xD.5375.0500.0005.0125.";
michael@0 2385 top.titles[i] = "Login Intruder Address";
michael@0 2386 i++;
michael@0 2387
michael@0 2388 top.authors[i] = "zHTML xD.5375.0500.0005.0126.";
michael@0 2389 top.titles[i] = "Login Intruder Attempts";
michael@0 2390 i++;
michael@0 2391
michael@0 2392 top.authors[i] = "zHTML xD.5375.0500.0005.0127.";
michael@0 2393 top.titles[i] = "Login Intruder Limit";
michael@0 2394 i++;
michael@0 2395
michael@0 2396 top.authors[i] = "zHTML xD.5375.0500.0005.0128.";
michael@0 2397 top.titles[i] = "Login Intruder Reset Time";
michael@0 2398 i++;
michael@0 2399
michael@0 2400 top.authors[i] = "zHTML xD.5375.0500.0005.0129.";
michael@0 2401 top.titles[i] = "Login Maximum Simultaneous";
michael@0 2402 i++;
michael@0 2403
michael@0 2404 top.authors[i] = "zHTML xD.5375.0500.0005.0130.";
michael@0 2405 top.titles[i] = "Login Script";
michael@0 2406 i++;
michael@0 2407
michael@0 2408 top.authors[i] = "zHTML xD.5375.0500.0005.0131.";
michael@0 2409 top.titles[i] = "Login Time";
michael@0 2410 i++;
michael@0 2411
michael@0 2412 top.authors[i] = "zHTML xD.5375.0500.0005.0132.";
michael@0 2413 top.titles[i] = "Low Convergence Reset Time";
michael@0 2414 i++;
michael@0 2415
michael@0 2416 top.authors[i] = "zHTML xD.5375.0500.0005.0133.";
michael@0 2417 top.titles[i] = "Low Convergence Sync Interval";
michael@0 2418 i++;
michael@0 2419
michael@0 2420 top.authors[i] = "zHTML xD.5375.0500.0005.0134.";
michael@0 2421 top.titles[i] = "Mailbox ID";
michael@0 2422 i++;
michael@0 2423
michael@0 2424 top.authors[i] = "zHTML xD.5375.0500.0005.0135.";
michael@0 2425 top.titles[i] = "Mailbox Location";
michael@0 2426 i++;
michael@0 2427
michael@0 2428 top.authors[i] = "zHTML xD.5375.0500.0005.0136.";
michael@0 2429 top.titles[i] = "manager";
michael@0 2430 i++;
michael@0 2431
michael@0 2432 top.authors[i] = "zHTML xD.5375.0500.0005.0137.";
michael@0 2433 top.titles[i] = "masvAuthorizedRange";
michael@0 2434 i++;
michael@0 2435
michael@0 2436 top.authors[i] = "zHTML xD.5375.0500.0005.0138.";
michael@0 2437 top.titles[i] = "masvDefaultRange";
michael@0 2438 i++;
michael@0 2439
michael@0 2440 top.authors[i] = "zHTML xD.5375.0500.0005.0139.";
michael@0 2441 top.titles[i] = "masvDomainPolicy";
michael@0 2442 i++;
michael@0 2443
michael@0 2444 top.authors[i] = "zHTML xD.5375.0500.0005.0140.";
michael@0 2445 top.titles[i] = "masvLabel";
michael@0 2446 i++;
michael@0 2447
michael@0 2448 top.authors[i] = "zHTML xD.5375.0500.0005.0141.";
michael@0 2449 top.titles[i] = "masvProposedLabel";
michael@0 2450 i++;
michael@0 2451
michael@0 2452 top.authors[i] = "zHTML xD.5375.0500.0005.0142.";
michael@0 2453 top.titles[i] = "Member";
michael@0 2454 i++;
michael@0 2455
michael@0 2456 top.authors[i] = "zHTML xD.5375.0500.0005.0143.";
michael@0 2457 top.titles[i] = "Members Of Template";
michael@0 2458 i++;
michael@0 2459
michael@0 2460 top.authors[i] = "zHTML xD.5375.0500.0005.0144.";
michael@0 2461 top.titles[i] = "Memory";
michael@0 2462 i++;
michael@0 2463
michael@0 2464 top.authors[i] = "zHTML xD.5375.0500.0005.0145.";
michael@0 2465 top.titles[i] = "Message Routing Group";
michael@0 2466 i++;
michael@0 2467
michael@0 2468 top.authors[i] = "zHTML xD.5375.0500.0005.0146.";
michael@0 2469 top.titles[i] = "Message Server";
michael@0 2470 i++;
michael@0 2471
michael@0 2472 top.authors[i] = "zHTML xD.5375.0500.0005.0147.";
michael@0 2473 top.titles[i] = "Messaging Database Location";
michael@0 2474 i++;
michael@0 2475
michael@0 2476 top.authors[i] = "zHTML xD.5375.0500.0005.0148.";
michael@0 2477 top.titles[i] = "Messaging Server";
michael@0 2478 i++;
michael@0 2479
michael@0 2480 top.authors[i] = "zHTML xD.5375.0500.0005.0149.";
michael@0 2481 top.titles[i] = "";
michael@0 2482 i++;
michael@0 2483
michael@0 2484 top.authors[i] = "zHTML xD.5375.0500.0005.0150.";
michael@0 2485 top.titles[i] = "Minimum Account Balance";
michael@0 2486 i++;
michael@0 2487
michael@0 2488 top.authors[i] = "zHTML xD.5375.0500.0005.0151.";
michael@0 2489 top.titles[i] = "mobile";
michael@0 2490 i++;
michael@0 2491
michael@0 2492 top.authors[i] = "zHTML xD.5375.0500.0005.0152.";
michael@0 2493 top.titles[i] = "NDSPKI:Certificate Chain";
michael@0 2494 i++;
michael@0 2495
michael@0 2496 top.authors[i] = "zHTML xD.5375.0500.0005.0153.";
michael@0 2497 top.titles[i] = "NDSPKI:Given Name";
michael@0 2498 i++;
michael@0 2499
michael@0 2500 top.authors[i] = "zHTML xD.5375.0500.0005.0154.";
michael@0 2501 top.titles[i] = "NDSPKI:Key File";
michael@0 2502 i++;
michael@0 2503
michael@0 2504 top.authors[i] = "zHTML xD.5375.0500.0005.0155.";
michael@0 2505 top.titles[i] = "NDSPKI:Key Material DN";
michael@0 2506 i++;
michael@0 2507
michael@0 2508 top.authors[i] = "zHTML xD.5375.0500.0005.0156.";
michael@0 2509 top.titles[i] = "NDSPKI:Keystore";
michael@0 2510 i++;
michael@0 2511
michael@0 2512 top.authors[i] = "zHTML xD.5375.0500.0005.0157.";
michael@0 2513 top.titles[i] = "NDSPKI:Not After";
michael@0 2514 i++;
michael@0 2515
michael@0 2516 top.authors[i] = "zHTML xD.5375.0500.0005.0158.";
michael@0 2517 top.titles[i] = "NDSPKI:Not Before";
michael@0 2518 i++;
michael@0 2519
michael@0 2520 top.authors[i] = "zHTML xD.5375.0500.0005.0159.";
michael@0 2521 top.titles[i] = "NDSPKI:Parent CA";
michael@0 2522 i++;
michael@0 2523
michael@0 2524 top.authors[i] = "zHTML xD.5375.0500.0005.0160.";
michael@0 2525 top.titles[i] = "NDSPKI:Parent CA DN";
michael@0 2526 i++;
michael@0 2527
michael@0 2528 top.authors[i] = "zHTML xD.5375.0500.0005.0161.";
michael@0 2529 top.titles[i] = "NDSPKI:Private Key";
michael@0 2530 i++;
michael@0 2531
michael@0 2532 top.authors[i] = "zHTML xD.5375.0500.0005.0162.";
michael@0 2533 top.titles[i] = "NDSPKI:Public Key";
michael@0 2534 i++;
michael@0 2535
michael@0 2536 top.authors[i] = "zHTML xD.5375.0500.0005.0163.";
michael@0 2537 top.titles[i] = "NDSPKI:Public Key Certificate";
michael@0 2538 i++;
michael@0 2539
michael@0 2540 top.authors[i] = "zHTML xD.5375.0500.0005.0164.";
michael@0 2541 top.titles[i] = "NDSPKI:SD Key Cert";
michael@0 2542 i++;
michael@0 2543
michael@0 2544 top.authors[i] = "zHTML xD.5375.0500.0005.0165.";
michael@0 2545 top.titles[i] = "NDSPKI:SD Key ID";
michael@0 2546 i++;
michael@0 2547
michael@0 2548 top.authors[i] = "zHTML xD.5375.0500.0005.0166.";
michael@0 2549 top.titles[i] = "NDSPKI:SD Key Server DN";
michael@0 2550 i++;
michael@0 2551
michael@0 2552 top.authors[i] = "zHTML xD.5375.0500.0005.0167.";
michael@0 2553 top.titles[i] = "NDSPKI:SD Key Struct";
michael@0 2554 i++;
michael@0 2555
michael@0 2556 top.authors[i] = "zHTML xD.5375.0500.0005.0168.";
michael@0 2557 top.titles[i] = "NDSPKI:Subject Name";
michael@0 2558 i++;
michael@0 2559
michael@0 2560 top.authors[i] = "zHTML xD.5375.0500.0005.0169.";
michael@0 2561 top.titles[i] = "NDSPKI:Tree CA DN";
michael@0 2562 i++;
michael@0 2563
michael@0 2564 top.authors[i] = "zHTML xD.5375.0500.0005.0170.";
michael@0 2565 top.titles[i] = "NDSPKI:Trusted Root Certificate";
michael@0 2566 i++;
michael@0 2567
michael@0 2568 top.authors[i] = "zHTML xD.5375.0500.0005.0171.";
michael@0 2569 top.titles[i] = "NDSPKI:userCertificateInfo";
michael@0 2570 i++;
michael@0 2571
michael@0 2572 top.authors[i] = "zHTML xD.5375.0500.0005.0172.";
michael@0 2573 top.titles[i] = "Network Address";
michael@0 2574 i++;
michael@0 2575
michael@0 2576 top.authors[i] = "zHTML xD.5375.0500.0005.0173.";
michael@0 2577 top.titles[i] = "Network Address Restriction";
michael@0 2578 i++;
michael@0 2579
michael@0 2580 top.authors[i] = "zHTML xD.5375.0500.0005.0174.";
michael@0 2581 top.titles[i] = "New Object's DS Rights";
michael@0 2582 i++;
michael@0 2583
michael@0 2584 top.authors[i] = "zHTML xD.5375.0500.0005.0175.";
michael@0 2585 top.titles[i] = "New Object's FS Rights";
michael@0 2586 i++;
michael@0 2587
michael@0 2588 top.authors[i] = "zHTML xD.5375.0500.0005.0176.";
michael@0 2589 top.titles[i] = "New Object's Self Rights";
michael@0 2590 i++;
michael@0 2591
michael@0 2592 top.authors[i] = "zHTML xD.5375.0500.0005.0177.";
michael@0 2593 top.titles[i] = "NNS Domain";
michael@0 2594 i++;
michael@0 2595
michael@0 2596 top.authors[i] = "zHTML xD.5375.0500.0005.0178.";
michael@0 2597 top.titles[i] = "Notify";
michael@0 2598 i++;
michael@0 2599
michael@0 2600 top.authors[i] = "zHTML xD.5375.0500.0005.0179.";
michael@0 2601 top.titles[i] = "NSCP:administratorContactInfo";
michael@0 2602 i++;
michael@0 2603
michael@0 2604 top.authors[i] = "zHTML xD.5375.0500.0005.0180.";
michael@0 2605 top.titles[i] = "NSCP:adminURL";
michael@0 2606 i++;
michael@0 2607
michael@0 2608 top.authors[i] = "zHTML xD.5375.0500.0005.0181.";
michael@0 2609 top.titles[i] = "NSCP:AmailAccessDomain";
michael@0 2610 i++;
michael@0 2611
michael@0 2612 top.authors[i] = "zHTML xD.5375.0500.0005.0182.";
michael@0 2613 top.titles[i] = "NSCP:AmailAlternateAddress";
michael@0 2614 i++;
michael@0 2615
michael@0 2616 top.authors[i] = "zHTML xD.5375.0500.0005.0183.";
michael@0 2617 top.titles[i] = "NSCP:AmailAutoReplyMode";
michael@0 2618 i++;
michael@0 2619
michael@0 2620 top.authors[i] = "zHTML xD.5375.0500.0005.0184.";
michael@0 2621 top.titles[i] = "NSCP:AmailAutoReplyText";
michael@0 2622 i++;
michael@0 2623
michael@0 2624 top.authors[i] = "zHTML xD.5375.0500.0005.0185.";
michael@0 2625 top.titles[i] = "NSCP:AmailDeliveryOption";
michael@0 2626 i++;
michael@0 2627
michael@0 2628 top.authors[i] = "zHTML xD.5375.0500.0005.0186.";
michael@0 2629 top.titles[i] = "NSCP:AmailForwardingAddress";
michael@0 2630 i++;
michael@0 2631
michael@0 2632 top.authors[i] = "zHTML xD.5375.0500.0005.0187.";
michael@0 2633 top.titles[i] = "NSCP:AmailHost";
michael@0 2634 i++;
michael@0 2635
michael@0 2636 top.authors[i] = "zHTML xD.5375.0500.0005.0188.";
michael@0 2637 top.titles[i] = "NSCP:AmailMessageStore";
michael@0 2638 i++;
michael@0 2639
michael@0 2640 top.authors[i] = "zHTML xD.5375.0500.0005.0189.";
michael@0 2641 top.titles[i] = "NSCP:AmailProgramDeliveryInfo";
michael@0 2642 i++;
michael@0 2643
michael@0 2644 top.authors[i] = "zHTML xD.5375.0500.0005.0190.";
michael@0 2645 top.titles[i] = "NSCP:AmailQuota";
michael@0 2646 i++;
michael@0 2647
michael@0 2648 top.authors[i] = "zHTML xD.5375.0500.0005.0191.";
michael@0 2649 top.titles[i] = "NSCP:AnsLicenseEndTime";
michael@0 2650 i++;
michael@0 2651
michael@0 2652 top.authors[i] = "zHTML xD.5375.0500.0005.0192.";
michael@0 2653 top.titles[i] = "NSCP:AnsLicensedFor";
michael@0 2654 i++;
michael@0 2655
michael@0 2656 top.authors[i] = "zHTML xD.5375.0500.0005.0193.";
michael@0 2657 top.titles[i] = "NSCP:AnsLicenseStartTime";
michael@0 2658 i++;
michael@0 2659
michael@0 2660 top.authors[i] = "zHTML xD.5375.0500.0005.0194.";
michael@0 2661 top.titles[i] = "NSCP:employeeNumber";
michael@0 2662 i++;
michael@0 2663
michael@0 2664 top.authors[i] = "zHTML xD.5375.0500.0005.0195.";
michael@0 2665 top.titles[i] = "NSCP:installationTimeStamp";
michael@0 2666 i++;
michael@0 2667
michael@0 2668 top.authors[i] = "zHTML xD.5375.0500.0005.0196.";
michael@0 2669 top.titles[i] = "NSCP:mailRoutingAddress";
michael@0 2670 i++;
michael@0 2671
michael@0 2672 top.authors[i] = "zHTML xD.5375.0500.0005.0197.";
michael@0 2673 top.titles[i] = "NSCP:memberCertificateDesc";
michael@0 2674 i++;
michael@0 2675
michael@0 2676 top.authors[i] = "zHTML xD.5375.0500.0005.0198.";
michael@0 2677 top.titles[i] = "NSCP:mgrpRFC822mailmember";
michael@0 2678 i++;
michael@0 2679
michael@0 2680 top.authors[i] = "zHTML xD.5375.0500.0005.0199.";
michael@0 2681 top.titles[i] = "NSCP:ngcomponentCIS";
michael@0 2682 i++;
michael@0 2683
michael@0 2684 top.authors[i] = "zHTML xD.5375.0500.0005.0200.";
michael@0 2685 top.titles[i] = "NSCP:nsaclrole";
michael@0 2686 i++;
michael@0 2687
michael@0 2688 top.authors[i] = "zHTML xD.5375.0500.0005.0201.";
michael@0 2689 top.titles[i] = "NSCP:nscreator";
michael@0 2690 i++;
michael@0 2691
michael@0 2692 top.authors[i] = "zHTML xD.5375.0500.0005.0202.";
michael@0 2693 top.titles[i] = "NSCP:nsflags";
michael@0 2694 i++;
michael@0 2695
michael@0 2696 top.authors[i] = "zHTML xD.5375.0500.0005.0203.";
michael@0 2697 top.titles[i] = "NSCP:nsnewsACL";
michael@0 2698 i++;
michael@0 2699
michael@0 2700 top.authors[i] = "zHTML xD.5375.0500.0005.0204.";
michael@0 2701 top.titles[i] = "NSCP:nsprettyname";
michael@0 2702 i++;
michael@0 2703
michael@0 2704 top.authors[i] = "zHTML xD.5375.0500.0005.0205.";
michael@0 2705 top.titles[i] = "NSCP:serverHostName";
michael@0 2706 i++;
michael@0 2707
michael@0 2708 top.authors[i] = "zHTML xD.5375.0500.0005.0206.";
michael@0 2709 top.titles[i] = "NSCP:serverProductName";
michael@0 2710 i++;
michael@0 2711
michael@0 2712 top.authors[i] = "zHTML xD.5375.0500.0005.0207.";
michael@0 2713 top.titles[i] = "NSCP:serverRoot";
michael@0 2714 i++;
michael@0 2715
michael@0 2716 top.authors[i] = "zHTML xD.5375.0500.0005.0208.";
michael@0 2717 top.titles[i] = "NSCP:serverVersionNumber";
michael@0 2718 i++;
michael@0 2719
michael@0 2720 top.authors[i] = "zHTML xD.5375.0500.0005.0209.";
michael@0 2721 top.titles[i] = "NSCP:subtreeACI";
michael@0 2722 i++;
michael@0 2723
michael@0 2724 top.authors[i] = "zHTML xD.5375.0500.0005.0210.";
michael@0 2725 top.titles[i] = "";
michael@0 2726 i++;
michael@0 2727
michael@0 2728 top.authors[i] = "zHTML xD.5375.0500.0005.0211.";
michael@0 2729 top.titles[i] = "Obituary";
michael@0 2730 i++;
michael@0 2731
michael@0 2732 top.authors[i] = "zHTML xD.5375.0500.0005.0212.";
michael@0 2733 top.titles[i] = "Obituary Notify";
michael@0 2734 i++;
michael@0 2735
michael@0 2736 top.authors[i] = "zHTML xD.5375.0500.0005.0213.";
michael@0 2737 top.titles[i] = "Object Class";
michael@0 2738 i++;
michael@0 2739
michael@0 2740 top.authors[i] = "zHTML xD.5375.0500.0005.0214.";
michael@0 2741 top.titles[i] = "Operator";
michael@0 2742 i++;
michael@0 2743
michael@0 2744 top.authors[i] = "zHTML xD.5375.0500.0005.0215.";
michael@0 2745 top.titles[i] = "Other GUID";
michael@0 2746 i++;
michael@0 2747
michael@0 2748 top.authors[i] = "zHTML xD.5375.0500.0005.0216.";
michael@0 2749 top.titles[i] = "";
michael@0 2750 i++;
michael@0 2751
michael@0 2752 top.authors[i] = "zHTML xD.5375.0500.0005.0217.";
michael@0 2753 top.titles[i] = "Owner";
michael@0 2754 i++;
michael@0 2755
michael@0 2756 top.authors[i] = "zHTML xD.5375.0500.0005.0218.";
michael@0 2757 top.titles[i] = "Page Description Language";
michael@0 2758 i++;
michael@0 2759
michael@0 2760 top.authors[i] = "zHTML xD.5375.0500.0005.0219.";
michael@0 2761 top.titles[i] = "pager";
michael@0 2762 i++;
michael@0 2763
michael@0 2764 top.authors[i] = "zHTML xD.5375.0500.0005.0220.";
michael@0 2765 top.titles[i] = "Partition Control";
michael@0 2766 i++;
michael@0 2767
michael@0 2768 top.authors[i] = "zHTML xD.5375.0500.0005.0221.";
michael@0 2769 top.titles[i] = "Partition Creation Time";
michael@0 2770 i++;
michael@0 2771
michael@0 2772 top.authors[i] = "zHTML xD.5375.0500.0005.0222.";
michael@0 2773 top.titles[i] = "Partition Status";
michael@0 2774 i++;
michael@0 2775
michael@0 2776 top.authors[i] = "zHTML xD.5375.0500.0005.0223.";
michael@0 2777 top.titles[i] = "Password Allow Change";
michael@0 2778 i++;
michael@0 2779
michael@0 2780 top.authors[i] = "zHTML xD.5375.0500.0005.0224.";
michael@0 2781 top.titles[i] = "Password Expiration Interval";
michael@0 2782 i++;
michael@0 2783
michael@0 2784 top.authors[i] = "zHTML xD.5375.0500.0005.0225.";
michael@0 2785 top.titles[i] = "Password Expiration Time";
michael@0 2786 i++;
michael@0 2787
michael@0 2788 top.authors[i] = "zHTML xD.5375.0500.0005.0226.";
michael@0 2789 top.titles[i] = "Password Management";
michael@0 2790 i++;
michael@0 2791
michael@0 2792 top.authors[i] = "zHTML xD.5375.0500.0005.0227.";
michael@0 2793 top.titles[i] = "Password Minimum Length";
michael@0 2794 i++;
michael@0 2795
michael@0 2796 top.authors[i] = "zHTML xD.5375.0500.0005.0228.";
michael@0 2797 top.titles[i] = "Password Required";
michael@0 2798 i++;
michael@0 2799
michael@0 2800 top.authors[i] = "zHTML xD.5375.0500.0005.0229.";
michael@0 2801 top.titles[i] = "Password Unique Required";
michael@0 2802 i++;
michael@0 2803
michael@0 2804 top.authors[i] = "zHTML xD.5375.0500.0005.0230.";
michael@0 2805 top.titles[i] = "Passwords Used";
michael@0 2806 i++;
michael@0 2807
michael@0 2808 top.authors[i] = "zHTML xD.5375.0500.0005.0231.";
michael@0 2809 top.titles[i] = "Path";
michael@0 2810 i++;
michael@0 2811
michael@0 2812 top.authors[i] = "zHTML xD.5375.0500.0005.0232.";
michael@0 2813 top.titles[i] = "Permanent Config Parms";
michael@0 2814 i++;
michael@0 2815
michael@0 2816 top.authors[i] = "zHTML xD.5375.0500.0005.0233.";
michael@0 2817 top.titles[i] = "Physical Delivery Office Name";
michael@0 2818 i++;
michael@0 2819
michael@0 2820 top.authors[i] = "zHTML xD.5375.0500.0005.0234.";
michael@0 2821 top.titles[i] = "Postal Address";
michael@0 2822 i++;
michael@0 2823
michael@0 2824 top.authors[i] = "zHTML xD.5375.0500.0005.0235.";
michael@0 2825 top.titles[i] = "Postal Code";
michael@0 2826 i++;
michael@0 2827
michael@0 2828 top.authors[i] = "zHTML xD.5375.0500.0005.0236.";
michael@0 2829 top.titles[i] = "Postal Office Box";
michael@0 2830 i++;
michael@0 2831
michael@0 2832 top.authors[i] = "zHTML xD.5375.0500.0005.0237.";
michael@0 2833 top.titles[i] = "Postmaster";
michael@0 2834 i++;
michael@0 2835
michael@0 2836 top.authors[i] = "zHTML xD.5375.0500.0005.0238.";
michael@0 2837 top.titles[i] = "preferredDeliveryMethod";
michael@0 2838 i++;
michael@0 2839
michael@0 2840 top.authors[i] = "zHTML xD.5375.0500.0005.0239.";
michael@0 2841 top.titles[i] = "presentationAddress";
michael@0 2842 i++;
michael@0 2843
michael@0 2844 top.authors[i] = "zHTML xD.5375.0500.0005.0240.";
michael@0 2845 top.titles[i] = "Print Job Configuration";
michael@0 2846 i++;
michael@0 2847
michael@0 2848 top.authors[i] = "zHTML xD.5375.0500.0005.0241.";
michael@0 2849 top.titles[i] = "Print Server";
michael@0 2850 i++;
michael@0 2851
michael@0 2852 top.authors[i] = "zHTML xD.5375.0500.0005.0242.";
michael@0 2853 top.titles[i] = "Printer";
michael@0 2854 i++;
michael@0 2855
michael@0 2856 top.authors[i] = "zHTML xD.5375.0500.0005.0243.";
michael@0 2857 top.titles[i] = "Printer Configuration";
michael@0 2858 i++;
michael@0 2859
michael@0 2860 top.authors[i] = "zHTML xD.5375.0500.0005.0244.";
michael@0 2861 top.titles[i] = "Printer Control";
michael@0 2862 i++;
michael@0 2863
michael@0 2864 top.authors[i] = "zHTML xD.5375.0500.0005.0245.";
michael@0 2865 top.titles[i] = "Private Key";
michael@0 2866 i++;
michael@0 2867
michael@0 2868 top.authors[i] = "zHTML xD.5375.0500.0005.0246.";
michael@0 2869 top.titles[i] = "Profile";
michael@0 2870 i++;
michael@0 2871
michael@0 2872 top.authors[i] = "zHTML xD.5375.0500.0005.0247.";
michael@0 2873 top.titles[i] = "Profile Membership";
michael@0 2874 i++;
michael@0 2875
michael@0 2876 top.authors[i] = "zHTML xD.5375.0500.0005.0248.";
michael@0 2877 top.titles[i] = "protocolInformation";
michael@0 2878 i++;
michael@0 2879
michael@0 2880 top.authors[i] = "zHTML xD.5375.0500.0005.0249.";
michael@0 2881 top.titles[i] = "Public Key";
michael@0 2882 i++;
michael@0 2883
michael@0 2884 top.authors[i] = "zHTML xD.5375.0500.0005.0250.";
michael@0 2885 top.titles[i] = "Purge Vector";
michael@0 2886 i++;
michael@0 2887
michael@0 2888 top.authors[i] = "zHTML xD.5375.0500.0005.0251.";
michael@0 2889 top.titles[i] = "Queue";
michael@0 2890 i++;
michael@0 2891
michael@0 2892 top.authors[i] = "zHTML xD.5375.0500.0005.0252.";
michael@0 2893 top.titles[i] = "Queue Directory";
michael@0 2894 i++;
michael@0 2895
michael@0 2896 top.authors[i] = "zHTML xD.5375.0500.0005.0253.";
michael@0 2897 top.titles[i] = "Received Up To";
michael@0 2898 i++;
michael@0 2899
michael@0 2900 top.authors[i] = "zHTML xD.5375.0500.0005.0254.";
michael@0 2901 top.titles[i] = "Reference";
michael@0 2902 i++;
michael@0 2903
michael@0 2904 top.authors[i] = "zHTML xD.5375.0500.0005.0255.";
michael@0 2905 top.titles[i] = "registeredAddress";
michael@0 2906 i++;
michael@0 2907
michael@0 2908 top.authors[i] = "zHTML xD.5375.0500.0005.0256.";
michael@0 2909 top.titles[i] = "Replica";
michael@0 2910 i++;
michael@0 2911
michael@0 2912 top.authors[i] = "zHTML xD.5375.0500.0005.0257.";
michael@0 2913 top.titles[i] = "Replica Up To";
michael@0 2914 i++;
michael@0 2915
michael@0 2916 top.authors[i] = "zHTML xD.5375.0500.0005.0258.";
michael@0 2917 top.titles[i] = "Resource";
michael@0 2918 i++;
michael@0 2919
michael@0 2920 top.authors[i] = "zHTML xD.5375.0500.0005.0259.";
michael@0 2921 top.titles[i] = "Revision";
michael@0 2922 i++;
michael@0 2923
michael@0 2924 top.authors[i] = "zHTML xD.5375.0500.0005.0260.";
michael@0 2925 top.titles[i] = "Role Occupant";
michael@0 2926 i++;
michael@0 2927
michael@0 2928 top.authors[i] = "zHTML xD.5375.0500.0005.0261.";
michael@0 2929 top.titles[i] = "roomNumber";
michael@0 2930 i++;
michael@0 2931
michael@0 2932 top.authors[i] = "zHTML xD.5375.0500.0005.0262.";
michael@0 2933 top.titles[i] = "Run Setup Script";
michael@0 2934 i++;
michael@0 2935
michael@0 2936 top.authors[i] = "zHTML xD.5375.0500.0005.0263.";
michael@0 2937 top.titles[i] = "";
michael@0 2938 i++;
michael@0 2939
michael@0 2940 top.authors[i] = "zHTML xD.5375.0500.0005.0264.";
michael@0 2941 top.titles[i] = "";
michael@0 2942 i++;
michael@0 2943
michael@0 2944 top.authors[i] = "zHTML xD.5375.0500.0005.0265.";
michael@0 2945 top.titles[i] = "SAP Name";
michael@0 2946 i++;
michael@0 2947
michael@0 2948 top.authors[i] = "zHTML xD.5375.0500.0005.0266.";
michael@0 2949 top.titles[i] = "SAS:Security DN";
michael@0 2950 i++;
michael@0 2951
michael@0 2952 top.authors[i] = "zHTML xD.5375.0500.0005.0267.";
michael@0 2953 top.titles[i] = "SAS:Service DN";
michael@0 2954 i++;
michael@0 2955
michael@0 2956 top.authors[i] = "zHTML xD.5375.0500.0005.0268.";
michael@0 2957 top.titles[i] = "searchGuide";
michael@0 2958 i++;
michael@0 2959
michael@0 2960 top.authors[i] = "zHTML xD.5375.0500.0005.0269.";
michael@0 2961 top.titles[i] = "searchSizeLimit";
michael@0 2962 i++;
michael@0 2963
michael@0 2964 top.authors[i] = "zHTML xD.5375.0500.0005.0270.";
michael@0 2965 top.titles[i] = "searchTimeLimit";
michael@0 2966 i++;
michael@0 2967
michael@0 2968 top.authors[i] = "zHTML xD.5375.0500.0005.0271.";
michael@0 2969 top.titles[i] = "Security Equals";
michael@0 2970 i++;
michael@0 2971
michael@0 2972 top.authors[i] = "zHTML xD.5375.0500.0005.0272.";
michael@0 2973 top.titles[i] = "Security Flags";
michael@0 2974 i++;
michael@0 2975
michael@0 2976 top.authors[i] = "zHTML xD.5375.0500.0005.0273.";
michael@0 2977 top.titles[i] = "See Also";
michael@0 2978 i++;
michael@0 2979
michael@0 2980 top.authors[i] = "zHTML xD.5375.0500.0005.0274.";
michael@0 2981 top.titles[i] = "Serial Number";
michael@0 2982 i++;
michael@0 2983
michael@0 2984 top.authors[i] = "zHTML xD.5375.0500.0005.0275.";
michael@0 2985 top.titles[i] = "Server";
michael@0 2986 i++;
michael@0 2987
michael@0 2988 top.authors[i] = "zHTML xD.5375.0500.0005.0276.";
michael@0 2989 top.titles[i] = "Server Holds";
michael@0 2990 i++;
michael@0 2991
michael@0 2992 top.authors[i] = "zHTML xD.5375.0500.0005.0277.";
michael@0 2993 top.titles[i] = "Set Password After Create";
michael@0 2994 i++;
michael@0 2995
michael@0 2996 top.authors[i] = "zHTML xD.5375.0500.0005.0278.";
michael@0 2997 top.titles[i] = "Setup Script";
michael@0 2998 i++;
michael@0 2999
michael@0 3000 top.authors[i] = "zHTML xD.5375.0500.0005.0279.";
michael@0 3001 top.titles[i] = "Status";
michael@0 3002 i++;
michael@0 3003
michael@0 3004 top.authors[i] = "zHTML xD.5375.0500.0005.0280.";
michael@0 3005 top.titles[i] = "supportedAlgorithms";
michael@0 3006 i++;
michael@0 3007
michael@0 3008 top.authors[i] = "zHTML xD.5375.0500.0005.0281.";
michael@0 3009 top.titles[i] = "supportedApplicationContext";
michael@0 3010 i++;
michael@0 3011
michael@0 3012 top.authors[i] = "zHTML xD.5375.0500.0005.0282.";
michael@0 3013 top.titles[i] = "Supported Connections";
michael@0 3014 i++;
michael@0 3015
michael@0 3016 top.authors[i] = "zHTML xD.5375.0500.0005.0283.";
michael@0 3017 top.titles[i] = "Supported Gateway";
michael@0 3018 i++;
michael@0 3019
michael@0 3020 top.authors[i] = "zHTML xD.5375.0500.0005.0284.";
michael@0 3021 top.titles[i] = "Supported Services";
michael@0 3022 i++;
michael@0 3023
michael@0 3024 top.authors[i] = "zHTML xD.5375.0500.0005.0285.";
michael@0 3025 top.titles[i] = "Supported Typefaces";
michael@0 3026 i++;
michael@0 3027
michael@0 3028 top.authors[i] = "zHTML xD.5375.0500.0005.0286.";
michael@0 3029 top.titles[i] = "Surname";
michael@0 3030 i++;
michael@0 3031
michael@0 3032 top.authors[i] = "zHTML xD.5375.0500.0005.0287.";
michael@0 3033 top.titles[i] = "Synchronization Tolerance";
michael@0 3034 i++;
michael@0 3035
michael@0 3036 top.authors[i] = "zHTML xD.5375.0500.0005.0288.";
michael@0 3037 top.titles[i] = "Synchronized Up To";
michael@0 3038 i++;
michael@0 3039
michael@0 3040 top.authors[i] = "zHTML xD.5375.0500.0005.0289.";
michael@0 3041 top.titles[i] = "";
michael@0 3042 i++;
michael@0 3043
michael@0 3044 top.authors[i] = "zHTML xD.5375.0500.0005.0290.";
michael@0 3045 top.titles[i] = "Telephone Number";
michael@0 3046 i++;
michael@0 3047
michael@0 3048 top.authors[i] = "zHTML xD.5375.0500.0005.0291.";
michael@0 3049 top.titles[i] = "telexNumber";
michael@0 3050 i++;
michael@0 3051
michael@0 3052 top.authors[i] = "zHTML xD.5375.0500.0005.0292.";
michael@0 3053 top.titles[i] = "telexTerminalIdentifier";
michael@0 3054 i++;
michael@0 3055
michael@0 3056 top.authors[i] = "zHTML xD.5375.0500.0005.0293.";
michael@0 3057 top.titles[i] = "Timezone";
michael@0 3058 i++;
michael@0 3059
michael@0 3060 top.authors[i] = "zHTML xD.5375.0500.0005.0294.";
michael@0 3061 top.titles[i] = "Title";
michael@0 3062 i++;
michael@0 3063
michael@0 3064 top.authors[i] = "zHTML xD.5375.0500.0005.0295.";
michael@0 3065 top.titles[i] = "Transitive Vector";
michael@0 3066 i++;
michael@0 3067
michael@0 3068 top.authors[i] = "zHTML xD.5375.0500.0005.0296.";
michael@0 3069 top.titles[i] = "Trustees Of New Object";
michael@0 3070 i++;
michael@0 3071
michael@0 3072 top.authors[i] = "zHTML xD.5375.0500.0005.0297.";
michael@0 3073 top.titles[i] = "Type Creator Map";
michael@0 3074 i++;
michael@0 3075
michael@0 3076 top.authors[i] = "zHTML xD.5375.0500.0005.0298.";
michael@0 3077 top.titles[i] = "";
michael@0 3078 i++;
michael@0 3079
michael@0 3080 top.authors[i] = "zHTML xD.5375.0500.0005.0299.";
michael@0 3081 top.titles[i] = "uniqueID";
michael@0 3082 i++;
michael@0 3083
michael@0 3084 top.authors[i] = "zHTML xD.5375.0500.0005.0300.";
michael@0 3085 top.titles[i] = "Unknown";
michael@0 3086 i++;
michael@0 3087
michael@0 3088 top.authors[i] = "zHTML xD.5375.0500.0005.0301.";
michael@0 3089 top.titles[i] = "Unknown Auxiliary Class";
michael@0 3090 i++;
michael@0 3091
michael@0 3092 top.authors[i] = "zHTML xD.5375.0500.0005.0302.";
michael@0 3093 top.titles[i] = "Unknown Base Class";
michael@0 3094 i++;
michael@0 3095
michael@0 3096 top.authors[i] = "zHTML xD.5375.0500.0005.0303.";
michael@0 3097 top.titles[i] = "Used By";
michael@0 3098 i++;
michael@0 3099
michael@0 3100 top.authors[i] = "zHTML xD.5375.0500.0005.0304.";
michael@0 3101 top.titles[i] = "User";
michael@0 3102 i++;
michael@0 3103
michael@0 3104 top.authors[i] = "zHTML xD.5375.0500.0005.0305.";
michael@0 3105 top.titles[i] = "userCertificate";
michael@0 3106 i++;
michael@0 3107
michael@0 3108 top.authors[i] = "zHTML xD.5375.0500.0005.0306.";
michael@0 3109 top.titles[i] = "userPassword";
michael@0 3110 i++;
michael@0 3111
michael@0 3112 top.authors[i] = "zHTML xD.5375.0500.0005.0307.";
michael@0 3113 top.titles[i] = "Uses";
michael@0 3114 i++;
michael@0 3115
michael@0 3116 top.authors[i] = "zHTML xD.5375.0500.0005.0308.";
michael@0 3117 top.titles[i] = "Version";
michael@0 3118 i++;
michael@0 3119
michael@0 3120 top.authors[i] = "zHTML xD.5375.0500.0005.0309.";
michael@0 3121 top.titles[i] = "Volume";
michael@0 3122 i++;
michael@0 3123
michael@0 3124 top.authors[i] = "zHTML xD.5375.0500.0005.0310.";
michael@0 3125 top.titles[i] = "Volume Space Restrictions";
michael@0 3126 i++;
michael@0 3127
michael@0 3128 top.authors[i] = "zHTML xD.5375.0500.0005.0311.";
michael@0 3129 top.titles[i] = "WANMAN:Cost";
michael@0 3130 i++;
michael@0 3131
michael@0 3132 top.authors[i] = "zHTML xD.5375.0500.0005.0312.";
michael@0 3133 top.titles[i] = "WANMAN:Default Cost";
michael@0 3134 i++;
michael@0 3135
michael@0 3136 top.authors[i] = "zHTML xD.5375.0500.0005.0313.";
michael@0 3137 top.titles[i] = "WANMAN:LAN Area Membership";
michael@0 3138 i++;
michael@0 3139
michael@0 3140 top.authors[i] = "zHTML xD.5375.0500.0005.0314.";
michael@0 3141 top.titles[i] = "WANMAN:WAN Policy";
michael@0 3142 i++;
michael@0 3143
michael@0 3144 top.authors[i] = "zHTML xD.5375.0500.0005.0315.";
michael@0 3145 top.titles[i] = "x121Address";
michael@0 3146 i++;
michael@0 3147
michael@0 3148 top.authors[i] = "zHTML xD.5375.0500.0005.0316.";
michael@0 3149 top.titles[i] = "x500UniqueIdentifier";
michael@0 3150 i++;
michael@0 3151
michael@0 3152 top.authors[i] = "zFLDR xC.5375.0500.0006.";
michael@0 3153 top.titles[i] = "Novell Attribute Extensions";
michael@0 3154 i++;
michael@0 3155
michael@0 3156 top.authors[i] = "zHTML xD.5375.0500.0006.0001.";
michael@0 3157 top.titles[i] = "audio";
michael@0 3158 i++;
michael@0 3159
michael@0 3160 top.authors[i] = "zHTML xD.5375.0500.0006.0002.";
michael@0 3161 top.titles[i] = "carLicense";
michael@0 3162 i++;
michael@0 3163
michael@0 3164 top.authors[i] = "zHTML xD.5375.0500.0006.0003.";
michael@0 3165 top.titles[i] = "Client Install Candidate";
michael@0 3166 i++;
michael@0 3167
michael@0 3168 top.authors[i] = "zHTML xD.5375.0500.0006.0004.";
michael@0 3169 top.titles[i] = "Color Supported";
michael@0 3170 i++;
michael@0 3171
michael@0 3172 top.authors[i] = "zHTML xD.5375.0500.0006.0005.";
michael@0 3173 top.titles[i] = "Database Dir Path";
michael@0 3174 i++;
michael@0 3175
michael@0 3176 top.authors[i] = "zHTML xD.5375.0500.0006.0006.";
michael@0 3177 top.titles[i] = "Database Volume Name";
michael@0 3178 i++;
michael@0 3179
michael@0 3180 top.authors[i] = "zHTML xD.5375.0500.0006.0007.";
michael@0 3181 top.titles[i] = "Datapool Location";
michael@0 3182 i++;
michael@0 3183
michael@0 3184 top.authors[i] = "zHTML xD.5375.0500.0006.0008.";
michael@0 3185 top.titles[i] = "Datapool Locations";
michael@0 3186 i++;
michael@0 3187
michael@0 3188 top.authors[i] = "zHTML xD.5375.0500.0006.0009.";
michael@0 3189 top.titles[i] = "Delivery Methods Installed";
michael@0 3190 i++;
michael@0 3191
michael@0 3192 top.authors[i] = "zHTML xD.5375.0500.0006.0010.";
michael@0 3193 top.titles[i] = "displayName";
michael@0 3194 i++;
michael@0 3195
michael@0 3196 top.authors[i] = "zHTML xD.5375.0500.0006.0011.";
michael@0 3197 top.titles[i] = "Employee ID";
michael@0 3198 i++;
michael@0 3199
michael@0 3200 top.authors[i] = "zHTML xD.5375.0500.0006.0012.";
michael@0 3201 top.titles[i] = "Entrust:AttributeCertificate";
michael@0 3202 i++;
michael@0 3203
michael@0 3204 top.authors[i] = "zHTML xD.5375.0500.0006.0013.";
michael@0 3205 top.titles[i] = "Entrust:User";
michael@0 3206 i++;
michael@0 3207
michael@0 3208 top.authors[i] = "zHTML xD.5375.0500.0006.0014.";
michael@0 3209 top.titles[i] = "GW API Gateway Directory Path";
michael@0 3210 i++;
michael@0 3211
michael@0 3212 top.authors[i] = "zHTML xD.5375.0500.0006.0015.";
michael@0 3213 top.titles[i] = "GW API Gateway Directory Volume";
michael@0 3214 i++;
michael@0 3215
michael@0 3216 top.authors[i] = "zHTML xD.5375.0500.0006.0016.";
michael@0 3217 top.titles[i] = "IPP URI";
michael@0 3218 i++;
michael@0 3219
michael@0 3220 top.authors[i] = "zHTML xD.5375.0500.0006.0017.";
michael@0 3221 top.titles[i] = "IPP URI Security Scheme";
michael@0 3222 i++;
michael@0 3223
michael@0 3224 top.authors[i] = "zHTML xD.5375.0500.0006.0018.";
michael@0 3225 top.titles[i] = "jpegPhoto";
michael@0 3226 i++;
michael@0 3227
michael@0 3228 top.authors[i] = "zHTML xD.5375.0500.0006.0019.";
michael@0 3229 top.titles[i] = "labeledUri";
michael@0 3230 i++;
michael@0 3231
michael@0 3232 top.authors[i] = "zHTML xD.5375.0500.0006.0020.";
michael@0 3233 top.titles[i] = "LDAP Class Map";
michael@0 3234 i++;
michael@0 3235
michael@0 3236 top.authors[i] = "zHTML xD.5375.0500.0006.0021.";
michael@0 3237 top.titles[i] = "ldapPhoto";
michael@0 3238 i++;
michael@0 3239
michael@0 3240 top.authors[i] = "zHTML xD.5375.0500.0006.0022.";
michael@0 3241 top.titles[i] = "LDAPUserCertificate";
michael@0 3242 i++;
michael@0 3243
michael@0 3244 top.authors[i] = "zHTML xD.5375.0500.0006.0023.";
michael@0 3245 top.titles[i] = "LDAP:ARL";
michael@0 3246 i++;
michael@0 3247
michael@0 3248 top.authors[i] = "zHTML xD.5375.0500.0006.0024.";
michael@0 3249 top.titles[i] = "LDAP:caCertificate";
michael@0 3250 i++;
michael@0 3251
michael@0 3252 top.authors[i] = "zHTML xD.5375.0500.0006.0025.";
michael@0 3253 top.titles[i] = "LDAP:CRL";
michael@0 3254 i++;
michael@0 3255
michael@0 3256 top.authors[i] = "zHTML xD.5375.0500.0006.0026.";
michael@0 3257 top.titles[i] = "LDAP:crossCertificatePair";
michael@0 3258 i++;
michael@0 3259
michael@0 3260 top.authors[i] = "zHTML xD.5375.0500.0006.0027.";
michael@0 3261 top.titles[i] = "MASV:Authorized Range";
michael@0 3262 i++;
michael@0 3263
michael@0 3264 top.authors[i] = "zHTML xD.5375.0500.0006.0028.";
michael@0 3265 top.titles[i] = "MASV:Default Range";
michael@0 3266 i++;
michael@0 3267
michael@0 3268 top.authors[i] = "zHTML xD.5375.0500.0006.0029.";
michael@0 3269 top.titles[i] = "MASV:Domain Policy";
michael@0 3270 i++;
michael@0 3271
michael@0 3272 top.authors[i] = "zHTML xD.5375.0500.0006.0030.";
michael@0 3273 top.titles[i] = "MASV:Label";
michael@0 3274 i++;
michael@0 3275
michael@0 3276 top.authors[i] = "zHTML xD.5375.0500.0006.0031.";
michael@0 3277 top.titles[i] = "MASV:Proposed Label";
michael@0 3278 i++;
michael@0 3279
michael@0 3280 top.authors[i] = "zHTML xD.5375.0500.0006.0032.";
michael@0 3281 top.titles[i] = "Maximum Speed";
michael@0 3282 i++;
michael@0 3283
michael@0 3284 top.authors[i] = "zHTML xD.5375.0500.0006.0033.";
michael@0 3285 top.titles[i] = "Maximum Speed Units";
michael@0 3286 i++;
michael@0 3287
michael@0 3288 top.authors[i] = "zHTML xD.5375.0500.0006.0034.";
michael@0 3289 top.titles[i] = "MHS Send Directory Path";
michael@0 3290 i++;
michael@0 3291
michael@0 3292 top.authors[i] = "zHTML xD.5375.0500.0006.0035.";
michael@0 3293 top.titles[i] = "MHS Send Directory Volume";
michael@0 3294 i++;
michael@0 3295
michael@0 3296 top.authors[i] = "zHTML xD.5375.0500.0006.0036.";
michael@0 3297 top.titles[i] = "NDPS Accountant Role";
michael@0 3298 i++;
michael@0 3299
michael@0 3300 top.authors[i] = "zHTML xD.5375.0500.0006.0037.";
michael@0 3301 top.titles[i] = "NDPS Control Flags";
michael@0 3302 i++;
michael@0 3303
michael@0 3304 top.authors[i] = "zHTML xD.5375.0500.0006.0038.";
michael@0 3305 top.titles[i] = "NDPS Database Saved Timestamp";
michael@0 3306 i++;
michael@0 3307
michael@0 3308 top.authors[i] = "zHTML xD.5375.0500.0006.0039.";
michael@0 3309 top.titles[i] = "NDPS Database Saved Data Image";
michael@0 3310 i++;
michael@0 3311
michael@0 3312 top.authors[i] = "zHTML xD.5375.0500.0006.0040.";
michael@0 3313 top.titles[i] = "NDPS Database Saved Index Image";
michael@0 3314 i++;
michael@0 3315
michael@0 3316 top.authors[i] = "zHTML xD.5375.0500.0006.0041.";
michael@0 3317 top.titles[i] = "NDPS Default Printer";
michael@0 3318 i++;
michael@0 3319
michael@0 3320 top.authors[i] = "zHTML xD.5375.0500.0006.0042.";
michael@0 3321 top.titles[i] = "NDPS Default Public Printer";
michael@0 3322 i++;
michael@0 3323
michael@0 3324 top.authors[i] = "zHTML xD.5375.0500.0006.0043.";
michael@0 3325 top.titles[i] = "NDPS Job Configuration";
michael@0 3326 i++;
michael@0 3327
michael@0 3328 top.authors[i] = "zHTML xD.5375.0500.0006.0044.";
michael@0 3329 top.titles[i] = "NDPS Manager Status";
michael@0 3330 i++;
michael@0 3331
michael@0 3332 top.authors[i] = "zHTML xD.5375.0500.0006.0045.";
michael@0 3333 top.titles[i] = "NDPS Operator Role";
michael@0 3334 i++;
michael@0 3335
michael@0 3336 top.authors[i] = "zHTML xD.5375.0500.0006.0046.";
michael@0 3337 top.titles[i] = "NDPS Printer Install List";
michael@0 3338 i++;
michael@0 3339
michael@0 3340 top.authors[i] = "zHTML xD.5375.0500.0006.0047.";
michael@0 3341 top.titles[i] = "NDPS Printer Install Timestamp";
michael@0 3342 i++;
michael@0 3343
michael@0 3344 top.authors[i] = "zHTML xD.5375.0500.0006.0048.";
michael@0 3345 top.titles[i] = "NDPS Printer Queue List";
michael@0 3346 i++;
michael@0 3347
michael@0 3348 top.authors[i] = "zHTML xD.5375.0500.0006.0049.";
michael@0 3349 top.titles[i] = "NDPS Printer Siblings";
michael@0 3350 i++;
michael@0 3351
michael@0 3352 top.authors[i] = "zHTML xD.5375.0500.0006.0050.";
michael@0 3353 top.titles[i] = "NDPS Public Printer Install List";
michael@0 3354 i++;
michael@0 3355
michael@0 3356 top.authors[i] = "zHTML xD.5375.0500.0006.0051.";
michael@0 3357 top.titles[i] = "NDPS Replace All Client Printers";
michael@0 3358 i++;
michael@0 3359
michael@0 3360 top.authors[i] = "zHTML xD.5375.0500.0006.0052.";
michael@0 3361 top.titles[i] = "NDPS SMTP Server";
michael@0 3362 i++;
michael@0 3363
michael@0 3364 top.authors[i] = "zHTML xD.5375.0500.0006.0053.";
michael@0 3365 top.titles[i] = "NDPS User Role";
michael@0 3366 i++;
michael@0 3367
michael@0 3368 top.authors[i] = "zHTML xD.5375.0500.0006.0054.";
michael@0 3369 top.titles[i] = "NDSCat:Actual All Attributes";
michael@0 3370 i++;
michael@0 3371
michael@0 3372 top.authors[i] = "zHTML xD.5375.0500.0006.0055.";
michael@0 3373 top.titles[i] = "NDSCat:Actual Attribute Count";
michael@0 3374 i++;
michael@0 3375
michael@0 3376 top.authors[i] = "zHTML xD.5375.0500.0006.0056.";
michael@0 3377 top.titles[i] = "NDSCat:Actual Attributes";
michael@0 3378 i++;
michael@0 3379
michael@0 3380 top.authors[i] = "zHTML xD.5375.0500.0006.0057.";
michael@0 3381 top.titles[i] = "NDSCat:Actual Base Object";
michael@0 3382 i++;
michael@0 3383
michael@0 3384 top.authors[i] = "zHTML xD.5375.0500.0006.0058.";
michael@0 3385 top.titles[i] = "NDSCat:Actual Catalog Size";
michael@0 3386 i++;
michael@0 3387
michael@0 3388 top.authors[i] = "zHTML xD.5375.0500.0006.0059.";
michael@0 3389 top.titles[i] = "NDSCat:Actual End Time";
michael@0 3390 i++;
michael@0 3391
michael@0 3392 top.authors[i] = "zHTML xD.5375.0500.0006.0060.";
michael@0 3393 top.titles[i] = "NDSCat:Actual Filter";
michael@0 3394 i++;
michael@0 3395
michael@0 3396 top.authors[i] = "zHTML xD.5375.0500.0006.0061.";
michael@0 3397 top.titles[i] = "NDSCat:Actual Object Count";
michael@0 3398 i++;
michael@0 3399
michael@0 3400 top.authors[i] = "zHTML xD.5375.0500.0006.0062.";
michael@0 3401 top.titles[i] = "NDSCat:Actual Return Code";
michael@0 3402 i++;
michael@0 3403
michael@0 3404 top.authors[i] = "zHTML xD.5375.0500.0006.0063.";
michael@0 3405 top.titles[i] = "NDSCat:Actual Scope";
michael@0 3406 i++;
michael@0 3407
michael@0 3408 top.authors[i] = "zHTML xD.5375.0500.0006.0064.";
michael@0 3409 top.titles[i] = "NDSCat:Actual Search Aliases";
michael@0 3410 i++;
michael@0 3411
michael@0 3412 top.authors[i] = "zHTML xD.5375.0500.0006.0065.";
michael@0 3413 top.titles[i] = "NDSCat:Actual Start Time";
michael@0 3414 i++;
michael@0 3415
michael@0 3416 top.authors[i] = "zHTML xD.5375.0500.0006.0066.";
michael@0 3417 top.titles[i] = "NDSCat:Actual Value Count";
michael@0 3418 i++;
michael@0 3419
michael@0 3420 top.authors[i] = "zHTML xD.5375.0500.0006.0067.";
michael@0 3421 top.titles[i] = "NDSCat:All Attributes";
michael@0 3422 i++;
michael@0 3423
michael@0 3424 top.authors[i] = "zHTML xD.5375.0500.0006.0068.";
michael@0 3425 top.titles[i] = "NDSCat:AttrDefTbl";
michael@0 3426 i++;
michael@0 3427
michael@0 3428 top.authors[i] = "zHTML xD.5375.0500.0006.0069.";
michael@0 3429 top.titles[i] = "NDSCat:Attributes";
michael@0 3430 i++;
michael@0 3431
michael@0 3432 top.authors[i] = "zHTML xD.5375.0500.0006.0070.";
michael@0 3433 top.titles[i] = "NDSCat:Auto Dredge";
michael@0 3434 i++;
michael@0 3435
michael@0 3436 top.authors[i] = "zHTML xD.5375.0500.0006.0071.";
michael@0 3437 top.titles[i] = "NDSCat:Base Object";
michael@0 3438 i++;
michael@0 3439
michael@0 3440 top.authors[i] = "zHTML xD.5375.0500.0006.0072.";
michael@0 3441 top.titles[i] = "NDSCat:CatalogDB";
michael@0 3442 i++;
michael@0 3443
michael@0 3444 top.authors[i] = "zHTML xD.5375.0500.0006.0073.";
michael@0 3445 top.titles[i] = "NDSCat:Catalog List";
michael@0 3446 i++;
michael@0 3447
michael@0 3448 top.authors[i] = "zHTML xD.5375.0500.0006.0074.";
michael@0 3449 top.titles[i] = "NDSCat:Dredge Interval";
michael@0 3450 i++;
michael@0 3451
michael@0 3452 top.authors[i] = "zHTML xD.5375.0500.0006.0075.";
michael@0 3453 top.titles[i] = "NDSCat:Filter";
michael@0 3454 i++;
michael@0 3455
michael@0 3456 top.authors[i] = "zHTML xD.5375.0500.0006.0076.";
michael@0 3457 top.titles[i] = "NDSCat:IndexDefTbl";
michael@0 3458 i++;
michael@0 3459
michael@0 3460 top.authors[i] = "zHTML xD.5375.0500.0006.0077.";
michael@0 3461 top.titles[i] = "NDSCat:Indexes";
michael@0 3462 i++;
michael@0 3463
michael@0 3464 top.authors[i] = "zHTML xD.5375.0500.0006.0078.";
michael@0 3465 top.titles[i] = "NDSCat:Label";
michael@0 3466 i++;
michael@0 3467
michael@0 3468 top.authors[i] = "zHTML xD.5375.0500.0006.0079.";
michael@0 3469 top.titles[i] = "NDSCat:Log";
michael@0 3470 i++;
michael@0 3471
michael@0 3472 top.authors[i] = "zHTML xD.5375.0500.0006.0080.";
michael@0 3473 top.titles[i] = "NDSCat:Master Catalog";
michael@0 3474 i++;
michael@0 3475
michael@0 3476 top.authors[i] = "zHTML xD.5375.0500.0006.0081.";
michael@0 3477 top.titles[i] = "NDSCat:Max Log Size";
michael@0 3478 i++;
michael@0 3479
michael@0 3480 top.authors[i] = "zHTML xD.5375.0500.0006.0082.";
michael@0 3481 top.titles[i] = "NDSCat:Max Retries";
michael@0 3482 i++;
michael@0 3483
michael@0 3484 top.authors[i] = "zHTML xD.5375.0500.0006.0083.";
michael@0 3485 top.titles[i] = "NDSCat:Max Threads";
michael@0 3486 i++;
michael@0 3487
michael@0 3488 top.authors[i] = "zHTML xD.5375.0500.0006.0084.";
michael@0 3489 top.titles[i] = "NDSCat:Retry Interval";
michael@0 3490 i++;
michael@0 3491
michael@0 3492 top.authors[i] = "zHTML xD.5375.0500.0006.0085.";
michael@0 3493 top.titles[i] = "NDSCat:Scope";
michael@0 3494 i++;
michael@0 3495
michael@0 3496 top.authors[i] = "zHTML xD.5375.0500.0006.0086.";
michael@0 3497 top.titles[i] = "NDSCat:Search Aliases";
michael@0 3498 i++;
michael@0 3499
michael@0 3500 top.authors[i] = "zHTML xD.5375.0500.0006.0087.";
michael@0 3501 top.titles[i] = "NDSCat:Slave Catalog List";
michael@0 3502 i++;
michael@0 3503
michael@0 3504 top.authors[i] = "zHTML xD.5375.0500.0006.0088.";
michael@0 3505 top.titles[i] = "NDSCat:Start Time";
michael@0 3506 i++;
michael@0 3507
michael@0 3508 top.authors[i] = "zHTML xD.5375.0500.0006.0089.";
michael@0 3509 top.titles[i] = "NDSCat:Synch Interval";
michael@0 3510 i++;
michael@0 3511
michael@0 3512 top.authors[i] = "zHTML xD.5375.0500.0006.0090.";
michael@0 3513 top.titles[i] = "NLS:Common Certificate";
michael@0 3514 i++;
michael@0 3515
michael@0 3516 top.authors[i] = "zHTML xD.5375.0500.0006.0091.";
michael@0 3517 top.titles[i] = "NLS:Current Installed";
michael@0 3518 i++;
michael@0 3519
michael@0 3520 top.authors[i] = "zHTML xD.5375.0500.0006.0092.";
michael@0 3521 top.titles[i] = "NLS:Current Peak Installed";
michael@0 3522 i++;
michael@0 3523
michael@0 3524 top.authors[i] = "zHTML xD.5375.0500.0006.0093.";
michael@0 3525 top.titles[i] = "NLS:Current Peak Used";
michael@0 3526 i++;
michael@0 3527
michael@0 3528 top.authors[i] = "zHTML xD.5375.0500.0006.0094.";
michael@0 3529 top.titles[i] = "NLS:Current Used";
michael@0 3530 i++;
michael@0 3531
michael@0 3532 top.authors[i] = "zHTML xD.5375.0500.0006.0095.";
michael@0 3533 top.titles[i] = "NLS:Hourly Data Size";
michael@0 3534 i++;
michael@0 3535
michael@0 3536 top.authors[i] = "zHTML xD.5375.0500.0006.0096.";
michael@0 3537 top.titles[i] = "NLS:License Database";
michael@0 3538 i++;
michael@0 3539
michael@0 3540 top.authors[i] = "zHTML xD.5375.0500.0006.0097.";
michael@0 3541 top.titles[i] = "NLS:License ID";
michael@0 3542 i++;
michael@0 3543
michael@0 3544 top.authors[i] = "zHTML xD.5375.0500.0006.0098.";
michael@0 3545 top.titles[i] = "NLS:License Service Provider";
michael@0 3546 i++;
michael@0 3547
michael@0 3548 top.authors[i] = "zHTML xD.5375.0500.0006.0099.";
michael@0 3549 top.titles[i] = "NLS:LSP Revision";
michael@0 3550 i++;
michael@0 3551
michael@0 3552 top.authors[i] = "zHTML xD.5375.0500.0006.0100.";
michael@0 3553 top.titles[i] = "NLS:Owner";
michael@0 3554 i++;
michael@0 3555
michael@0 3556 top.authors[i] = "zHTML xD.5375.0500.0006.0101.";
michael@0 3557 top.titles[i] = "NLS:Peak Installed Data";
michael@0 3558 i++;
michael@0 3559
michael@0 3560 top.authors[i] = "zHTML xD.5375.0500.0006.0102.";
michael@0 3561 top.titles[i] = "NLS:Peak Used Data";
michael@0 3562 i++;
michael@0 3563
michael@0 3564 top.authors[i] = "zHTML xD.5375.0500.0006.0103.";
michael@0 3565 top.titles[i] = "NLS:Product";
michael@0 3566 i++;
michael@0 3567
michael@0 3568 top.authors[i] = "zHTML xD.5375.0500.0006.0104.";
michael@0 3569 top.titles[i] = "NLS:Publisher";
michael@0 3570 i++;
michael@0 3571
michael@0 3572 top.authors[i] = "zHTML xD.5375.0500.0006.0105.";
michael@0 3573 top.titles[i] = "NLS:Revision";
michael@0 3574 i++;
michael@0 3575
michael@0 3576 top.authors[i] = "zHTML xD.5375.0500.0006.0106.";
michael@0 3577 top.titles[i] = "NLS:Search Type";
michael@0 3578 i++;
michael@0 3579
michael@0 3580 top.authors[i] = "zHTML xD.5375.0500.0006.0107.";
michael@0 3581 top.titles[i] = "NLS:Summary Update Time";
michael@0 3582 i++;
michael@0 3583
michael@0 3584 top.authors[i] = "zHTML xD.5375.0500.0006.0108.";
michael@0 3585 top.titles[i] = "NLS:Summary Version";
michael@0 3586 i++;
michael@0 3587
michael@0 3588 top.authors[i] = "zHTML xD.5375.0500.0006.0109.";
michael@0 3589 top.titles[i] = "NLS:Transaction Database";
michael@0 3590 i++;
michael@0 3591
michael@0 3592 top.authors[i] = "zHTML xD.5375.0500.0006.0110.";
michael@0 3593 top.titles[i] = "NLS:Transaction Log Name";
michael@0 3594 i++;
michael@0 3595
michael@0 3596 top.authors[i] = "zHTML xD.5375.0500.0006.0111.";
michael@0 3597 top.titles[i] = "NLS:Transaction Log Size";
michael@0 3598 i++;
michael@0 3599
michael@0 3600 top.authors[i] = "zHTML xD.5375.0500.0006.0112.";
michael@0 3601 top.titles[i] = "NLS:Version";
michael@0 3602 i++;
michael@0 3603
michael@0 3604 top.authors[i] = "zHTML xD.5375.0500.0006.0113.";
michael@0 3605 top.titles[i] = "Notification Consumers";
michael@0 3606 i++;
michael@0 3607
michael@0 3608 top.authors[i] = "zHTML xD.5375.0500.0006.0114.";
michael@0 3609 top.titles[i] = "Notification Profile";
michael@0 3610 i++;
michael@0 3611
michael@0 3612 top.authors[i] = "zHTML xD.5375.0500.0006.0115.";
michael@0 3613 top.titles[i] = "Notification Service Enabled";
michael@0 3614 i++;
michael@0 3615
michael@0 3616 top.authors[i] = "zHTML xD.5375.0500.0006.0116.";
michael@0 3617 top.titles[i] = "Notification Srvc Net Addr";
michael@0 3618 i++;
michael@0 3619
michael@0 3620 top.authors[i] = "zHTML xD.5375.0500.0006.0117.";
michael@0 3621 top.titles[i] = "Notification Srvc Net Address";
michael@0 3622 i++;
michael@0 3623
michael@0 3624 top.authors[i] = "zHTML xD.5375.0500.0006.0118.";
michael@0 3625 top.titles[i] = "NRD:Registry Data";
michael@0 3626 i++;
michael@0 3627
michael@0 3628 top.authors[i] = "zHTML xD.5375.0500.0006.0119.";
michael@0 3629 top.titles[i] = "NRD:Registry Index";
michael@0 3630 i++;
michael@0 3631
michael@0 3632 top.authors[i] = "zHTML xD.5375.0500.0006.0120.";
michael@0 3633 top.titles[i] = "NSCP:mailAccessDomain";
michael@0 3634 i++;
michael@0 3635
michael@0 3636 top.authors[i] = "zHTML xD.5375.0500.0006.0121.";
michael@0 3637 top.titles[i] = "NSCP:mailAlternateAddress";
michael@0 3638 i++;
michael@0 3639
michael@0 3640 top.authors[i] = "zHTML xD.5375.0500.0006.0122.";
michael@0 3641 top.titles[i] = "NSCP:mailAutoReplyMode";
michael@0 3642 i++;
michael@0 3643
michael@0 3644 top.authors[i] = "zHTML xD.5375.0500.0006.0123.";
michael@0 3645 top.titles[i] = "NSCP:mailAutoReplyText";
michael@0 3646 i++;
michael@0 3647
michael@0 3648 top.authors[i] = "zHTML xD.5375.0500.0006.0124.";
michael@0 3649 top.titles[i] = "NSCP:mailDeliveryOption";
michael@0 3650 i++;
michael@0 3651
michael@0 3652 top.authors[i] = "zHTML xD.5375.0500.0006.0125.";
michael@0 3653 top.titles[i] = "NSCP:mailForwardingAddress";
michael@0 3654 i++;
michael@0 3655
michael@0 3656 top.authors[i] = "zHTML xD.5375.0500.0006.0126.";
michael@0 3657 top.titles[i] = "NSCP:mailHost";
michael@0 3658 i++;
michael@0 3659
michael@0 3660 top.authors[i] = "zHTML xD.5375.0500.0006.0127.";
michael@0 3661 top.titles[i] = "NSCP:mailMessageStore";
michael@0 3662 i++;
michael@0 3663
michael@0 3664 top.authors[i] = "zHTML xD.5375.0500.0006.0128.";
michael@0 3665 top.titles[i] = "NSCP:mailProgramDeliveryInfo";
michael@0 3666 i++;
michael@0 3667
michael@0 3668 top.authors[i] = "zHTML xD.5375.0500.0006.0129.";
michael@0 3669 top.titles[i] = "NSCP:mailQuota";
michael@0 3670 i++;
michael@0 3671
michael@0 3672 top.authors[i] = "zHTML xD.5375.0500.0006.0130.";
michael@0 3673 top.titles[i] = "NSCP:ngComponent";
michael@0 3674 i++;
michael@0 3675
michael@0 3676 top.authors[i] = "zHTML xD.5375.0500.0006.0131.";
michael@0 3677 top.titles[i] = "NSCP:nsLicenseEndTime";
michael@0 3678 i++;
michael@0 3679
michael@0 3680 top.authors[i] = "zHTML xD.5375.0500.0006.0132.";
michael@0 3681 top.titles[i] = "NSCP:nsLicensedFor";
michael@0 3682 i++;
michael@0 3683
michael@0 3684 top.authors[i] = "zHTML xD.5375.0500.0006.0133.";
michael@0 3685 top.titles[i] = "NSCP:nsLicenseStartTime";
michael@0 3686 i++;
michael@0 3687
michael@0 3688 top.authors[i] = "zHTML xD.5375.0500.0006.0134.";
michael@0 3689 top.titles[i] = "Page Description Languages";
michael@0 3690 i++;
michael@0 3691
michael@0 3692 top.authors[i] = "zHTML xD.5375.0500.0006.0135.";
michael@0 3693 top.titles[i] = "preferredLanguage";
michael@0 3694 i++;
michael@0 3695
michael@0 3696 top.authors[i] = "zHTML xD.5375.0500.0006.0136.";
michael@0 3697 top.titles[i] = "Primary Notification Service";
michael@0 3698 i++;
michael@0 3699
michael@0 3700 top.authors[i] = "zHTML xD.5375.0500.0006.0137.";
michael@0 3701 top.titles[i] = "Primary Resource Service";
michael@0 3702 i++;
michael@0 3703
michael@0 3704 top.authors[i] = "zHTML xD.5375.0500.0006.0138.";
michael@0 3705 top.titles[i] = "Printer Agent Name";
michael@0 3706 i++;
michael@0 3707
michael@0 3708 top.authors[i] = "zHTML xD.5375.0500.0006.0139.";
michael@0 3709 top.titles[i] = "Printer Manufacturer";
michael@0 3710 i++;
michael@0 3711
michael@0 3712 top.authors[i] = "zHTML xD.5375.0500.0006.0140.";
michael@0 3713 top.titles[i] = "Printer Mechanism Types";
michael@0 3714 i++;
michael@0 3715
michael@0 3716 top.authors[i] = "zHTML xD.5375.0500.0006.0141.";
michael@0 3717 top.titles[i] = "Printer Model";
michael@0 3718 i++;
michael@0 3719
michael@0 3720 top.authors[i] = "zHTML xD.5375.0500.0006.0142.";
michael@0 3721 top.titles[i] = "Printer Status";
michael@0 3722 i++;
michael@0 3723
michael@0 3724 top.authors[i] = "zHTML xD.5375.0500.0006.0143.";
michael@0 3725 top.titles[i] = "Printer to PA ID Mappings";
michael@0 3726 i++;
michael@0 3727
michael@0 3728 top.authors[i] = "zHTML xD.5375.0500.0006.0144.";
michael@0 3729 top.titles[i] = "PSM Name";
michael@0 3730 i++;
michael@0 3731
michael@0 3732 top.authors[i] = "zHTML xD.5375.0500.0006.0145.";
michael@0 3733 top.titles[i] = "Registry Advertising Name";
michael@0 3734 i++;
michael@0 3735
michael@0 3736 top.authors[i] = "zHTML xD.5375.0500.0006.0146.";
michael@0 3737 top.titles[i] = "Registry Service Enabled";
michael@0 3738 i++;
michael@0 3739
michael@0 3740 top.authors[i] = "zHTML xD.5375.0500.0006.0147.";
michael@0 3741 top.titles[i] = "Registry Srvc Net Addr";
michael@0 3742 i++;
michael@0 3743
michael@0 3744 top.authors[i] = "zHTML xD.5375.0500.0006.0148.";
michael@0 3745 top.titles[i] = "Registry Srvc Net Address";
michael@0 3746 i++;
michael@0 3747
michael@0 3748 top.authors[i] = "zHTML xD.5375.0500.0006.0149.";
michael@0 3749 top.titles[i] = "Resolution";
michael@0 3750 i++;
michael@0 3751
michael@0 3752 top.authors[i] = "zHTML xD.5375.0500.0006.0150.";
michael@0 3753 top.titles[i] = "Resource Mgmt Srvc Net Addr";
michael@0 3754 i++;
michael@0 3755
michael@0 3756 top.authors[i] = "zHTML xD.5375.0500.0006.0151.";
michael@0 3757 top.titles[i] = "Resource Mgmt Srvc Net Address";
michael@0 3758 i++;
michael@0 3759
michael@0 3760 top.authors[i] = "zHTML xD.5375.0500.0006.0152.";
michael@0 3761 top.titles[i] = "Resource Mgmt Service Enabled";
michael@0 3762 i++;
michael@0 3763
michael@0 3764 top.authors[i] = "zHTML xD.5375.0500.0006.0153.";
michael@0 3765 top.titles[i] = "Resource Mgr Database Path";
michael@0 3766 i++;
michael@0 3767
michael@0 3768 top.authors[i] = "zHTML xD.5375.0500.0006.0154.";
michael@0 3769 top.titles[i] = "Resource Mgr Database Volume";
michael@0 3770 i++;
michael@0 3771
michael@0 3772 top.authors[i] = "zHTML xD.5375.0500.0006.0155.";
michael@0 3773 top.titles[i] = "secretary";
michael@0 3774 i++;
michael@0 3775
michael@0 3776 top.authors[i] = "zHTML xD.5375.0500.0006.0156.";
michael@0 3777 top.titles[i] = "Sides Supported";
michael@0 3778 i++;
michael@0 3779
michael@0 3780 top.authors[i] = "zHTML xD.5375.0500.0006.0157.";
michael@0 3781 top.titles[i] = "SLP Attribute";
michael@0 3782 i++;
michael@0 3783
michael@0 3784 top.authors[i] = "zHTML xD.5375.0500.0006.0158.";
michael@0 3785 top.titles[i] = "SLP Cache Limit";
michael@0 3786 i++;
michael@0 3787
michael@0 3788 top.authors[i] = "zHTML xD.5375.0500.0006.0159.";
michael@0 3789 top.titles[i] = "SLP DA Back Link";
michael@0 3790 i++;
michael@0 3791
michael@0 3792 top.authors[i] = "zHTML xD.5375.0500.0006.0160.";
michael@0 3793 top.titles[i] = "SLP Directory Agent DN";
michael@0 3794 i++;
michael@0 3795
michael@0 3796 top.authors[i] = "zHTML xD.5375.0500.0006.0161.";
michael@0 3797 top.titles[i] = "SLP Language";
michael@0 3798 i++;
michael@0 3799
michael@0 3800 top.authors[i] = "zHTML xD.5375.0500.0006.0162.";
michael@0 3801 top.titles[i] = "SLP Lifetime";
michael@0 3802 i++;
michael@0 3803
michael@0 3804 top.authors[i] = "zHTML xD.5375.0500.0006.0163.";
michael@0 3805 top.titles[i] = "SLP Scope Name";
michael@0 3806 i++;
michael@0 3807
michael@0 3808 top.authors[i] = "zHTML xD.5375.0500.0006.0164.";
michael@0 3809 top.titles[i] = "SLP Scope Unit DN";
michael@0 3810 i++;
michael@0 3811
michael@0 3812 top.authors[i] = "zHTML xD.5375.0500.0006.0165.";
michael@0 3813 top.titles[i] = "SLP Start Purge Hour";
michael@0 3814 i++;
michael@0 3815
michael@0 3816 top.authors[i] = "zHTML xD.5375.0500.0006.0166.";
michael@0 3817 top.titles[i] = "SLP Status";
michael@0 3818 i++;
michael@0 3819
michael@0 3820 top.authors[i] = "zHTML xD.5375.0500.0006.0167.";
michael@0 3821 top.titles[i] = "SLP SU Back Link";
michael@0 3822 i++;
michael@0 3823
michael@0 3824 top.authors[i] = "zHTML xD.5375.0500.0006.0168.";
michael@0 3825 top.titles[i] = "SLP SU Type";
michael@0 3826 i++;
michael@0 3827
michael@0 3828 top.authors[i] = "zHTML xD.5375.0500.0006.0169.";
michael@0 3829 top.titles[i] = "SLP Type";
michael@0 3830 i++;
michael@0 3831
michael@0 3832 top.authors[i] = "zHTML xD.5375.0500.0006.0170.";
michael@0 3833 top.titles[i] = "SLP URL";
michael@0 3834 i++;
michael@0 3835
michael@0 3836 top.authors[i] = "zHTML xD.5375.0500.0006.0171.";
michael@0 3837 top.titles[i] = "SMS Protocol Address";
michael@0 3838 i++;
michael@0 3839
michael@0 3840 top.authors[i] = "zHTML xD.5375.0500.0006.0172.";
michael@0 3841 top.titles[i] = "SMS Registered Service";
michael@0 3842 i++;
michael@0 3843
michael@0 3844 top.authors[i] = "zHTML xD.5375.0500.0006.0173.";
michael@0 3845 top.titles[i] = "SU";
michael@0 3846 i++;
michael@0 3847
michael@0 3848 top.authors[i] = "zHTML xD.5375.0500.0006.0174.";
michael@0 3849 top.titles[i] = "SvcInfo";
michael@0 3850 i++;
michael@0 3851
michael@0 3852 top.authors[i] = "zHTML xD.5375.0500.0006.0175.";
michael@0 3853 top.titles[i] = "SvcType";
michael@0 3854 i++;
michael@0 3855
michael@0 3856 top.authors[i] = "zHTML xD.5375.0500.0006.0176.";
michael@0 3857 top.titles[i] = "SvcTypeID";
michael@0 3858 i++;
michael@0 3859
michael@0 3860 top.authors[i] = "zHTML xD.5375.0500.0006.0177.";
michael@0 3861 top.titles[i] = "userSMIMECertificate";
michael@0 3862 i++;
michael@0 3863
michael@0 3864 top.authors[i] = "zFLDR xC.5375.0500.0007.";
michael@0 3865 top.titles[i] = "LDAP Operational Attributes";
michael@0 3866 i++;
michael@0 3867
michael@0 3868 top.authors[i] = "zHTML xD.5375.0500.0007.0001.";
michael@0 3869 top.titles[i] = "createTimeStamp";
michael@0 3870 i++;
michael@0 3871
michael@0 3872 top.authors[i] = "zHTML xD.5375.0500.0007.0002.";
michael@0 3873 top.titles[i] = "creatorsName";
michael@0 3874 i++;
michael@0 3875
michael@0 3876 top.authors[i] = "zHTML xD.5375.0500.0007.0003.";
michael@0 3877 top.titles[i] = "entryFlags";
michael@0 3878 i++;
michael@0 3879
michael@0 3880 top.authors[i] = "zHTML xD.5375.0500.0007.0004.";
michael@0 3881 top.titles[i] = "federationBoundary";
michael@0 3882 i++;
michael@0 3883
michael@0 3884 top.authors[i] = "zHTML xD.5375.0500.0007.0005.";
michael@0 3885 top.titles[i] = "localEntryID";
michael@0 3886 i++;
michael@0 3887
michael@0 3888 top.authors[i] = "zHTML xD.5375.0500.0007.0006.";
michael@0 3889 top.titles[i] = "modifiersName";
michael@0 3890 i++;
michael@0 3891
michael@0 3892 top.authors[i] = "zHTML xD.5375.0500.0007.0007.";
michael@0 3893 top.titles[i] = "modifyTimeStamp";
michael@0 3894 i++;
michael@0 3895
michael@0 3896 top.authors[i] = "zHTML xD.5375.0500.0007.0008.";
michael@0 3897 top.titles[i] = "structuralObjectClass";
michael@0 3898 i++;
michael@0 3899
michael@0 3900 top.authors[i] = "zHTML xD.5375.0500.0007.0009.";
michael@0 3901 top.titles[i] = "subordinateCount";
michael@0 3902 i++;
michael@0 3903
michael@0 3904 top.authors[i] = "zHTML xD.5375.0500.0007.0010.";
michael@0 3905 top.titles[i] = "subschemaSubentry";
michael@0 3906 i++;
michael@0 3907
michael@0 3908 top.authors[i] = "zFLDR xC.5375.0500.0008.";
michael@0 3909 top.titles[i] = "Attribute Syntax Definitions";
michael@0 3910 i++;
michael@0 3911
michael@0 3912 top.authors[i] = "zHTML xD.5375.0500.0008.0001.";
michael@0 3913 top.titles[i] = "Back Link";
michael@0 3914 i++;
michael@0 3915
michael@0 3916 top.authors[i] = "zHTML xD.5375.0500.0008.0002.";
michael@0 3917 top.titles[i] = "Boolean";
michael@0 3918 i++;
michael@0 3919
michael@0 3920 top.authors[i] = "zHTML xD.5375.0500.0008.0003.";
michael@0 3921 top.titles[i] = "Case Exact String";
michael@0 3922 i++;
michael@0 3923
michael@0 3924 top.authors[i] = "zHTML xD.5375.0500.0008.0004.";
michael@0 3925 top.titles[i] = "Case Ignore List";
michael@0 3926 i++;
michael@0 3927
michael@0 3928 top.authors[i] = "zHTML xD.5375.0500.0008.0005.";
michael@0 3929 top.titles[i] = "Case Ignore String";
michael@0 3930 i++;
michael@0 3931
michael@0 3932 top.authors[i] = "zHTML xD.5375.0500.0008.0006.";
michael@0 3933 top.titles[i] = "Class Name";
michael@0 3934 i++;
michael@0 3935
michael@0 3936 top.authors[i] = "zHTML xD.5375.0500.0008.0007.";
michael@0 3937 top.titles[i] = "Counter";
michael@0 3938 i++;
michael@0 3939
michael@0 3940 top.authors[i] = "zHTML xD.5375.0500.0008.0008.";
michael@0 3941 top.titles[i] = "Distinguished Name";
michael@0 3942 i++;
michael@0 3943
michael@0 3944 top.authors[i] = "zHTML xD.5375.0500.0008.0009.";
michael@0 3945 top.titles[i] = "EMail Address";
michael@0 3946 i++;
michael@0 3947
michael@0 3948 top.authors[i] = "zHTML xD.5375.0500.0008.0010.";
michael@0 3949 top.titles[i] = "Facsimile Telephone Number";
michael@0 3950 i++;
michael@0 3951
michael@0 3952 top.authors[i] = "zHTML xD.5375.0500.0008.0011.";
michael@0 3953 top.titles[i] = "Hold";
michael@0 3954 i++;
michael@0 3955
michael@0 3956 top.authors[i] = "zHTML xD.5375.0500.0008.0012.";
michael@0 3957 top.titles[i] = "Integer";
michael@0 3958 i++;
michael@0 3959
michael@0 3960 top.authors[i] = "zHTML xD.5375.0500.0008.0013.";
michael@0 3961 top.titles[i] = "Interval";
michael@0 3962 i++;
michael@0 3963
michael@0 3964 top.authors[i] = "zHTML xD.5375.0500.0008.0014.";
michael@0 3965 top.titles[i] = "Net Address";
michael@0 3966 i++;
michael@0 3967
michael@0 3968 top.authors[i] = "zHTML xD.5375.0500.0008.0015.";
michael@0 3969 top.titles[i] = "Numeric String";
michael@0 3970 i++;
michael@0 3971
michael@0 3972 top.authors[i] = "zHTML xD.5375.0500.0008.0016.";
michael@0 3973 top.titles[i] = "Object ACL";
michael@0 3974 i++;
michael@0 3975
michael@0 3976 top.authors[i] = "zHTML xD.5375.0500.0008.0017.";
michael@0 3977 top.titles[i] = "Octet List";
michael@0 3978 i++;
michael@0 3979
michael@0 3980 top.authors[i] = "zHTML xD.5375.0500.0008.0018.";
michael@0 3981 top.titles[i] = "Octet String";
michael@0 3982 i++;
michael@0 3983
michael@0 3984 top.authors[i] = "zHTML xD.5375.0500.0008.0019.";
michael@0 3985 top.titles[i] = "Path";
michael@0 3986 i++;
michael@0 3987
michael@0 3988 top.authors[i] = "zHTML xD.5375.0500.0008.0020.";
michael@0 3989 top.titles[i] = "Postal Address";
michael@0 3990 i++;
michael@0 3991
michael@0 3992 top.authors[i] = "zHTML xD.5375.0500.0008.0021.";
michael@0 3993 top.titles[i] = "Printable String";
michael@0 3994 i++;
michael@0 3995
michael@0 3996 top.authors[i] = "zHTML xD.5375.0500.0008.0022.";
michael@0 3997 top.titles[i] = "Replica Pointer";
michael@0 3998 i++;
michael@0 3999
michael@0 4000 top.authors[i] = "zHTML xD.5375.0500.0008.0023.";
michael@0 4001 top.titles[i] = "Stream";
michael@0 4002 i++;
michael@0 4003
michael@0 4004 top.authors[i] = "zHTML xD.5375.0500.0008.0024.";
michael@0 4005 top.titles[i] = "Telephone Number";
michael@0 4006 i++;
michael@0 4007
michael@0 4008 top.authors[i] = "zHTML xD.5375.0500.0008.0025.";
michael@0 4009 top.titles[i] = "Time";
michael@0 4010 i++;
michael@0 4011
michael@0 4012 top.authors[i] = "zHTML xD.5375.0500.0008.0026.";
michael@0 4013 top.titles[i] = "Timestamp";
michael@0 4014 i++;
michael@0 4015
michael@0 4016 top.authors[i] = "zHTML xD.5375.0500.0008.0027.";
michael@0 4017 top.titles[i] = "Typed Name";
michael@0 4018 i++;
michael@0 4019
michael@0 4020 top.authors[i] = "zHTML xD.5375.0500.0008.0028.";
michael@0 4021 top.titles[i] = "Unknown";
michael@0 4022 i++;
michael@0 4023
michael@0 4024 top.authors[i] = "zFLDR xC.5375.0500.0009.";
michael@0 4025 top.titles[i] = "Index of Classes";
michael@0 4026 i++;
michael@0 4027
michael@0 4028 top.authors[i] = "zHTML xD.5375.0500.0009.0001.";
michael@0 4029 top.titles[i] = "A through B";
michael@0 4030 i++;
michael@0 4031
michael@0 4032 top.authors[i] = "zHTML xD.5375.0500.0009.0002.";
michael@0 4033 top.titles[i] = "C through D";
michael@0 4034 i++;
michael@0 4035
michael@0 4036 top.authors[i] = "zHTML xD.5375.0500.0009.0003.";
michael@0 4037 top.titles[i] = "E through K";
michael@0 4038 i++;
michael@0 4039
michael@0 4040 top.authors[i] = "zHTML xD.5375.0500.0009.0004.";
michael@0 4041 top.titles[i] = "L through M";
michael@0 4042 i++;
michael@0 4043
michael@0 4044 top.authors[i] = "zHTML xD.5375.0500.0009.0005.";
michael@0 4045 top.titles[i] = "N";
michael@0 4046 i++;
michael@0 4047
michael@0 4048 top.authors[i] = "zHTML xD.5375.0500.0009.0006.";
michael@0 4049 top.titles[i] = "O";
michael@0 4050 i++;
michael@0 4051
michael@0 4052 top.authors[i] = "zHTML xD.5375.0500.0009.0007.";
michael@0 4053 top.titles[i] = "P through R";
michael@0 4054 i++;
michael@0 4055
michael@0 4056 top.authors[i] = "zHTML xD.5375.0500.0009.0008.";
michael@0 4057 top.titles[i] = "S";
michael@0 4058 i++;
michael@0 4059
michael@0 4060 top.authors[i] = "zHTML xD.5375.0500.0009.0009.";
michael@0 4061 top.titles[i] = "T through Z";
michael@0 4062 i++;
michael@0 4063
michael@0 4064 top.authors[i] = "zFLDR xC.5375.0500.0010.";
michael@0 4065 top.titles[i] = "Index of Attributes";
michael@0 4066 i++;
michael@0 4067
michael@0 4068 top.authors[i] = "zHTML xD.5375.0500.0010.0001.";
michael@0 4069 top.titles[i] = "A";
michael@0 4070 i++;
michael@0 4071
michael@0 4072 top.authors[i] = "zHTML xD.5375.0500.0010.0002.";
michael@0 4073 top.titles[i] = "B";
michael@0 4074 i++;
michael@0 4075
michael@0 4076 top.authors[i] = "zHTML xD.5375.0500.0010.0003.";
michael@0 4077 top.titles[i] = "C";
michael@0 4078 i++;
michael@0 4079
michael@0 4080 top.authors[i] = "zHTML xD.5375.0500.0010.0004.";
michael@0 4081 top.titles[i] = "D";
michael@0 4082 i++;
michael@0 4083
michael@0 4084 top.authors[i] = "zHTML xD.5375.0500.0010.0005.";
michael@0 4085 top.titles[i] = "E";
michael@0 4086 i++;
michael@0 4087
michael@0 4088 top.authors[i] = "zHTML xD.5375.0500.0010.0006.";
michael@0 4089 top.titles[i] = "F through G";
michael@0 4090 i++;
michael@0 4091
michael@0 4092 top.authors[i] = "zHTML xD.5375.0500.0010.0007.";
michael@0 4093 top.titles[i] = "H";
michael@0 4094 i++;
michael@0 4095
michael@0 4096 top.authors[i] = "zHTML xD.5375.0500.0010.0008.";
michael@0 4097 top.titles[i] = "I through K";
michael@0 4098 i++;
michael@0 4099
michael@0 4100 top.authors[i] = "zHTML xD.5375.0500.0010.0009.";
michael@0 4101 top.titles[i] = "L";
michael@0 4102 i++;
michael@0 4103
michael@0 4104 top.authors[i] = "zHTML xD.5375.0500.0010.0010.";
michael@0 4105 top.titles[i] = "M";
michael@0 4106 i++;
michael@0 4107
michael@0 4108 top.authors[i] = "zHTML xD.5375.0500.0010.0011.";
michael@0 4109 top.titles[i] = "N";
michael@0 4110 i++;
michael@0 4111
michael@0 4112 top.authors[i] = "zHTML xD.5375.0500.0010.0012.";
michael@0 4113 top.titles[i] = "O";
michael@0 4114 i++;
michael@0 4115
michael@0 4116 top.authors[i] = "zHTML xD.5375.0500.0010.0013.";
michael@0 4117 top.titles[i] = "P";
michael@0 4118 i++;
michael@0 4119
michael@0 4120 top.authors[i] = "zHTML xD.5375.0500.0010.0014.";
michael@0 4121 top.titles[i] = "Q";
michael@0 4122 i++;
michael@0 4123
michael@0 4124 top.authors[i] = "zHTML xD.5375.0500.0010.0015.";
michael@0 4125 top.titles[i] = "R";
michael@0 4126 i++;
michael@0 4127
michael@0 4128 top.authors[i] = "zHTML xD.5375.0500.0010.0016.";
michael@0 4129 top.titles[i] = "S";
michael@0 4130 i++;
michael@0 4131
michael@0 4132 top.authors[i] = "zHTML xD.5375.0500.0010.0017.";
michael@0 4133 top.titles[i] = "T";
michael@0 4134 i++;
michael@0 4135
michael@0 4136 top.authors[i] = "zHTML xD.5375.0500.0010.0018.";
michael@0 4137 top.titles[i] = "U";
michael@0 4138 i++;
michael@0 4139
michael@0 4140 top.authors[i] = "zHTML xD.5375.0500.0010.0019.";
michael@0 4141 top.titles[i] = "V through Z";
michael@0 4142 i++;
michael@0 4143
michael@0 4144 top.authors[i] = "zFLDR xC.5375.0500.0011.";
michael@0 4145 top.titles[i] = "Index of ASN.1 IDs";
michael@0 4146 i++;
michael@0 4147
michael@0 4148 top.authors[i] = "zHTML xD.5375.0500.0011.0001.";
michael@0 4149 top.titles[i] = "0";
michael@0 4150 i++;
michael@0 4151
michael@0 4152 top.authors[i] = "zHTML xD.5375.0500.0011.0002.";
michael@0 4153 top.titles[i] = "1";
michael@0 4154 i++;
michael@0 4155
michael@0 4156 top.authors[i] = "zHTML xD.5375.0500.0011.0003.";
michael@0 4157 top.titles[i] = "2 through 2.4";
michael@0 4158 i++;
michael@0 4159
michael@0 4160 top.authors[i] = "zHTML xD.5375.0500.0011.0004.";
michael@0 4161 top.titles[i] = "2.5 through 2.9";
michael@0 4162 i++;
michael@0 4163
michael@0 4164 top.authors[i] = "zFLDR xC.5375.0500.0012.";
michael@0 4165 top.titles[i] = "Index of LDAP Names";
michael@0 4166 i++;
michael@0 4167
michael@0 4168 top.authors[i] = "zHTML xD.5375.0500.0012.0001.";
michael@0 4169 top.titles[i] = "A through B";
michael@0 4170 i++;
michael@0 4171
michael@0 4172 top.authors[i] = "zHTML xD.5375.0500.0012.0002.";
michael@0 4173 top.titles[i] = "C";
michael@0 4174 i++;
michael@0 4175
michael@0 4176 top.authors[i] = "zHTML xD.5375.0500.0012.0003.";
michael@0 4177 top.titles[i] = "D";
michael@0 4178 i++;
michael@0 4179
michael@0 4180 top.authors[i] = "zHTML xD.5375.0500.0012.0004.";
michael@0 4181 top.titles[i] = "E through F";
michael@0 4182 i++;
michael@0 4183
michael@0 4184 top.authors[i] = "zHTML xD.5375.0500.0012.0005.";
michael@0 4185 top.titles[i] = "G";
michael@0 4186 i++;
michael@0 4187
michael@0 4188 top.authors[i] = "zHTML xD.5375.0500.0012.0006.";
michael@0 4189 top.titles[i] = "H";
michael@0 4190 i++;
michael@0 4191
michael@0 4192 top.authors[i] = "zHTML xD.5375.0500.0012.0007.";
michael@0 4193 top.titles[i] = "I through K";
michael@0 4194 i++;
michael@0 4195
michael@0 4196 top.authors[i] = "zHTML xD.5375.0500.0012.0008.";
michael@0 4197 top.titles[i] = "L";
michael@0 4198 i++;
michael@0 4199
michael@0 4200 top.authors[i] = "zHTML xD.5375.0500.0012.0009.";
michael@0 4201 top.titles[i] = "M";
michael@0 4202 i++;
michael@0 4203
michael@0 4204 top.authors[i] = "zHTML xD.5375.0500.0012.0010.";
michael@0 4205 top.titles[i] = "N";
michael@0 4206 i++;
michael@0 4207
michael@0 4208 top.authors[i] = "zHTML xD.5375.0500.0012.0011.";
michael@0 4209 top.titles[i] = "O";
michael@0 4210 i++;
michael@0 4211
michael@0 4212 top.authors[i] = "zHTML xD.5375.0500.0012.0012.";
michael@0 4213 top.titles[i] = "P";
michael@0 4214 i++;
michael@0 4215
michael@0 4216 top.authors[i] = "zHTML xD.5375.0500.0012.0013.";
michael@0 4217 top.titles[i] = "Q through R";
michael@0 4218 i++;
michael@0 4219
michael@0 4220 top.authors[i] = "zHTML xD.5375.0500.0012.0014.";
michael@0 4221 top.titles[i] = "S";
michael@0 4222 i++;
michael@0 4223
michael@0 4224 top.authors[i] = "zHTML xD.5375.0500.0012.0015.";
michael@0 4225 top.titles[i] = "T";
michael@0 4226 i++;
michael@0 4227
michael@0 4228 top.authors[i] = "zHTML xD.5375.0500.0012.0016.";
michael@0 4229 top.titles[i] = "U through Z";
michael@0 4230 i++;
michael@0 4231
michael@0 4232 top.authors[i] = "zHTML xC.5375.0500.0013.";
michael@0 4233 top.titles[i] = "Revision History";
michael@0 4234 i++;
michael@0 4235
michael@0 4236 top.authors[i] = "zFLDR xB.5375.0400.";
michael@0 4237 top.titles[i] = "NDS Iterator Services";
michael@0 4238 i++;
michael@0 4239
michael@0 4240 top.authors[i] = "zFLDR xC.5375.0400.0001.";
michael@0 4241 top.titles[i] = "Concepts";
michael@0 4242 i++;
michael@0 4243
michael@0 4244 top.authors[i] = "zHTML xD.5375.0400.0001.0001.";
michael@0 4245 top.titles[i] = "Iterator Objects";
michael@0 4246 i++;
michael@0 4247
michael@0 4248 top.authors[i] = "zHTML xD.5375.0400.0001.0002.";
michael@0 4249 top.titles[i] = "Creation of an Iterator Object";
michael@0 4250 i++;
michael@0 4251
michael@0 4252 top.authors[i] = "zHTML xD.5375.0400.0001.0003.";
michael@0 4253 top.titles[i] = "Iterator Indexes";
michael@0 4254 i++;
michael@0 4255
michael@0 4256 top.authors[i] = "zHTML xD.5375.0400.0001.0004.";
michael@0 4257 top.titles[i] = "Positions of an Iterator Object";
michael@0 4258 i++;
michael@0 4259
michael@0 4260 top.authors[i] = "zHTML xD.5375.0400.0001.0005.";
michael@0 4261 top.titles[i] = "Current Position Movement with Retrieval Functions";
michael@0 4262 i++;
michael@0 4263
michael@0 4264 top.authors[i] = "zHTML xD.5375.0400.0001.0006.";
michael@0 4265 top.titles[i] = "Retrieval of Data";
michael@0 4266 i++;
michael@0 4267
michael@0 4268 top.authors[i] = "zFLDR xC.5375.0400.0002.";
michael@0 4269 top.titles[i] = "Tasks";
michael@0 4270 i++;
michael@0 4271
michael@0 4272 top.authors[i] = "zHTML xD.5375.0400.0002.0001.";
michael@0 4273 top.titles[i] = "Creating a Search Iterator Object";
michael@0 4274 i++;
michael@0 4275
michael@0 4276 top.authors[i] = "zHTML xD.5375.0400.0002.0002.";
michael@0 4277 top.titles[i] = "Retrieving and Unpacking Object and Attribute Name Data";
michael@0 4278 i++;
michael@0 4279
michael@0 4280 top.authors[i] = "zHTML xD.5375.0400.0002.0003.";
michael@0 4281 top.titles[i] = "Retrieving and Unpacking Object, Attribute, and Value Data";
michael@0 4282 i++;
michael@0 4283
michael@0 4284 top.authors[i] = "zFLDR xC.5375.0400.0003.";
michael@0 4285 top.titles[i] = "Functions";
michael@0 4286 i++;
michael@0 4287
michael@0 4288 top.authors[i] = "zHTML xD.5375.0400.0003.0001.";
michael@0 4289 top.titles[i] = "NWDSItrAtEOF";
michael@0 4290 i++;
michael@0 4291
michael@0 4292 top.authors[i] = "zHTML xD.5375.0400.0003.0002.";
michael@0 4293 top.titles[i] = "NWDSItrAtFirst";
michael@0 4294 i++;
michael@0 4295
michael@0 4296 top.authors[i] = "zHTML xD.5375.0400.0003.0003.";
michael@0 4297 top.titles[i] = "NWDSItrClone";
michael@0 4298 i++;
michael@0 4299
michael@0 4300 top.authors[i] = "zHTML xD.5375.0400.0003.0004.";
michael@0 4301 top.titles[i] = "NWDSItrCount";
michael@0 4302 i++;
michael@0 4303
michael@0 4304 top.authors[i] = "zHTML xD.5375.0400.0003.0005.";
michael@0 4305 top.titles[i] = "NWDSItrCreateList";
michael@0 4306 i++;
michael@0 4307
michael@0 4308 top.authors[i] = "zHTML xD.5375.0400.0003.0006.";
michael@0 4309 top.titles[i] = "NWDSItrCreateSearch";
michael@0 4310 i++;
michael@0 4311
michael@0 4312 top.authors[i] = "zHTML xD.5375.0400.0003.0007.";
michael@0 4313 top.titles[i] = "NWDSItrDestroy";
michael@0 4314 i++;
michael@0 4315
michael@0 4316 top.authors[i] = "zHTML xD.5375.0400.0003.0008.";
michael@0 4317 top.titles[i] = "NWDSItrGetCurrent";
michael@0 4318 i++;
michael@0 4319
michael@0 4320 top.authors[i] = "zHTML xD.5375.0400.0003.0009.";
michael@0 4321 top.titles[i] = "NWDSItrGetInfo";
michael@0 4322 i++;
michael@0 4323
michael@0 4324 top.authors[i] = "zHTML xD.5375.0400.0003.0010.";
michael@0 4325 top.titles[i] = "NWDSItrGetNext";
michael@0 4326 i++;
michael@0 4327
michael@0 4328 top.authors[i] = "zHTML xD.5375.0400.0003.0011.";
michael@0 4329 top.titles[i] = "NWDSItrGetPosition";
michael@0 4330 i++;
michael@0 4331
michael@0 4332 top.authors[i] = "zHTML xD.5375.0400.0003.0012.";
michael@0 4333 top.titles[i] = "NWDSItrGetPrev";
michael@0 4334 i++;
michael@0 4335
michael@0 4336 top.authors[i] = "zHTML xD.5375.0400.0003.0013.";
michael@0 4337 top.titles[i] = "NWDSItrSetPosition";
michael@0 4338 i++;
michael@0 4339
michael@0 4340 top.authors[i] = "zHTML xD.5375.0400.0003.0014.";
michael@0 4341 top.titles[i] = "NWDSItrSetPositionFromIterator";
michael@0 4342 i++;
michael@0 4343
michael@0 4344 top.authors[i] = "zHTML xD.5375.0400.0003.0015.";
michael@0 4345 top.titles[i] = "NWDSItrSkip";
michael@0 4346 i++;
michael@0 4347
michael@0 4348 top.authors[i] = "zHTML xD.5375.0400.0003.0016.";
michael@0 4349 top.titles[i] = "NWDSItrTypeDown";
michael@0 4350 i++;
michael@0 4351
michael@0 4352 top.authors[i] = "zFLDR xC.5375.0400.0004.";
michael@0 4353 top.titles[i] = "NDS Iterator Example Code";
michael@0 4354 i++;
michael@0 4355
michael@0 4356 top.authors[i] = "zHTML xD.5375.0400.0004.0001.";
michael@0 4357 top.titles[i] = "Cloning an Iterator Object: Example";
michael@0 4358 i++;
michael@0 4359
michael@0 4360 top.authors[i] = "zHTML xD.5375.0400.0004.0002.";
michael@0 4361 top.titles[i] = "Counting with NDS Iterators: Example";
michael@0 4362 i++;
michael@0 4363
michael@0 4364 top.authors[i] = "zHTML xD.5375.0400.0004.0003.";
michael@0 4365 top.titles[i] = "Creating and Using a List Iterator: Example";
michael@0 4366 i++;
michael@0 4367
michael@0 4368 top.authors[i] = "zHTML xD.5375.0400.0004.0004.";
michael@0 4369 top.titles[i] = "Creating a Search Iterator and Displaying the Results: Example";
michael@0 4370 i++;
michael@0 4371
michael@0 4372 top.authors[i] = "zHTML xD.5375.0400.0004.0005.";
michael@0 4373 top.titles[i] = "Getting Iterator Information: Example";
michael@0 4374 i++;
michael@0 4375
michael@0 4376 top.authors[i] = "zHTML xD.5375.0400.0004.0006.";
michael@0 4377 top.titles[i] = "Getting and Setting the Iterator's Position: Example";
michael@0 4378 i++;
michael@0 4379
michael@0 4380 top.authors[i] = "zHTML xD.5375.0400.0004.0007.";
michael@0 4381 top.titles[i] = "Listing in Reverse Order: Example";
michael@0 4382 i++;
michael@0 4383
michael@0 4384 top.authors[i] = "zHTML xD.5375.0400.0004.0008.";
michael@0 4385 top.titles[i] = "Positioning the Iterator with Typedown: Example";
michael@0 4386 i++;
michael@0 4387
michael@0 4388 top.authors[i] = "zHTML xD.5375.0400.0004.0009.";
michael@0 4389 top.titles[i] = "Skipping Objects in the List: Example";
michael@0 4390 i++;
michael@0 4391
michael@0 4392 top.authors[i] = "zHTML xC.5375.0400.0005.";
michael@0 4393 top.titles[i] = "Revision History";
michael@0 4394 i++;
michael@0 4395
michael@0 4396
michael@0 4397 // Morten's JavaScript Tree Menu
michael@0 4398 // written by Morten Wang <morten@treemenu.com> (c) 1998-2000
michael@0 4399 // This is version 2.2.6, dated 2000-03-30
michael@0 4400
michael@0 4401 // The script is freely distributable
michael@0 4402 // It may be used (and modified) as you wish, but retain this message
michael@0 4403 // For more information about the menu visit its home page
michael@0 4404 // http://www.treemenu.com/
michael@0 4405
michael@0 4406 /******************************************************************************
michael@0 4407 * Define the MenuItem object. *
michael@0 4408 ******************************************************************************/
michael@0 4409
michael@0 4410 function MTMenuItem(text, url, target,nsearchID, icon) {
michael@0 4411 this.text = text;
michael@0 4412 this.url = url ? url : "";
michael@0 4413 this.target = target ? target : "";
michael@0 4414 this.icon = icon ? icon : "";
michael@0 4415 this.nsearchID = nsearchID;
michael@0 4416
michael@0 4417 this.number = MTMSubNumber++;
michael@0 4418 this.parent = null;
michael@0 4419 this.submenu = null;
michael@0 4420 this.expanded = false;
michael@0 4421 this.selected = false;
michael@0 4422 this.childSelected = false;
michael@0 4423
michael@0 4424 this.MTMakeSubmenu = MTMakeSubmenu;
michael@0 4425
michael@0 4426 }
michael@0 4427
michael@0 4428 function MTMakeSubmenu(menu) {
michael@0 4429 this.submenu = menu;
michael@0 4430 for (var i = 0; i < menu.items.length; i++)
michael@0 4431 {
michael@0 4432 menu.items[i].parent = this;
michael@0 4433 }
michael@0 4434 }
michael@0 4435
michael@0 4436
michael@0 4437
michael@0 4438 function getChildrenChecked(item, selected)
michael@0 4439 {
michael@0 4440 if (item.submenu != null)
michael@0 4441 {
michael@0 4442 for (var x = 0; x < item.submenu.items.length; x++)
michael@0 4443 {
michael@0 4444 item.submenu.items[x].selected = selected;
michael@0 4445 item.submenu.items[x].childSelected = false;
michael@0 4446 MarkChildren(item.submenu.items[x],selected);
michael@0 4447 }
michael@0 4448 }
michael@0 4449 }
michael@0 4450
michael@0 4451 /******************************************************************************
michael@0 4452 * Define the Menu object. *
michael@0 4453 ******************************************************************************/
michael@0 4454
michael@0 4455 function MTMenu() {
michael@0 4456 this.items = new Array();
michael@0 4457 this.MTMAddItem = MTMAddItem;
michael@0 4458 }
michael@0 4459
michael@0 4460 function MTMAddItem(item) {
michael@0 4461 this.items[this.items.length] = item;
michael@0 4462 }
michael@0 4463
michael@0 4464 /******************************************************************************
michael@0 4465 * Define the icon list, addIcon function and MTMIcon item. *
michael@0 4466 ******************************************************************************/
michael@0 4467
michael@0 4468 function IconList() {
michael@0 4469 this.items = new Array();
michael@0 4470 this.addIcon = addIcon;
michael@0 4471 }
michael@0 4472
michael@0 4473 function addIcon(item) {
michael@0 4474 this.items[this.items.length] = item;
michael@0 4475 }
michael@0 4476
michael@0 4477 function MTMIcon(iconfile, match, type) {
michael@0 4478 this.file = iconfile;
michael@0 4479 this.match = match;
michael@0 4480 this.type = type;
michael@0 4481 }
michael@0 4482
michael@0 4483 /******************************************************************************
michael@0 4484 * Global variables. Not to be altered unless you know what you're doing. *
michael@0 4485 * User-configurable options are at the end of this document. *
michael@0 4486 ******************************************************************************/
michael@0 4487
michael@0 4488 var MTMLoaded = false;
michael@0 4489 var MTMLevel;
michael@0 4490 var MTMBar = new Array();
michael@0 4491 var MTMIndices = new Array();
michael@0 4492 var MTMBrowser = null;
michael@0 4493 var MTMNN3 = false;
michael@0 4494 var MTMNN4 = false;
michael@0 4495 var MTMIE4 = false;
michael@0 4496 var MTMUseStyle = true;
michael@0 4497
michael@0 4498 /*
michael@0 4499 * (For a standalone JS shell test, we will simply set these as follows:)
michael@0 4500 */
michael@0 4501 MTMBrowser = true;
michael@0 4502 MTMNN4 = true;
michael@0 4503
michael@0 4504
michael@0 4505 var MTMClickedItem = false;
michael@0 4506 var MTMExpansion = false;
michael@0 4507
michael@0 4508 var MTMSubNumber = 1;
michael@0 4509 var MTMTrackedItem = false;
michael@0 4510 var MTMTrack = false;
michael@0 4511
michael@0 4512 var MTMPreHREF = "";
michael@0 4513 if(MTMIE4 || MTMNN3) {
michael@0 4514 MTMPreHREF += ""; // document.location.href.substring(0, document.location.href.lastIndexOf("/") +1);
michael@0 4515 }
michael@0 4516
michael@0 4517 var MTMFirstRun = true;
michael@0 4518 var MTMCurrentTime = 0; // for checking timeout.
michael@0 4519 var MTMUpdating = false;
michael@0 4520 var MTMWinSize, MTMyval;
michael@0 4521 var MTMOutputString = "";
michael@0 4522
michael@0 4523 /******************************************************************************
michael@0 4524 * Code that picks up frame names of frames in the parent frameset. *
michael@0 4525 ******************************************************************************/
michael@0 4526
michael@0 4527
michael@0 4528 /******************************************************************************
michael@0 4529 * Dummy function for sub-menus without URLs *
michael@0 4530 * Thanks to Michel Plungjan for the advice. :) *
michael@0 4531 ******************************************************************************/
michael@0 4532
michael@0 4533 function myVoid() { ; }
michael@0 4534
michael@0 4535 /******************************************************************************
michael@0 4536 * Functions to draw the menu. *
michael@0 4537 ******************************************************************************/
michael@0 4538
michael@0 4539 function MTMSubAction(SubItem, ReturnValue) {
michael@0 4540
michael@0 4541 SubItem.expanded = (SubItem.expanded) ? false : true;
michael@0 4542 if(SubItem.expanded) {
michael@0 4543 MTMExpansion = true;
michael@0 4544 }
michael@0 4545
michael@0 4546 MTMClickedItem = SubItem.number;
michael@0 4547
michael@0 4548 if(MTMTrackedItem && MTMTrackedItem != SubItem.number) {
michael@0 4549 MTMTrackedItem = false;
michael@0 4550 }
michael@0 4551
michael@0 4552 if(!ReturnValue) {
michael@0 4553 setTimeout("MTMDisplayMenu()", 10);
michael@0 4554 }
michael@0 4555
michael@0 4556 return ReturnValue;
michael@0 4557 }
michael@0 4558
michael@0 4559
michael@0 4560 function MarkChildren(item, selected)
michael@0 4561 {
michael@0 4562 if (item.submenu != null)
michael@0 4563 {
michael@0 4564 for (var x = 0; x < item.submenu.items.length; x++)
michael@0 4565 {
michael@0 4566 item.submenu.items[x].selected = selected;
michael@0 4567 item.submenu.items[x].childSelected = false;
michael@0 4568 MarkChildren(item.submenu.items[x],selected);
michael@0 4569 }
michael@0 4570 }
michael@0 4571
michael@0 4572 }
michael@0 4573
michael@0 4574 function isAllChildrenSelected(item)
michael@0 4575 {
michael@0 4576 if (item.submenu != null)
michael@0 4577 {
michael@0 4578 for (var x = 0; x < item.submenu.items.length; x++)
michael@0 4579 {
michael@0 4580 if (!item.submenu.items[x].selected)
michael@0 4581 {
michael@0 4582 return false;
michael@0 4583 }
michael@0 4584 }
michael@0 4585 }
michael@0 4586 return true;
michael@0 4587 }
michael@0 4588
michael@0 4589 function isSomeChildrenSelected(item)
michael@0 4590 {
michael@0 4591 var retValue = false;
michael@0 4592
michael@0 4593 if (item.submenu != null)
michael@0 4594 {
michael@0 4595 for (var x = 0; x < item.submenu.items.length; x++)
michael@0 4596 {
michael@0 4597 if (item.submenu.items[x].selected || item.submenu.items[x].childSelected)
michael@0 4598 {
michael@0 4599 retValue = true;
michael@0 4600 }
michael@0 4601 }
michael@0 4602 }
michael@0 4603
michael@0 4604 return retValue;
michael@0 4605 }
michael@0 4606
michael@0 4607 function ToggleSelected(item, ReturnValue) {
michael@0 4608
michael@0 4609 item.selected = (item.selected) ? false : true;
michael@0 4610 item.childSelected = false;
michael@0 4611
michael@0 4612 var currentNode = item;
michael@0 4613
michael@0 4614 while (currentNode.parent)
michael@0 4615 {
michael@0 4616 currentNode.parent.selected = isAllChildrenSelected(currentNode.parent);
michael@0 4617 currentNode.parent.childSelected = isSomeChildrenSelected(currentNode.parent);
michael@0 4618 currentNode = currentNode.parent;
michael@0 4619 }
michael@0 4620
michael@0 4621 MarkChildren(item,item.selected);
michael@0 4622
michael@0 4623 if(!ReturnValue) {
michael@0 4624 setTimeout("MTMDisplayMenu()", 10);
michael@0 4625 }
michael@0 4626
michael@0 4627 return ReturnValue;
michael@0 4628 }
michael@0 4629
michael@0 4630
michael@0 4631 function MTMStartMenu() {
michael@0 4632 MTMLoaded = true;
michael@0 4633 if(MTMFirstRun) {
michael@0 4634 MTMCurrentTime++;
michael@0 4635 if(MTMCurrentTime == MTMTimeOut) { // call MTMDisplayMenu
michael@0 4636 setTimeout("MTMDisplayMenu()",10);
michael@0 4637 } else {
michael@0 4638 setTimeout("MTMStartMenu()",100);
michael@0 4639 }
michael@0 4640 }
michael@0 4641 }
michael@0 4642
michael@0 4643 function MTMDisplayMenu() {
michael@0 4644 if(MTMBrowser && !MTMUpdating) {
michael@0 4645 MTMUpdating = true;
michael@0 4646 MTMFirstRun = false;
michael@0 4647
michael@0 4648 if(MTMTrack) { MTMTrackedItem = MTMTrackExpand(menu); }
michael@0 4649
michael@0 4650 if(MTMExpansion && MTMSubsAutoClose) { MTMCloseSubs(menu); }
michael@0 4651
michael@0 4652 MTMLevel = 0;
michael@0 4653 MTMDoc = parent.frames[MTMenuFrame].document
michael@0 4654 MTMDoc.open("text/html", "replace");
michael@0 4655 MTMOutputString = '<html><head>';
michael@0 4656 if(MTMLinkedSS) {
michael@0 4657 MTMOutputString += '<link rel="stylesheet" type="text/css" href="' + MTMPreHREF + MTMSSHREF + '">';
michael@0 4658 } else if(MTMUseStyle) {
michael@0 4659 MTMOutputString += '<style type="text/css">body {color:' + MTMTextColor + ';background:';
michael@0 4660 MTMOutputString += (MTMBackground == "") ? MTMBGColor : MTMakeBackImage(MTMBackground);
michael@0 4661 MTMOutputString += ';} #root {color:' + MTMRootColor + ';background:' + ((MTMBackground == "") ? MTMBGColor : 'transparent') + ';font-family:' + MTMRootFont + ';font-size:' + MTMRootCSSize + ';} ';
michael@0 4662 MTMOutputString += 'a {font-family:' + MTMenuFont + ';letter-spacing:-0.05em;font-weight:bold;font-size:' + MTMenuCSSize + ';text-decoration:none;color:' + MTMLinkColor + ';background:' + MTMakeBackground() + ';} ';
michael@0 4663 MTMOutputString += MTMakeA('pseudo', 'hover', MTMAhoverColor);
michael@0 4664 MTMOutputString += MTMakeA('class', 'tracked', MTMTrackColor);
michael@0 4665 MTMOutputString += MTMakeA('class', 'subexpanded', MTMSubExpandColor);
michael@0 4666 MTMOutputString += MTMakeA('class', 'subclosed', MTMSubClosedColor) + '</style>';
michael@0 4667 }
michael@0 4668
michael@0 4669 MTMOutputString += '</head><body ';
michael@0 4670 if(MTMBackground != "") {
michael@0 4671 MTMOutputString += 'background="' + MTMPreHREF + MTMenuImageDirectory + MTMBackground + '" ';
michael@0 4672 }
michael@0 4673 MTMOutputString += 'bgcolor="' + MTMBGColor + '" text="' + MTMTextColor + '" link="' + MTMLinkColor + '" vlink="' + MTMLinkColor + '" alink="' + MTMLinkColor + '">';
michael@0 4674
michael@0 4675 MTMOutputString += '<table border="0" cellpadding="0" cellspacing="0" width="' + MTMTableWidth + '">';
michael@0 4676 MTMOutputString += '<tr valign="top"><td nowrap>'; //REMOVED ROOT ICON <img src="' + MTMPreHREF + MTMenuImageDirectory + MTMRootIcon + '" align="left" border="0" vspace="0" hspace="0">';
michael@0 4677 if(MTMUseStyle) {
michael@0 4678 MTMOutputString += ''; //REMOVED ROOT CAPTION <span id="root">&nbsp;' + MTMenuText + '</span>';
michael@0 4679 } else {
michael@0 4680 MTMOutputString += ''; //REMOVED ROOT CAPTION <font size="' + MTMRootFontSize + '" face="' + MTMRootFont + '" color="' + MTMRootColor + '">' + MTMenuText + '</font>';
michael@0 4681 }
michael@0 4682 MTMDoc.writeln(MTMOutputString + '</td></tr>');
michael@0 4683
michael@0 4684 MTMListItems(menu);
michael@0 4685 MTMDoc.writeln('</table>');
michael@0 4686
michael@0 4687 MTMDoc.writeln('</body></html>');
michael@0 4688 MTMDoc.close();
michael@0 4689
michael@0 4690 if((MTMClickedItem || MTMTrackedItem) && (MTMNN4 || MTMIE4) && !MTMFirstRun) {
michael@0 4691 MTMItemName = "sub" + (MTMClickedItem ? MTMClickedItem : MTMTrackedItem);
michael@0 4692 if(document.layers && parent.frames[MTMenuFrame].scrollbars) {
michael@0 4693 MTMyval = parent.frames[MTMenuFrame].document.anchors[MTMItemName].y;
michael@0 4694 MTMWinSize = parent.frames[MTMenuFrame].innerHeight;
michael@0 4695 } else {
michael@0 4696 MTMyval = MTMGetPos(parent.frames[MTMenuFrame].document.all[MTMItemName]);
michael@0 4697 MTMWinSize = parent.frames[MTMenuFrame].document.body.offsetHeight;
michael@0 4698 }
michael@0 4699 if(MTMyval > (MTMWinSize - 60)) {
michael@0 4700 parent.frames[MTMenuFrame].scrollBy(0, parseInt(MTMyval - (MTMWinSize * 1/3)));
michael@0 4701 }
michael@0 4702 }
michael@0 4703
michael@0 4704 MTMClickedItem = false;
michael@0 4705 MTMExpansion = false;
michael@0 4706 MTMTrack = false;
michael@0 4707 }
michael@0 4708 MTMUpdating = false;
michael@0 4709 }
michael@0 4710
michael@0 4711 function MTMListItems(menu) {
michael@0 4712 var i, isLast;
michael@0 4713 for (i = 0; i < menu.items.length; i++) {
michael@0 4714 MTMIndices[MTMLevel] = i;
michael@0 4715 isLast = (i == menu.items.length -1);
michael@0 4716 MTMDisplayItem(menu.items[i], isLast);
michael@0 4717
michael@0 4718 if (menu.items[i].submenu && menu.items[i].expanded) {
michael@0 4719 MTMBar[MTMLevel] = (isLast) ? false : true;
michael@0 4720 MTMLevel++;
michael@0 4721 MTMListItems(menu.items[i].submenu);
michael@0 4722 MTMLevel--;
michael@0 4723 } else {
michael@0 4724 MTMBar[MTMLevel] = false;
michael@0 4725 }
michael@0 4726 }
michael@0 4727
michael@0 4728 }
michael@0 4729
michael@0 4730 function MTMDisplayItem(item, last) {
michael@0 4731 var i, img, more;
michael@0 4732
michael@0 4733 var MTMfrm = "parent.frames['code']";
michael@0 4734 var MTMref = '.menu.items[' + MTMIndices[0] + ']';
michael@0 4735
michael@0 4736 if(item.submenu) {
michael@0 4737 var MTMouseOverText;
michael@0 4738
michael@0 4739 var MTMClickCmd;
michael@0 4740 var MTMDblClickCmd = false;
michael@0 4741
michael@0 4742
michael@0 4743 if(MTMLevel > 0) {
michael@0 4744 for(i = 1; i <= MTMLevel; i++) {
michael@0 4745 MTMref += ".submenu.items[" + MTMIndices[i] + "]";
michael@0 4746 }
michael@0 4747 }
michael@0 4748
michael@0 4749 if(!MTMEmulateWE && !item.expanded && (item.url != "")) {
michael@0 4750 MTMClickCmd = "return " + MTMfrm + ".MTMSubAction(" + MTMfrm + MTMref + ",true);";
michael@0 4751 } else {
michael@0 4752 MTMClickCmd = "return " + MTMfrm + ".MTMSubAction(" + MTMfrm + MTMref + ",false);";
michael@0 4753 }
michael@0 4754
michael@0 4755 if(item.url == "") {
michael@0 4756 MTMouseOverText = (item.text.indexOf("'") != -1) ? MTMEscapeQuotes(item.text) : item.text;
michael@0 4757 } else {
michael@0 4758 MTMouseOverText = "Expand/Collapse";
michael@0 4759 }
michael@0 4760 }
michael@0 4761
michael@0 4762 MTMOutputString = '<tr valign="top"><td nowrap>';
michael@0 4763 if(MTMLevel > 0) {
michael@0 4764 for (i = 0; i < MTMLevel; i++) {
michael@0 4765 MTMOutputString += (MTMBar[i]) ? MTMakeImage("menu_bar.gif") : MTMakeImage("menu_pixel.gif");
michael@0 4766 }
michael@0 4767 }
michael@0 4768
michael@0 4769 more = false;
michael@0 4770 if(item.submenu) {
michael@0 4771 if(MTMSubsGetPlus || MTMEmulateWE) {
michael@0 4772 more = true;
michael@0 4773 } else {
michael@0 4774 for (i = 0; i < item.submenu.items.length; i++) {
michael@0 4775 if (item.submenu.items[i].submenu) {
michael@0 4776 more = true;
michael@0 4777 }
michael@0 4778 }
michael@0 4779 }
michael@0 4780 }
michael@0 4781 if(!more) {
michael@0 4782 img = (last) ? "menu_corner.gif" : "menu_tee.gif";
michael@0 4783 } else {
michael@0 4784 if(item.expanded) {
michael@0 4785 img = (last) ? "menu_corner_minus.gif" : "menu_tee_minus.gif";
michael@0 4786 } else {
michael@0 4787 img = (last) ? "menu_corner_plus.gif" : "menu_tee_plus.gif";
michael@0 4788 }
michael@0 4789 if(item.url == "" || item.expanded || MTMEmulateWE) {
michael@0 4790 MTMOutputString += MTMakeVoid(item, MTMClickCmd, MTMouseOverText);
michael@0 4791 } else {
michael@0 4792 MTMOutputString += MTMakeLink(item, true) + ' onclick="' + MTMClickCmd + '">';
michael@0 4793 }
michael@0 4794 }
michael@0 4795 MTMOutputString += MTMakeImage(img);
michael@0 4796 /////////////////////////////////////////
michael@0 4797
michael@0 4798 var MTMCheckRef = '.menu.items[' + MTMIndices[0] + ']';
michael@0 4799 if(MTMLevel > 0) {
michael@0 4800 for(i = 1; i <= MTMLevel; i++) {
michael@0 4801 MTMCheckRef += ".submenu.items[" + MTMIndices[i] + "]";
michael@0 4802 }
michael@0 4803 }
michael@0 4804
michael@0 4805 MTMOutputString += MTMakeVoid(item, "return " + MTMfrm + ".ToggleSelected(" + MTMfrm + MTMCheckRef + ",false);", "Checked Status") ;
michael@0 4806 var checkedImage = item.selected ? "checked.gif" : "uchecked.gif";
michael@0 4807 if (!item.selected)
michael@0 4808 {
michael@0 4809 checkedImage = item.childSelected ? "gchecked.gif" : "uchecked.gif";
michael@0 4810 }
michael@0 4811 MTMOutputString += MTMakeImage(checkedImage);
michael@0 4812 MTMOutputString += '</a>';
michael@0 4813 /////////////////////////////////////////////////
michael@0 4814
michael@0 4815
michael@0 4816 if(item.submenu) {
michael@0 4817 if(MTMEmulateWE && item.url != "")
michael@0 4818 {
michael@0 4819 MTMOutputString += '</a>' + MTMakeLink(item, false) + '>';
michael@0 4820 }
michael@0 4821
michael@0 4822 img = (item.expanded) ? "menu_folder_open.gif" : "menu_folder_closed.gif";
michael@0 4823
michael@0 4824 if(!more) {
michael@0 4825 if(item.url == "" || item.expanded) {
michael@0 4826 MTMOutputString += MTMakeVoid(item, MTMClickCmd, MTMouseOverText);
michael@0 4827 } else {
michael@0 4828 MTMOutputString += MTMakeLink(item, true) + ' onclick="' + MTMClickCmd + '">';
michael@0 4829 }
michael@0 4830 }
michael@0 4831 MTMOutputString += MTMakeImage(img);
michael@0 4832
michael@0 4833 } else {
michael@0 4834 MTMOutputString += MTMakeLink(item, true) + '>';
michael@0 4835 img = (item.icon != "") ? item.icon : MTMFetchIcon(item.url);
michael@0 4836 MTMOutputString += MTMakeImage(img);
michael@0 4837 }
michael@0 4838
michael@0 4839 if(item.submenu && (item.url != "") && (item.expanded && !MTMEmulateWE)) {
michael@0 4840 MTMOutputString += '</a>' + MTMakeLink(item, false) + '>';
michael@0 4841 }
michael@0 4842
michael@0 4843 if(MTMNN3 && !MTMLinkedSS) {
michael@0 4844 var stringColor;
michael@0 4845 if(item.submenu && (item.url == "") && (item.number == MTMClickedItem)) {
michael@0 4846 stringColor = (item.expanded) ? MTMSubExpandColor : MTMSubClosedColor;
michael@0 4847 } else if(MTMTrackedItem && MTMTrackedItem == item.number) {
michael@0 4848 stringColor = MTMTrackColor;
michael@0 4849 } else {
michael@0 4850 stringColor = MTMLinkColor;
michael@0 4851 }
michael@0 4852 MTMOutputString += '<font color="' + stringColor + '" size="' + MTMenuFontSize + '" face="' + MTMenuFont + '">';
michael@0 4853 }
michael@0 4854 MTMOutputString += '&nbsp;' + item.text + ((MTMNN3 && !MTMLinkedSS) ? '</font>' : '') + '</a>' ;
michael@0 4855 MTMDoc.writeln(MTMOutputString + '</td></tr>');
michael@0 4856 }
michael@0 4857
michael@0 4858 function MTMEscapeQuotes(myString) {
michael@0 4859 var newString = "";
michael@0 4860 var cur_pos = myString.indexOf("'");
michael@0 4861 var prev_pos = 0;
michael@0 4862 while (cur_pos != -1) {
michael@0 4863 if(cur_pos == 0) {
michael@0 4864 newString += "\\";
michael@0 4865 } else if(myString.charAt(cur_pos-1) != "\\") {
michael@0 4866 newString += myString.substring(prev_pos, cur_pos) + "\\";
michael@0 4867 } else if(myString.charAt(cur_pos-1) == "\\") {
michael@0 4868 newString += myString.substring(prev_pos, cur_pos);
michael@0 4869 }
michael@0 4870 prev_pos = cur_pos++;
michael@0 4871 cur_pos = myString.indexOf("'", cur_pos);
michael@0 4872 }
michael@0 4873 return(newString + myString.substring(prev_pos, myString.length));
michael@0 4874 }
michael@0 4875
michael@0 4876 function MTMTrackExpand(thisMenu) {
michael@0 4877 var i, targetPath;
michael@0 4878 var foundNumber = false;
michael@0 4879 for(i = 0; i < thisMenu.items.length; i++) {
michael@0 4880 if(thisMenu.items[i].url != "" && MTMTrackTarget(thisMenu.items[i].target)) {
michael@0 4881 targetPath = parent.frames[thisMenu.items[i].target].location.protocol + '//' + parent.frames[thisMenu.items[i].target].location.host + parent.frames[thisMenu.items[i].target].location.pathname;
michael@0 4882
michael@0 4883 if(targetPath.lastIndexOf(thisMenu.items[i].url) != -1 && (targetPath.lastIndexOf(thisMenu.items[i].url) + thisMenu.items[i].url.length) == targetPath.length) {
michael@0 4884 return(thisMenu.items[i].number);
michael@0 4885 }
michael@0 4886 }
michael@0 4887 if(thisMenu.items[i].submenu) {
michael@0 4888 foundNumber = MTMTrackExpand(thisMenu.items[i].submenu);
michael@0 4889 if(foundNumber) {
michael@0 4890 if(!thisMenu.items[i].expanded) {
michael@0 4891 thisMenu.items[i].expanded = true;
michael@0 4892 if(!MTMClickedItem) { MTMClickedItem = thisMenu.items[i].number; }
michael@0 4893 MTMExpansion = true;
michael@0 4894 }
michael@0 4895 return(foundNumber);
michael@0 4896 }
michael@0 4897 }
michael@0 4898 }
michael@0 4899 return(foundNumber);
michael@0 4900 }
michael@0 4901
michael@0 4902 function MTMCloseSubs(thisMenu) {
michael@0 4903 var i, j;
michael@0 4904 var foundMatch = false;
michael@0 4905 for(i = 0; i < thisMenu.items.length; i++) {
michael@0 4906 if(thisMenu.items[i].submenu && thisMenu.items[i].expanded) {
michael@0 4907 if(thisMenu.items[i].number == MTMClickedItem) {
michael@0 4908 foundMatch = true;
michael@0 4909 for(j = 0; j < thisMenu.items[i].submenu.items.length; j++) {
michael@0 4910 if(thisMenu.items[i].submenu.items[j].expanded) {
michael@0 4911 thisMenu.items[i].submenu.items[j].expanded = false;
michael@0 4912 }
michael@0 4913 }
michael@0 4914 } else {
michael@0 4915 if(foundMatch) {
michael@0 4916 thisMenu.items[i].expanded = false;
michael@0 4917 } else {
michael@0 4918 foundMatch = MTMCloseSubs(thisMenu.items[i].submenu);
michael@0 4919 if(!foundMatch) {
michael@0 4920 thisMenu.items[i].expanded = false;
michael@0 4921 }
michael@0 4922 }
michael@0 4923 }
michael@0 4924 }
michael@0 4925 }
michael@0 4926 return(foundMatch);
michael@0 4927 }
michael@0 4928
michael@0 4929 function MTMFetchIcon(testString) {
michael@0 4930 var i;
michael@0 4931 for(i = 0; i < MTMIconList.items.length; i++) {
michael@0 4932 if((MTMIconList.items[i].type == 'any') && (testString.indexOf(MTMIconList.items[i].match) != -1)) {
michael@0 4933 return(MTMIconList.items[i].file);
michael@0 4934 } else if((MTMIconList.items[i].type == 'pre') && (testString.indexOf(MTMIconList.items[i].match) == 0)) {
michael@0 4935 return(MTMIconList.items[i].file);
michael@0 4936 } else if((MTMIconList.items[i].type == 'post') && (testString.indexOf(MTMIconList.items[i].match) != -1)) {
michael@0 4937 if((testString.lastIndexOf(MTMIconList.items[i].match) + MTMIconList.items[i].match.length) == testString.length) {
michael@0 4938 return(MTMIconList.items[i].file);
michael@0 4939 }
michael@0 4940 }
michael@0 4941 }
michael@0 4942 return("menu_link_default.gif");
michael@0 4943 }
michael@0 4944
michael@0 4945 function MTMGetPos(myObj) {
michael@0 4946 return(myObj.offsetTop + ((myObj.offsetParent) ? MTMGetPos(myObj.offsetParent) : 0));
michael@0 4947 }
michael@0 4948
michael@0 4949 function MTMCheckURL(myURL) {
michael@0 4950 var tempString = "";
michael@0 4951 if((myURL.indexOf("http://") == 0) || (myURL.indexOf("https://") == 0) || (myURL.indexOf("mailto:") == 0) || (myURL.indexOf("ftp://") == 0) || (myURL.indexOf("telnet:") == 0) || (myURL.indexOf("news:") == 0) || (myURL.indexOf("gopher:") == 0) || (myURL.indexOf("nntp:") == 0) || (myURL.indexOf("javascript:") == 0)) {
michael@0 4952 tempString += myURL;
michael@0 4953 } else {
michael@0 4954 tempString += MTMPreHREF + myURL;
michael@0 4955 }
michael@0 4956 return(tempString);
michael@0 4957 }
michael@0 4958
michael@0 4959 function MTMakeVoid(thisItem, thisCmd, thisText) {
michael@0 4960 var tempString = "";
michael@0 4961 tempString += '<a name="sub' + thisItem.number + '" href="javascript:parent.frames[\'code\'].myVoid();" onclick="' + thisCmd + '" onmouseover="window.status=\'' + thisText + '\';return true;" onmouseout="window.status=\'' + window.defaultStatus.replace(/'/g,"") + '\';return true;"';
michael@0 4962 if(thisItem.number == MTMClickedItem) {
michael@0 4963 var tempClass;
michael@0 4964 tempClass = thisItem.expanded ? "subexpanded" : "subclosed";
michael@0 4965 tempString += ' class="' + tempClass + '"';
michael@0 4966 }
michael@0 4967 return(tempString + '>');
michael@0 4968 }
michael@0 4969
michael@0 4970 function MTMakeLink(thisItem, addName) {
michael@0 4971 var tempString = '<a';
michael@0 4972
michael@0 4973 if(MTMTrackedItem && MTMTrackedItem == thisItem.number) {
michael@0 4974 tempString += ' class="tracked"'
michael@0 4975 }
michael@0 4976 if(addName) {
michael@0 4977 tempString += ' name="sub' + thisItem.number + '"';
michael@0 4978 }
michael@0 4979 tempString += ' href="' + MTMCheckURL(thisItem.url) + '"';
michael@0 4980 if(thisItem.target != "") {
michael@0 4981 tempString += ' target="' + thisItem.target + '"';
michael@0 4982 }
michael@0 4983 return tempString;
michael@0 4984 }
michael@0 4985
michael@0 4986 function MTMakeImage(thisImage) {
michael@0 4987 return('<img src="' + MTMPreHREF + MTMenuImageDirectory + thisImage + '" align="left" border="0" vspace="0" hspace="0" width="18" height="18">');
michael@0 4988 }
michael@0 4989
michael@0 4990 function MTMakeBackImage(thisImage) {
michael@0 4991 var tempString = 'transparent url("' + ((MTMPreHREF == "") ? "" : MTMPreHREF);
michael@0 4992 tempString += MTMenuImageDirectory + thisImage + '")'
michael@0 4993 return(tempString);
michael@0 4994 }
michael@0 4995
michael@0 4996 function MTMakeA(thisType, thisText, thisColor) {
michael@0 4997 var tempString = "";
michael@0 4998 tempString += 'a' + ((thisType == "pseudo") ? ':' : '.');
michael@0 4999 return(tempString + thisText + '{color:' + thisColor + ';background:' + MTMakeBackground() + ';}');
michael@0 5000 }
michael@0 5001
michael@0 5002 function MTMakeBackground() {
michael@0 5003 return((MTMBackground == "") ? MTMBGColor : 'transparent');
michael@0 5004 }
michael@0 5005
michael@0 5006 function MTMTrackTarget(thisTarget) {
michael@0 5007 if(thisTarget.charAt(0) == "_") {
michael@0 5008 return false;
michael@0 5009 } else {
michael@0 5010 for(i = 0; i < MTMFrameNames.length; i++) {
michael@0 5011 if(thisTarget == MTMFrameNames[i]) {
michael@0 5012 return true;
michael@0 5013 }
michael@0 5014 }
michael@0 5015 }
michael@0 5016 return false;
michael@0 5017 }
michael@0 5018
michael@0 5019
michael@0 5020
michael@0 5021
michael@0 5022 /******************************************************************************
michael@0 5023 * User-configurable options. *
michael@0 5024 ******************************************************************************/
michael@0 5025
michael@0 5026 // Menu table width, either a pixel-value (number) or a percentage value.
michael@0 5027 var MTMTableWidth = "100%";
michael@0 5028
michael@0 5029 // Name of the frame where the menu is to appear.
michael@0 5030 var MTMenuFrame = "tocmain";
michael@0 5031
michael@0 5032 // variable for determining whether a sub-menu always gets a plus-sign
michael@0 5033 // regardless of whether it holds another sub-menu or not
michael@0 5034 var MTMSubsGetPlus = true;
michael@0 5035
michael@0 5036
michael@0 5037 // variable that defines whether the menu emulates the behaviour of
michael@0 5038 // Windows Explorer
michael@0 5039 var MTMEmulateWE = true;
michael@0 5040
michael@0 5041 // Directory of menu images/icons
michael@0 5042 var MTMenuImageDirectory = "/ndk/doc/docui2k/menu-images/";
michael@0 5043
michael@0 5044 // Variables for controlling colors in the menu document.
michael@0 5045 // Regular BODY atttributes as in HTML documents.
michael@0 5046 var MTMBGColor = "#cc0000";
michael@0 5047 var MTMBackground = "";
michael@0 5048 var MTMTextColor = "white";
michael@0 5049
michael@0 5050 // color for all menu items
michael@0 5051 var MTMLinkColor = "#ffffcc";
michael@0 5052
michael@0 5053 // Hover color, when the mouse is over a menu link
michael@0 5054 var MTMAhoverColor = "#FF9933";
michael@0 5055
michael@0 5056 // Foreground color for the tracking & clicked submenu item
michael@0 5057 var MTMTrackColor ="#FF9933";
michael@0 5058 var MTMSubExpandColor = "#ffffcc";
michael@0 5059 var MTMSubClosedColor = "#ffffcc";
michael@0 5060
michael@0 5061 // All options regarding the root text and it's icon
michael@0 5062 var MTMRootIcon = "menu_new_root.gif";
michael@0 5063 var MTMenuText = "Site contents:";
michael@0 5064 var MTMRootColor = "white";
michael@0 5065 var MTMRootFont = "Verdana";
michael@0 5066 var MTMRootCSSize = "84%";
michael@0 5067 var MTMRootFontSize = "-1";
michael@0 5068
michael@0 5069 // Font for menu items.
michael@0 5070 var MTMenuFont = "Verdana";
michael@0 5071 var MTMenuCSSize = "74%";
michael@0 5072 var MTMenuFontSize = "-1";
michael@0 5073
michael@0 5074 // Variables for style sheet usage
michael@0 5075 // 'true' means use a linked style sheet.
michael@0 5076 var MTMLinkedSS = false;
michael@0 5077 var MTMSSHREF = "style/menu.css";
michael@0 5078
michael@0 5079 // Whether you want an open sub-menu to close automagically
michael@0 5080 // when another sub-menu is opened. 'true' means auto-close
michael@0 5081 var MTMSubsAutoClose = false;
michael@0 5082
michael@0 5083 // This variable controls how long it will take for the menu
michael@0 5084 // to appear if the tracking code in the content frame has
michael@0 5085 // failed to display the menu. Number if in tenths of a second
michael@0 5086 // (1/10) so 10 means "wait 1 second".
michael@0 5087 var MTMTimeOut = 25;
michael@0 5088
michael@0 5089 /******************************************************************************
michael@0 5090 * User-configurable list of icons. *
michael@0 5091 ******************************************************************************/
michael@0 5092
michael@0 5093 var MTMIconList = null;
michael@0 5094 MTMIconList = new IconList();
michael@0 5095 // examples:
michael@0 5096 //MTMIconList.addIcon(new MTMIcon("menu_link_external.gif", "http://", "pre"));
michael@0 5097 //MTMIconList.addIcon(new MTMIcon("menu_link_pdf.gif", ".pdf", "post"));
michael@0 5098
michael@0 5099 /******************************************************************************
michael@0 5100 * User-configurable menu. *
michael@0 5101 ******************************************************************************/
michael@0 5102
michael@0 5103
michael@0 5104 // navigation link is an object used to store the extracted information from
michael@0 5105 // the search request. The stored information will be used to build the
michael@0 5106 // navigation tree.
michael@0 5107 function navigationLink(title,URL,level,elementIndex,levelIndex,parentIndex,author)
michael@0 5108 {
michael@0 5109 var returnArray = new Array();
michael@0 5110 returnArray.title = title;
michael@0 5111 returnArray.URL = URL;
michael@0 5112 returnArray.level = level;
michael@0 5113 returnArray.hasChild = false;
michael@0 5114 returnArray.elementIndex = elementIndex;
michael@0 5115 returnArray.parentIndex = parentIndex;
michael@0 5116 returnArray.levelIndex = levelIndex;
michael@0 5117 returnArray.author = author;
michael@0 5118
michael@0 5119 return returnArray;
michael@0 5120 }
michael@0 5121
michael@0 5122 // Variables used for tracking state as the search iterates through the list
michael@0 5123 // of documents returned.
michael@0 5124 var index = 0;
michael@0 5125 var currentLevel = 0;
michael@0 5126 var levelParents = new Array();
michael@0 5127 var levelIndexes = new Array();
michael@0 5128 var navigationTree = new Array();
michael@0 5129 var treeNodes = new Array();
michael@0 5130 var levelIndex = 0;
michael@0 5131 top.printList = "";
michael@0 5132 top.printCount = 0;
michael@0 5133
michael@0 5134 // asign the menu handle to the created tree
michael@0 5135 var menu = null;
michael@0 5136
michael@0 5137
michael@0 5138 function getNextChecked(item)
michael@0 5139 {
michael@0 5140 // case that root of tree is selected
michael@0 5141 if ( item.parent == null && item.selected)
michael@0 5142 {
michael@0 5143 for (var i = 0 ; i < top.authors.length; i++)
michael@0 5144 {
michael@0 5145 var re = /\s$/;
michael@0 5146
michael@0 5147 if (top.titles[i].replace(re,"") == item.text.replace(re,""))
michael@0 5148 {
michael@0 5149 top.printList += (top.authors[i].length + 3) + "_" + top.authors[i].replace(/\s/g,"+") + "+en";
michael@0 5150 top.printCount ++;
michael@0 5151 }
michael@0 5152 }
michael@0 5153 }
michael@0 5154 else if (item.submenu != null)
michael@0 5155 {
michael@0 5156 for (var x = 0; x < item.submenu.items.length; x++)
michael@0 5157 {
michael@0 5158 if (item.submenu.items[x].selected)
michael@0 5159 {
michael@0 5160 var name = item.submenu.items[x].text;
michael@0 5161 for (var i = 0 ; i < top.authors.length; i++)
michael@0 5162 {
michael@0 5163 var re = /\s$/;
michael@0 5164 if (top.titles[i].replace(re,"") == name.replace(re,""))
michael@0 5165 {
michael@0 5166 top.printList += (top.authors[i].length + 3) + "_" + top.authors[i].replace(/\s/g,"+") + "+en";
michael@0 5167 top.printCount ++;
michael@0 5168 }
michael@0 5169 }
michael@0 5170
michael@0 5171 }
michael@0 5172 else
michael@0 5173 {
michael@0 5174 getNextChecked(item.submenu.items[x]);
michael@0 5175 }
michael@0 5176 }
michael@0 5177 }
michael@0 5178
michael@0 5179 }
michael@0 5180
michael@0 5181 // Get a URL to pass checked topics to the Print Servlet
michael@0 5182
michael@0 5183
michael@0 5184
michael@0 5185 function getPrintUrl(menu)
michael@0 5186 {
michael@0 5187 top.printList = "";
michael@0 5188 top.printCount = 0;
michael@0 5189
michael@0 5190 getNextChecked(menu.items[0]);
michael@0 5191 top.printList = top.printCount + "_" + top.printList;
michael@0 5192
michael@0 5193 return top.printList;
michael@0 5194 }
michael@0 5195
michael@0 5196 function setLevels()
michael@0 5197 {
michael@0 5198
michael@0 5199 // Tracking the parent of the next node.
michael@0 5200 levelParents[currentLevel + 1] = index;
michael@0 5201
michael@0 5202 // levelIndex is the child index under a branch
michael@0 5203 if (levelIndexes[currentLevel] == null)
michael@0 5204 {
michael@0 5205 levelIndexes[currentLevel] = 0;
michael@0 5206 }
michael@0 5207 else
michael@0 5208 {
michael@0 5209 levelIndexes[currentLevel] = levelIndexes[currentLevel] + 1;
michael@0 5210 levelIndexes[currentLevel + 1] = -1;
michael@0 5211 }
michael@0 5212 }
michael@0 5213
michael@0 5214 function buildTree()
michael@0 5215 {
michael@0 5216
michael@0 5217 // Determine which nodes have children and assign the correct property
michael@0 5218 for (var i = 0; i < navigationTree.length-1; i++)
michael@0 5219 {
michael@0 5220 // see if the current node has chilren
michael@0 5221 var thisLevel = navigationTree[i]["level"];
michael@0 5222 var nextLevel = navigationTree[i+1]["level"];
michael@0 5223
michael@0 5224 if (nextLevel > thisLevel)
michael@0 5225 {
michael@0 5226 navigationTree[i]["hasChild"] = true;
michael@0 5227 }
michael@0 5228 else
michael@0 5229 {
michael@0 5230 navigationTree[i]["hasChild"] = false;
michael@0 5231 }
michael@0 5232 }
michael@0 5233
michael@0 5234
michael@0 5235 // create tree object nodes.
michael@0 5236 for( var j = 0; j < navigationTree.length; j++)
michael@0 5237 {
michael@0 5238 treeNodes[j] = null;
michael@0 5239 treeNodes[j] = new MTMenu();
michael@0 5240 }
michael@0 5241
michael@0 5242
michael@0 5243 // add all items to nodes -
michael@0 5244 // NOTE, index to add to is the parent index + 1 for node tree offset of root=0
michael@0 5245 for( var j3 = 0; j3 < navigationTree.length; j3++)
michael@0 5246 {
michael@0 5247 if (navigationTree[j3]["parentIndex"] == null)
michael@0 5248 {
michael@0 5249 var nsearchID = navigationTree[j3]["author"];
michael@0 5250 treeNodes[0].MTMAddItem(new MTMenuItem(navigationTree[j3]["title"], navigationTree[j3]["URL"].replace(/http...developer.novell.com.ndk/gi,"/ndk") , "content_frame", nsearchID));
michael@0 5251 }
michael@0 5252 else
michael@0 5253 {
michael@0 5254 var nsearchID = navigationTree[j3]["author"];
michael@0 5255 treeNodes[navigationTree[j3]["parentIndex"] + 1 ].MTMAddItem(new MTMenuItem(navigationTree[j3]["title"], navigationTree[j3]["URL"].replace(/http...developer.novell.com.ndk/gi,"/ndk"), "content_frame",nsearchID));
michael@0 5256 }
michael@0 5257 }
michael@0 5258
michael@0 5259 // create submenu structure
michael@0 5260 // NOTE: add 1 to parent nodes for root = 0 offset.
michael@0 5261 for( var j4 = 0; j4 < navigationTree.length; j4++)
michael@0 5262 {
michael@0 5263 if (navigationTree[j4]["hasChild"])
michael@0 5264 {
michael@0 5265 var pindex = null;
michael@0 5266 if (navigationTree[j4]["parentIndex"] == null)
michael@0 5267 {
michael@0 5268
michael@0 5269 pindex = 0;
michael@0 5270 }
michael@0 5271 else
michael@0 5272 {
michael@0 5273 pindex = navigationTree[j4]["parentIndex"]+1;
michael@0 5274 }
michael@0 5275
michael@0 5276 var lindex = navigationTree[j4]["levelIndex"];
michael@0 5277 // document.write('treeNodes[' + pindex +'].items['+ lindex +'].MTMakeSubmenu(treeNodes['+(j4+1)+']);<br>');
michael@0 5278
michael@0 5279 treeNodes[pindex].items[lindex].MTMakeSubmenu(treeNodes[j4+1]);
michael@0 5280 }
michael@0 5281 }
michael@0 5282
michael@0 5283 menu = treeNodes[0];
michael@0 5284
michael@0 5285 //expand the second item to display the sub contents on first display
michael@0 5286 if (menu.items[0] != null )
michael@0 5287 {
michael@0 5288 menu.items[0].expanded = true;
michael@0 5289
michael@0 5290 }
michael@0 5291
michael@0 5292
michael@0 5293
michael@0 5294 }
michael@0 5295
michael@0 5296
michael@0 5297
michael@0 5298 currentLevel++;
michael@0 5299
michael@0 5300 setLevels();
michael@0 5301 var navElement = navigationLink("NDS Libraries for C ","http://developer.novell.com/ndk/doc/ndslib/treetitl.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5302 navigationTree[index] = navElement;
michael@0 5303 index++;
michael@0 5304
michael@0 5305 currentLevel++;
michael@0 5306
michael@0 5307 setLevels();
michael@0 5308 var navElement = navigationLink("NDS Backup Services ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/hevgtl7k.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5309 navigationTree[index] = navElement;
michael@0 5310 index++;
michael@0 5311
michael@0 5312 currentLevel++;
michael@0 5313
michael@0 5314 setLevels();
michael@0 5315 var navElement = navigationLink("Functions ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/h7qwv271.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5316 navigationTree[index] = navElement;
michael@0 5317 index++;
michael@0 5318
michael@0 5319 currentLevel++;
michael@0 5320
michael@0 5321 setLevels();
michael@0 5322 var navElement = navigationLink("NDSBackupServerData ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk5.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5323 navigationTree[index] = navElement;
michael@0 5324 index++;
michael@0 5325
michael@0 5326 setLevels();
michael@0 5327 var navElement = navigationLink("NDSFreeNameList ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk12.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5328 navigationTree[index] = navElement;
michael@0 5329 index++;
michael@0 5330
michael@0 5331 setLevels();
michael@0 5332 var navElement = navigationLink("NDSGetReplicaPartitionNames ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk19.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5333 navigationTree[index] = navElement;
michael@0 5334 index++;
michael@0 5335
michael@0 5336 setLevels();
michael@0 5337 var navElement = navigationLink("NDSIsOnlyServerInTree ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk26.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5338 navigationTree[index] = navElement;
michael@0 5339 index++;
michael@0 5340
michael@0 5341 setLevels();
michael@0 5342 var navElement = navigationLink("NDSSYSVolumeRecovery ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk33.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5343 navigationTree[index] = navElement;
michael@0 5344 index++;
michael@0 5345
michael@0 5346 setLevels();
michael@0 5347 var navElement = navigationLink("NDSVerifyServerInfo ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk40.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5348 navigationTree[index] = navElement;
michael@0 5349 index++;
michael@0 5350
michael@0 5351 if (currentLevel > 1) currentLevel--
michael@0 5352
michael@0 5353 setLevels();
michael@0 5354 var navElement = navigationLink("Structures ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/hqp7vveq.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5355 navigationTree[index] = navElement;
michael@0 5356 index++;
michael@0 5357
michael@0 5358 currentLevel++;
michael@0 5359
michael@0 5360 setLevels();
michael@0 5361 var navElement = navigationLink("NAMEID_TYPE ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk48.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5362 navigationTree[index] = navElement;
michael@0 5363 index++;
michael@0 5364
michael@0 5365 if (currentLevel > 1) currentLevel--
michael@0 5366
michael@0 5367 setLevels();
michael@0 5368 var navElement = navigationLink("Values ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/hmmmal7s.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5369 navigationTree[index] = navElement;
michael@0 5370 index++;
michael@0 5371
michael@0 5372 currentLevel++;
michael@0 5373
michael@0 5374 setLevels();
michael@0 5375 var navElement = navigationLink("NDS Reason Flags ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/h3r99io5.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5376 navigationTree[index] = navElement;
michael@0 5377 index++;
michael@0 5378
michael@0 5379 setLevels();
michael@0 5380 var navElement = navigationLink("NDS Server Flags ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/hnlckbki.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5381 navigationTree[index] = navElement;
michael@0 5382 index++;
michael@0 5383
michael@0 5384 if (currentLevel > 1) currentLevel--
michael@0 5385
michael@0 5386 setLevels();
michael@0 5387 var navElement = navigationLink("Revision History ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/a5i29ah.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5388 navigationTree[index] = navElement;
michael@0 5389 index++;
michael@0 5390
michael@0 5391 if (currentLevel > 1) currentLevel--
michael@0 5392
michael@0 5393 setLevels();
michael@0 5394 var navElement = navigationLink("NDS Event Services ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hmwiqbwd.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5395 navigationTree[index] = navElement;
michael@0 5396 index++;
michael@0 5397
michael@0 5398 currentLevel++;
michael@0 5399
michael@0 5400 setLevels();
michael@0 5401 var navElement = navigationLink("Concepts ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hj3udfo7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5402 navigationTree[index] = navElement;
michael@0 5403 index++;
michael@0 5404
michael@0 5405 currentLevel++;
michael@0 5406
michael@0 5407 setLevels();
michael@0 5408 var navElement = navigationLink("NDS Event Introduction ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hmgeu8a1.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5409 navigationTree[index] = navElement;
michael@0 5410 index++;
michael@0 5411
michael@0 5412 setLevels();
michael@0 5413 var navElement = navigationLink("NDS Event Functions ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hxwcemsz.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5414 navigationTree[index] = navElement;
michael@0 5415 index++;
michael@0 5416
michael@0 5417 setLevels();
michael@0 5418 var navElement = navigationLink("NDS Event Priorities ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hux0tdup.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5419 navigationTree[index] = navElement;
michael@0 5420 index++;
michael@0 5421
michael@0 5422 setLevels();
michael@0 5423 var navElement = navigationLink("NDS Event Data Filtering ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/ha7nqbpy.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5424 navigationTree[index] = navElement;
michael@0 5425 index++;
michael@0 5426
michael@0 5427 setLevels();
michael@0 5428 var navElement = navigationLink("NDS Event Types ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/h741eryw.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5429 navigationTree[index] = navElement;
michael@0 5430 index++;
michael@0 5431
michael@0 5432 setLevels();
michael@0 5433 var navElement = navigationLink("Global Network Monitoring ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/h9alatk4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5434 navigationTree[index] = navElement;
michael@0 5435 index++;
michael@0 5436
michael@0 5437 if (currentLevel > 1) currentLevel--
michael@0 5438
michael@0 5439 setLevels();
michael@0 5440 var navElement = navigationLink("Tasks ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/huypg52u.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5441 navigationTree[index] = navElement;
michael@0 5442 index++;
michael@0 5443
michael@0 5444 currentLevel++;
michael@0 5445
michael@0 5446 setLevels();
michael@0 5447 var navElement = navigationLink("Monitoring NDS Events ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hhkihe7f.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5448 navigationTree[index] = navElement;
michael@0 5449 index++;
michael@0 5450
michael@0 5451 setLevels();
michael@0 5452 var navElement = navigationLink("Registering for NDS Events ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/h0xmzt1h.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5453 navigationTree[index] = navElement;
michael@0 5454 index++;
michael@0 5455
michael@0 5456 setLevels();
michael@0 5457 var navElement = navigationLink("Unregistering for NDS Events ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hk3fvwed.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5458 navigationTree[index] = navElement;
michael@0 5459 index++;
michael@0 5460
michael@0 5461 if (currentLevel > 1) currentLevel--
michael@0 5462
michael@0 5463 setLevels();
michael@0 5464 var navElement = navigationLink("Functions ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/h7qwv271.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5465 navigationTree[index] = navElement;
michael@0 5466 index++;
michael@0 5467
michael@0 5468 currentLevel++;
michael@0 5469
michael@0 5470 setLevels();
michael@0 5471 var navElement = navigationLink("NWDSEConvertEntryName ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk28.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5472 navigationTree[index] = navElement;
michael@0 5473 index++;
michael@0 5474
michael@0 5475 setLevels();
michael@0 5476 var navElement = navigationLink("NWDSEGetLocalAttrID ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk33.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5477 navigationTree[index] = navElement;
michael@0 5478 index++;
michael@0 5479
michael@0 5480 setLevels();
michael@0 5481 var navElement = navigationLink("NWDSEGetLocalAttrName ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk39.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5482 navigationTree[index] = navElement;
michael@0 5483 index++;
michael@0 5484
michael@0 5485 setLevels();
michael@0 5486 var navElement = navigationLink("NWDSEGetLocalClassID ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk45.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5487 navigationTree[index] = navElement;
michael@0 5488 index++;
michael@0 5489
michael@0 5490 setLevels();
michael@0 5491 var navElement = navigationLink("NWDSEGetLocalClassName ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk51.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5492 navigationTree[index] = navElement;
michael@0 5493 index++;
michael@0 5494
michael@0 5495 setLevels();
michael@0 5496 var navElement = navigationLink("NWDSEGetLocalEntryID ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk57.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5497 navigationTree[index] = navElement;
michael@0 5498 index++;
michael@0 5499
michael@0 5500 setLevels();
michael@0 5501 var navElement = navigationLink("NWDSEGetLocalEntryName ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk63.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5502 navigationTree[index] = navElement;
michael@0 5503 index++;
michael@0 5504
michael@0 5505 setLevels();
michael@0 5506 var navElement = navigationLink("NWDSERegisterForEvent ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk69.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5507 navigationTree[index] = navElement;
michael@0 5508 index++;
michael@0 5509
michael@0 5510 setLevels();
michael@0 5511 var navElement = navigationLink("NWDSERegisterForEventWithResult ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk75.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5512 navigationTree[index] = navElement;
michael@0 5513 index++;
michael@0 5514
michael@0 5515 setLevels();
michael@0 5516 var navElement = navigationLink("NWDSEUnRegisterForEvent ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk81.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5517 navigationTree[index] = navElement;
michael@0 5518 index++;
michael@0 5519
michael@0 5520 if (currentLevel > 1) currentLevel--
michael@0 5521
michael@0 5522 setLevels();
michael@0 5523 var navElement = navigationLink("Structures ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hqp7vveq.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5524 navigationTree[index] = navElement;
michael@0 5525 index++;
michael@0 5526
michael@0 5527 currentLevel++;
michael@0 5528
michael@0 5529 setLevels();
michael@0 5530 var navElement = navigationLink("DSEACL ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk88.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5531 navigationTree[index] = navElement;
michael@0 5532 index++;
michael@0 5533
michael@0 5534 setLevels();
michael@0 5535 var navElement = navigationLink("DSEBackLink ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk92.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5536 navigationTree[index] = navElement;
michael@0 5537 index++;
michael@0 5538
michael@0 5539 setLevels();
michael@0 5540 var navElement = navigationLink("DSEBinderyObjectInfo ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk96.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5541 navigationTree[index] = navElement;
michael@0 5542 index++;
michael@0 5543
michael@0 5544 setLevels();
michael@0 5545 var navElement = navigationLink("DSEBitString ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk100.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5546 navigationTree[index] = navElement;
michael@0 5547 index++;
michael@0 5548
michael@0 5549 setLevels();
michael@0 5550 var navElement = navigationLink("DSEChangeConnState ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk104.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5551 navigationTree[index] = navElement;
michael@0 5552 index++;
michael@0 5553
michael@0 5554 setLevels();
michael@0 5555 var navElement = navigationLink("DSECIList ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk108.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5556 navigationTree[index] = navElement;
michael@0 5557 index++;
michael@0 5558
michael@0 5559 setLevels();
michael@0 5560 var navElement = navigationLink("DSEDebugInfo ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk112.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5561 navigationTree[index] = navElement;
michael@0 5562 index++;
michael@0 5563
michael@0 5564 setLevels();
michael@0 5565 var navElement = navigationLink("DSEEmailAddress ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk116.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5566 navigationTree[index] = navElement;
michael@0 5567 index++;
michael@0 5568
michael@0 5569 setLevels();
michael@0 5570 var navElement = navigationLink("DSEEntryInfo ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk120.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5571 navigationTree[index] = navElement;
michael@0 5572 index++;
michael@0 5573
michael@0 5574 setLevels();
michael@0 5575 var navElement = navigationLink("DSEEntryInfo2 ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk124.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5576 navigationTree[index] = navElement;
michael@0 5577 index++;
michael@0 5578
michael@0 5579 setLevels();
michael@0 5580 var navElement = navigationLink("DSEEventData ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk128.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5581 navigationTree[index] = navElement;
michael@0 5582 index++;
michael@0 5583
michael@0 5584 setLevels();
michael@0 5585 var navElement = navigationLink("DSEFaxNumber ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk132.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5586 navigationTree[index] = navElement;
michael@0 5587 index++;
michael@0 5588
michael@0 5589 setLevels();
michael@0 5590 var navElement = navigationLink("DSEHold ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk135.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5591 navigationTree[index] = navElement;
michael@0 5592 index++;
michael@0 5593
michael@0 5594 setLevels();
michael@0 5595 var navElement = navigationLink("DSEModuleState ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk139.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5596 navigationTree[index] = navElement;
michael@0 5597 index++;
michael@0 5598
michael@0 5599 setLevels();
michael@0 5600 var navElement = navigationLink("DSENetAddress ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk143.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5601 navigationTree[index] = navElement;
michael@0 5602 index++;
michael@0 5603
michael@0 5604 setLevels();
michael@0 5605 var navElement = navigationLink("DSEOctetList ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk147.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5606 navigationTree[index] = navElement;
michael@0 5607 index++;
michael@0 5608
michael@0 5609 setLevels();
michael@0 5610 var navElement = navigationLink("DSEPath ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk151.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5611 navigationTree[index] = navElement;
michael@0 5612 index++;
michael@0 5613
michael@0 5614 setLevels();
michael@0 5615 var navElement = navigationLink("DSEReplicaPointer ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk155.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5616 navigationTree[index] = navElement;
michael@0 5617 index++;
michael@0 5618
michael@0 5619 setLevels();
michael@0 5620 var navElement = navigationLink("DSESEVInfo ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk159.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5621 navigationTree[index] = navElement;
michael@0 5622 index++;
michael@0 5623
michael@0 5624 setLevels();
michael@0 5625 var navElement = navigationLink("DSETimeStamp ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk163.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5626 navigationTree[index] = navElement;
michael@0 5627 index++;
michael@0 5628
michael@0 5629 setLevels();
michael@0 5630 var navElement = navigationLink("DSETraceInfo ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk167.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5631 navigationTree[index] = navElement;
michael@0 5632 index++;
michael@0 5633
michael@0 5634 setLevels();
michael@0 5635 var navElement = navigationLink("DSETypedName ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk172.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5636 navigationTree[index] = navElement;
michael@0 5637 index++;
michael@0 5638
michael@0 5639 setLevels();
michael@0 5640 var navElement = navigationLink("DSEVALData ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk176.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5641 navigationTree[index] = navElement;
michael@0 5642 index++;
michael@0 5643
michael@0 5644 setLevels();
michael@0 5645 var navElement = navigationLink("DSEValueInfo ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk179.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5646 navigationTree[index] = navElement;
michael@0 5647 index++;
michael@0 5648
michael@0 5649 if (currentLevel > 1) currentLevel--
michael@0 5650
michael@0 5651 setLevels();
michael@0 5652 var navElement = navigationLink("Values ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hmmmal7s.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5653 navigationTree[index] = navElement;
michael@0 5654 index++;
michael@0 5655
michael@0 5656 currentLevel++;
michael@0 5657
michael@0 5658 setLevels();
michael@0 5659 var navElement = navigationLink("Event Priorities ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hlerfllh.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5660 navigationTree[index] = navElement;
michael@0 5661 index++;
michael@0 5662
michael@0 5663 setLevels();
michael@0 5664 var navElement = navigationLink("Event Types ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hiz5y84y.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5665 navigationTree[index] = navElement;
michael@0 5666 index++;
michael@0 5667
michael@0 5668 if (currentLevel > 1) currentLevel--
michael@0 5669
michael@0 5670 setLevels();
michael@0 5671 var navElement = navigationLink("Revision History ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/a6hw6zr.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5672 navigationTree[index] = navElement;
michael@0 5673 index++;
michael@0 5674
michael@0 5675 if (currentLevel > 1) currentLevel--
michael@0 5676
michael@0 5677 setLevels();
michael@0 5678 var navElement = navigationLink("NDS Technical Overview ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h6tvg4z7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5679 navigationTree[index] = navElement;
michael@0 5680 index++;
michael@0 5681
michael@0 5682 currentLevel++;
michael@0 5683
michael@0 5684 setLevels();
michael@0 5685 var navElement = navigationLink("NDS as the Internet Directory ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h273w870.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5686 navigationTree[index] = navElement;
michael@0 5687 index++;
michael@0 5688
michael@0 5689 currentLevel++;
michael@0 5690
michael@0 5691 setLevels();
michael@0 5692 var navElement = navigationLink("Requirements for Networks and the Internet ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/a2lh37b.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5693 navigationTree[index] = navElement;
michael@0 5694 index++;
michael@0 5695
michael@0 5696 setLevels();
michael@0 5697 var navElement = navigationLink("NDS Compliance to X.500 Standard ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h0jj42d7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5698 navigationTree[index] = navElement;
michael@0 5699 index++;
michael@0 5700
michael@0 5701 setLevels();
michael@0 5702 var navElement = navigationLink("NDS Compliance with LDAP v3 ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/a2b6k5w.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5703 navigationTree[index] = navElement;
michael@0 5704 index++;
michael@0 5705
michael@0 5706 setLevels();
michael@0 5707 var navElement = navigationLink("Directory Access Protocols ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/a2b6k5x.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5708 navigationTree[index] = navElement;
michael@0 5709 index++;
michael@0 5710
michael@0 5711 setLevels();
michael@0 5712 var navElement = navigationLink("Programming Interfaces for NDS ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h2qzzkq8.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5713 navigationTree[index] = navElement;
michael@0 5714 index++;
michael@0 5715
michael@0 5716 setLevels();
michael@0 5717 var navElement = navigationLink("NDS Architecture ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h6mny7fl.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5718 navigationTree[index] = navElement;
michael@0 5719 index++;
michael@0 5720
michael@0 5721 if (currentLevel > 1) currentLevel--
michael@0 5722
michael@0 5723 setLevels();
michael@0 5724 var navElement = navigationLink("NDS Objects ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hp4dslw5.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5725 navigationTree[index] = navElement;
michael@0 5726 index++;
michael@0 5727
michael@0 5728 currentLevel++;
michael@0 5729
michael@0 5730 setLevels();
michael@0 5731 var navElement = navigationLink("NDS Names ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h0yh1byj.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5732 navigationTree[index] = navElement;
michael@0 5733 index++;
michael@0 5734
michael@0 5735 setLevels();
michael@0 5736 var navElement = navigationLink("Types of Information Stored in NDS ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hci52ynf.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5737 navigationTree[index] = navElement;
michael@0 5738 index++;
michael@0 5739
michael@0 5740 setLevels();
michael@0 5741 var navElement = navigationLink("Retrieval of Information from NDS ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hwwz5mda.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5742 navigationTree[index] = navElement;
michael@0 5743 index++;
michael@0 5744
michael@0 5745 setLevels();
michael@0 5746 var navElement = navigationLink("Tree Walking ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h2xhaphc.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5747 navigationTree[index] = navElement;
michael@0 5748 index++;
michael@0 5749
michael@0 5750 setLevels();
michael@0 5751 var navElement = navigationLink("NDS Object Management ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h3mq2rf0.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5752 navigationTree[index] = navElement;
michael@0 5753 index++;
michael@0 5754
michael@0 5755 if (currentLevel > 1) currentLevel--
michael@0 5756
michael@0 5757 setLevels();
michael@0 5758 var navElement = navigationLink("NDS Security ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hl8x1zxc.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5759 navigationTree[index] = navElement;
michael@0 5760 index++;
michael@0 5761
michael@0 5762 currentLevel++;
michael@0 5763
michael@0 5764 setLevels();
michael@0 5765 var navElement = navigationLink("Authentication ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hp901s8a.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5766 navigationTree[index] = navElement;
michael@0 5767 index++;
michael@0 5768
michael@0 5769 setLevels();
michael@0 5770 var navElement = navigationLink("Access Control Lists ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hr8sqtoi.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5771 navigationTree[index] = navElement;
michael@0 5772 index++;
michael@0 5773
michael@0 5774 setLevels();
michael@0 5775 var navElement = navigationLink("Inheritance ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hh9881ul.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5776 navigationTree[index] = navElement;
michael@0 5777 index++;
michael@0 5778
michael@0 5779 setLevels();
michael@0 5780 var navElement = navigationLink("NetWare File System ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h64btfhk.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5781 navigationTree[index] = navElement;
michael@0 5782 index++;
michael@0 5783
michael@0 5784 if (currentLevel > 1) currentLevel--
michael@0 5785
michael@0 5786 setLevels();
michael@0 5787 var navElement = navigationLink("Partitions and Replicas ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hmq60r6h.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5788 navigationTree[index] = navElement;
michael@0 5789 index++;
michael@0 5790
michael@0 5791 currentLevel++;
michael@0 5792
michael@0 5793 setLevels();
michael@0 5794 var navElement = navigationLink("Partitioning ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hqx5hvrp.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5795 navigationTree[index] = navElement;
michael@0 5796 index++;
michael@0 5797
michael@0 5798 setLevels();
michael@0 5799 var navElement = navigationLink("Replication ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hj5l8npv.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5800 navigationTree[index] = navElement;
michael@0 5801 index++;
michael@0 5802
michael@0 5803 setLevels();
michael@0 5804 var navElement = navigationLink("Distributed Reference Management ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hzap47de.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5805 navigationTree[index] = navElement;
michael@0 5806 index++;
michael@0 5807
michael@0 5808 setLevels();
michael@0 5809 var navElement = navigationLink("Partition Operations ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hgbpk7x9.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5810 navigationTree[index] = navElement;
michael@0 5811 index++;
michael@0 5812
michael@0 5813 setLevels();
michael@0 5814 var navElement = navigationLink("Synchronization ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hsiplgn4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5815 navigationTree[index] = navElement;
michael@0 5816 index++;
michael@0 5817
michael@0 5818 setLevels();
michael@0 5819 var navElement = navigationLink("Background Processes ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hz2kcp2e.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5820 navigationTree[index] = navElement;
michael@0 5821 index++;
michael@0 5822
michael@0 5823 if (currentLevel > 1) currentLevel--
michael@0 5824
michael@0 5825 setLevels();
michael@0 5826 var navElement = navigationLink("Bindery Services ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hwug6ytv.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5827 navigationTree[index] = navElement;
michael@0 5828 index++;
michael@0 5829
michael@0 5830 currentLevel++;
michael@0 5831
michael@0 5832 setLevels();
michael@0 5833 var navElement = navigationLink("NDS Bindery Context ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h8dwby8o.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5834 navigationTree[index] = navElement;
michael@0 5835 index++;
michael@0 5836
michael@0 5837 setLevels();
michael@0 5838 var navElement = navigationLink("Bindery Context Path ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h6y3yva6.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5839 navigationTree[index] = navElement;
michael@0 5840 index++;
michael@0 5841
michael@0 5842 setLevels();
michael@0 5843 var navElement = navigationLink("Bindery Context Eclipsing ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hwcqk80m.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5844 navigationTree[index] = navElement;
michael@0 5845 index++;
michael@0 5846
michael@0 5847 setLevels();
michael@0 5848 var navElement = navigationLink("NDS Bindery Objects ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hq4w9le6.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5849 navigationTree[index] = navElement;
michael@0 5850 index++;
michael@0 5851
michael@0 5852 if (currentLevel > 1) currentLevel--
michael@0 5853
michael@0 5854 setLevels();
michael@0 5855 var navElement = navigationLink("NDS Return Values ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hbjry4gt.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5856 navigationTree[index] = navElement;
michael@0 5857 index++;
michael@0 5858
michael@0 5859 currentLevel++;
michael@0 5860
michael@0 5861 setLevels();
michael@0 5862 var navElement = navigationLink("NDS Return Values from the Operating System ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h5h16q77.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5863 navigationTree[index] = navElement;
michael@0 5864 index++;
michael@0 5865
michael@0 5866 setLevels();
michael@0 5867 var navElement = navigationLink("NDS Client Return Values ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/he2lvhfy.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5868 navigationTree[index] = navElement;
michael@0 5869 index++;
michael@0 5870
michael@0 5871 setLevels();
michael@0 5872 var navElement = navigationLink("NDS Agent Return Values ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hcvwzt90.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5873 navigationTree[index] = navElement;
michael@0 5874 index++;
michael@0 5875
michael@0 5876 if (currentLevel > 1) currentLevel--
michael@0 5877
michael@0 5878 setLevels();
michael@0 5879 var navElement = navigationLink("Directory Services Trace Utilities ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hujirj2n.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5880 navigationTree[index] = navElement;
michael@0 5881 index++;
michael@0 5882
michael@0 5883 currentLevel++;
michael@0 5884
michael@0 5885 setLevels();
michael@0 5886 var navElement = navigationLink("Using the DSTrace NLM ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hmg1e5gn.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5887 navigationTree[index] = navElement;
michael@0 5888 index++;
michael@0 5889
michael@0 5890 setLevels();
michael@0 5891 var navElement = navigationLink("Using Basic SET DSTrace Commands ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hdn0smja.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5892 navigationTree[index] = navElement;
michael@0 5893 index++;
michael@0 5894
michael@0 5895 setLevels();
michael@0 5896 var navElement = navigationLink("Starting Background Processes with SET DSTrace ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h5pjd8fv.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5897 navigationTree[index] = navElement;
michael@0 5898 index++;
michael@0 5899
michael@0 5900 setLevels();
michael@0 5901 var navElement = navigationLink("Tuning Background Processes ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hhv9cqpk.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5902 navigationTree[index] = navElement;
michael@0 5903 index++;
michael@0 5904
michael@0 5905 setLevels();
michael@0 5906 var navElement = navigationLink("Enabling DSTrace Messages with SET DSTrace ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hcah5j8v.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5907 navigationTree[index] = navElement;
michael@0 5908 index++;
michael@0 5909
michael@0 5910 if (currentLevel > 1) currentLevel--
michael@0 5911
michael@0 5912 setLevels();
michael@0 5913 var navElement = navigationLink("Revision History ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/a5i29ah.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5914 navigationTree[index] = navElement;
michael@0 5915 index++;
michael@0 5916
michael@0 5917 if (currentLevel > 1) currentLevel--
michael@0 5918
michael@0 5919 setLevels();
michael@0 5920 var navElement = navigationLink("NDS Core Services ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h2y7hdit.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5921 navigationTree[index] = navElement;
michael@0 5922 index++;
michael@0 5923
michael@0 5924 currentLevel++;
michael@0 5925
michael@0 5926 setLevels();
michael@0 5927 var navElement = navigationLink("Programming Concepts ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h2x9gqr9.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5928 navigationTree[index] = navElement;
michael@0 5929 index++;
michael@0 5930
michael@0 5931 currentLevel++;
michael@0 5932
michael@0 5933 setLevels();
michael@0 5934 var navElement = navigationLink("Context Handles ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/huynzi7a.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5935 navigationTree[index] = navElement;
michael@0 5936 index++;
michael@0 5937
michael@0 5938 setLevels();
michael@0 5939 var navElement = navigationLink("Buffer Management ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h9xiygoj.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5940 navigationTree[index] = navElement;
michael@0 5941 index++;
michael@0 5942
michael@0 5943 setLevels();
michael@0 5944 var navElement = navigationLink("Read Requests for Object Information ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h7d6try4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5945 navigationTree[index] = navElement;
michael@0 5946 index++;
michael@0 5947
michael@0 5948 setLevels();
michael@0 5949 var navElement = navigationLink("Search Requests ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h11es6ae.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5950 navigationTree[index] = navElement;
michael@0 5951 index++;
michael@0 5952
michael@0 5953 setLevels();
michael@0 5954 var navElement = navigationLink("Developing in a Loosely Consistent Environment ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hsaqomj7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5955 navigationTree[index] = navElement;
michael@0 5956 index++;
michael@0 5957
michael@0 5958 setLevels();
michael@0 5959 var navElement = navigationLink("Add Object Requests ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hqjws9hi.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5960 navigationTree[index] = navElement;
michael@0 5961 index++;
michael@0 5962
michael@0 5963 setLevels();
michael@0 5964 var navElement = navigationLink("NDS Security and Applications ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h3xwyggn.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5965 navigationTree[index] = navElement;
michael@0 5966 index++;
michael@0 5967
michael@0 5968 setLevels();
michael@0 5969 var navElement = navigationLink("Authentication of Client Applications ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h0m1k6ck.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5970 navigationTree[index] = navElement;
michael@0 5971 index++;
michael@0 5972
michael@0 5973 setLevels();
michael@0 5974 var navElement = navigationLink("Multiple Tree Support ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hu5a8flo.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5975 navigationTree[index] = navElement;
michael@0 5976 index++;
michael@0 5977
michael@0 5978 setLevels();
michael@0 5979 var navElement = navigationLink("Effective Rights Function ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/he06edkq.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5980 navigationTree[index] = navElement;
michael@0 5981 index++;
michael@0 5982
michael@0 5983 setLevels();
michael@0 5984 var navElement = navigationLink("Partition Functions ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/ha7fzu9h.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5985 navigationTree[index] = navElement;
michael@0 5986 index++;
michael@0 5987
michael@0 5988 setLevels();
michael@0 5989 var navElement = navigationLink("Replica Functions ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hpmsr4w7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5990 navigationTree[index] = navElement;
michael@0 5991 index++;
michael@0 5992
michael@0 5993 setLevels();
michael@0 5994 var navElement = navigationLink("Read Requests for Schema Information ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h0a2o4v9.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 5995 navigationTree[index] = navElement;
michael@0 5996 index++;
michael@0 5997
michael@0 5998 setLevels();
michael@0 5999 var navElement = navigationLink("Schema Extension Requests ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hrgy5k6e.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6000 navigationTree[index] = navElement;
michael@0 6001 index++;
michael@0 6002
michael@0 6003 if (currentLevel > 1) currentLevel--
michael@0 6004
michael@0 6005 setLevels();
michael@0 6006 var navElement = navigationLink("Tasks ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/huypg52u.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6007 navigationTree[index] = navElement;
michael@0 6008 index++;
michael@0 6009
michael@0 6010 currentLevel++;
michael@0 6011
michael@0 6012 setLevels();
michael@0 6013 var navElement = navigationLink("Context Handle Tasks ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hw34ixeu.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6014 navigationTree[index] = navElement;
michael@0 6015 index++;
michael@0 6016
michael@0 6017 setLevels();
michael@0 6018 var navElement = navigationLink("Buffer Tasks ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hb1nkqk4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6019 navigationTree[index] = navElement;
michael@0 6020 index++;
michael@0 6021
michael@0 6022 setLevels();
michael@0 6023 var navElement = navigationLink("Authentication and Connection Tasks ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/huzx6sda.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6024 navigationTree[index] = navElement;
michael@0 6025 index++;
michael@0 6026
michael@0 6027 setLevels();
michael@0 6028 var navElement = navigationLink("Object Tasks ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hddp9m9i.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6029 navigationTree[index] = navElement;
michael@0 6030 index++;
michael@0 6031
michael@0 6032 setLevels();
michael@0 6033 var navElement = navigationLink("Partition and Replica Tasks ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hpx2o69b.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6034 navigationTree[index] = navElement;
michael@0 6035 index++;
michael@0 6036
michael@0 6037 setLevels();
michael@0 6038 var navElement = navigationLink("Schema Tasks ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hp85l75p.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6039 navigationTree[index] = navElement;
michael@0 6040 index++;
michael@0 6041
michael@0 6042 if (currentLevel > 1) currentLevel--
michael@0 6043
michael@0 6044 setLevels();
michael@0 6045 var navElement = navigationLink("Functions ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h7qwv271.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6046 navigationTree[index] = navElement;
michael@0 6047 index++;
michael@0 6048
michael@0 6049 currentLevel++;
michael@0 6050
michael@0 6051 setLevels();
michael@0 6052 var navElement = navigationLink("NWDSAbbreviateName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk135.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6053 navigationTree[index] = navElement;
michael@0 6054 index++;
michael@0 6055
michael@0 6056 setLevels();
michael@0 6057 var navElement = navigationLink("NWDSAbortPartitionOperation ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk144.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6058 navigationTree[index] = navElement;
michael@0 6059 index++;
michael@0 6060
michael@0 6061 setLevels();
michael@0 6062 var navElement = navigationLink("NWDSAddFilterToken ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk153.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6063 navigationTree[index] = navElement;
michael@0 6064 index++;
michael@0 6065
michael@0 6066 setLevels();
michael@0 6067 var navElement = navigationLink("NWDSAddObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk162.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6068 navigationTree[index] = navElement;
michael@0 6069 index++;
michael@0 6070
michael@0 6071 setLevels();
michael@0 6072 var navElement = navigationLink("NWDSAddPartition (obsolete&#45;&#45;&#45;moved from .h file 11/99) ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk171.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6073 navigationTree[index] = navElement;
michael@0 6074 index++;
michael@0 6075
michael@0 6076 setLevels();
michael@0 6077 var navElement = navigationLink("NWDSAddReplica ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk180.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6078 navigationTree[index] = navElement;
michael@0 6079 index++;
michael@0 6080
michael@0 6081 setLevels();
michael@0 6082 var navElement = navigationLink("NWDSAddSecurityEquiv ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk189.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6083 navigationTree[index] = navElement;
michael@0 6084 index++;
michael@0 6085
michael@0 6086 setLevels();
michael@0 6087 var navElement = navigationLink("NWDSAllocBuf ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk198.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6088 navigationTree[index] = navElement;
michael@0 6089 index++;
michael@0 6090
michael@0 6091 setLevels();
michael@0 6092 var navElement = navigationLink("NWDSAllocFilter ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk207.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6093 navigationTree[index] = navElement;
michael@0 6094 index++;
michael@0 6095
michael@0 6096 setLevels();
michael@0 6097 var navElement = navigationLink("NWDSAuditGetObjectID ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk216.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6098 navigationTree[index] = navElement;
michael@0 6099 index++;
michael@0 6100
michael@0 6101 setLevels();
michael@0 6102 var navElement = navigationLink("NWDSAuthenticate ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk225.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6103 navigationTree[index] = navElement;
michael@0 6104 index++;
michael@0 6105
michael@0 6106 setLevels();
michael@0 6107 var navElement = navigationLink("NWDSAuthenticateConn ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk234.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6108 navigationTree[index] = navElement;
michael@0 6109 index++;
michael@0 6110
michael@0 6111 setLevels();
michael@0 6112 var navElement = navigationLink("NWDSAuthenticateConnEx ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a3fvxoz.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6113 navigationTree[index] = navElement;
michael@0 6114 index++;
michael@0 6115
michael@0 6116 setLevels();
michael@0 6117 var navElement = navigationLink("NWDSBackupObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk243.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6118 navigationTree[index] = navElement;
michael@0 6119 index++;
michael@0 6120
michael@0 6121 setLevels();
michael@0 6122 var navElement = navigationLink("NWDSBeginClassItem ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk252.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6123 navigationTree[index] = navElement;
michael@0 6124 index++;
michael@0 6125
michael@0 6126 setLevels();
michael@0 6127 var navElement = navigationLink("NWDSCanDSAuthenticate ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk261.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6128 navigationTree[index] = navElement;
michael@0 6129 index++;
michael@0 6130
michael@0 6131 setLevels();
michael@0 6132 var navElement = navigationLink("NWDSCanonicalizeName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk270.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6133 navigationTree[index] = navElement;
michael@0 6134 index++;
michael@0 6135
michael@0 6136 setLevels();
michael@0 6137 var navElement = navigationLink("NWDSChangeObjectPassword ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk279.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6138 navigationTree[index] = navElement;
michael@0 6139 index++;
michael@0 6140
michael@0 6141 setLevels();
michael@0 6142 var navElement = navigationLink("NWDSChangeReplicaType ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk288.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6143 navigationTree[index] = navElement;
michael@0 6144 index++;
michael@0 6145
michael@0 6146 setLevels();
michael@0 6147 var navElement = navigationLink("NWDSCIStringsMatch ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk297.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6148 navigationTree[index] = navElement;
michael@0 6149 index++;
michael@0 6150
michael@0 6151 setLevels();
michael@0 6152 var navElement = navigationLink("NWDSCloseIteration ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk305.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6153 navigationTree[index] = navElement;
michael@0 6154 index++;
michael@0 6155
michael@0 6156 setLevels();
michael@0 6157 var navElement = navigationLink("NWDSCompare ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk314.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6158 navigationTree[index] = navElement;
michael@0 6159 index++;
michael@0 6160
michael@0 6161 setLevels();
michael@0 6162 var navElement = navigationLink("NWDSComputeAttrValSize ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk360.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6163 navigationTree[index] = navElement;
michael@0 6164 index++;
michael@0 6165
michael@0 6166 setLevels();
michael@0 6167 var navElement = navigationLink("NWDSCreateContext (obsolete&#45;&#45;&#45;moved from .h file 6/99) ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk369.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6168 navigationTree[index] = navElement;
michael@0 6169 index++;
michael@0 6170
michael@0 6171 setLevels();
michael@0 6172 var navElement = navigationLink("NWDSCreateContextHandle ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk371.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6173 navigationTree[index] = navElement;
michael@0 6174 index++;
michael@0 6175
michael@0 6176 setLevels();
michael@0 6177 var navElement = navigationLink("NWDSDefineAttr ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk382.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6178 navigationTree[index] = navElement;
michael@0 6179 index++;
michael@0 6180
michael@0 6181 setLevels();
michael@0 6182 var navElement = navigationLink("NWDSDefineClass ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk391.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6183 navigationTree[index] = navElement;
michael@0 6184 index++;
michael@0 6185
michael@0 6186 setLevels();
michael@0 6187 var navElement = navigationLink("NWDSDelFilterToken ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk402.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6188 navigationTree[index] = navElement;
michael@0 6189 index++;
michael@0 6190
michael@0 6191 setLevels();
michael@0 6192 var navElement = navigationLink("NWDSDuplicateContext (obsolete 03/99) ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk412.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6193 navigationTree[index] = navElement;
michael@0 6194 index++;
michael@0 6195
michael@0 6196 setLevels();
michael@0 6197 var navElement = navigationLink("NWDSDuplicateContextHandle ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk423.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6198 navigationTree[index] = navElement;
michael@0 6199 index++;
michael@0 6200
michael@0 6201 setLevels();
michael@0 6202 var navElement = navigationLink("NWDSExtSyncList ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk434.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6203 navigationTree[index] = navElement;
michael@0 6204 index++;
michael@0 6205
michael@0 6206 setLevels();
michael@0 6207 var navElement = navigationLink("NWDSExtSyncRead ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk443.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6208 navigationTree[index] = navElement;
michael@0 6209 index++;
michael@0 6210
michael@0 6211 setLevels();
michael@0 6212 var navElement = navigationLink("NWDSExtSyncSearch ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk455.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6213 navigationTree[index] = navElement;
michael@0 6214 index++;
michael@0 6215
michael@0 6216 setLevels();
michael@0 6217 var navElement = navigationLink("NWDSFreeBuf ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk465.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6218 navigationTree[index] = navElement;
michael@0 6219 index++;
michael@0 6220
michael@0 6221 setLevels();
michael@0 6222 var navElement = navigationLink("NWDSFreeContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk474.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6223 navigationTree[index] = navElement;
michael@0 6224 index++;
michael@0 6225
michael@0 6226 setLevels();
michael@0 6227 var navElement = navigationLink("NWDSFreeFilter ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk491.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6228 navigationTree[index] = navElement;
michael@0 6229 index++;
michael@0 6230
michael@0 6231 setLevels();
michael@0 6232 var navElement = navigationLink("NWDSGenerateObjectKeyPair ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk501.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6233 navigationTree[index] = navElement;
michael@0 6234 index++;
michael@0 6235
michael@0 6236 setLevels();
michael@0 6237 var navElement = navigationLink("NWDSGetAttrCount ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk511.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6238 navigationTree[index] = navElement;
michael@0 6239 index++;
michael@0 6240
michael@0 6241 setLevels();
michael@0 6242 var navElement = navigationLink("NWDSGetAttrDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk521.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6243 navigationTree[index] = navElement;
michael@0 6244 index++;
michael@0 6245
michael@0 6246 setLevels();
michael@0 6247 var navElement = navigationLink("NWDSGetAttrName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk530.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6248 navigationTree[index] = navElement;
michael@0 6249 index++;
michael@0 6250
michael@0 6251 setLevels();
michael@0 6252 var navElement = navigationLink("NWDSGetAttrVal ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk540.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6253 navigationTree[index] = navElement;
michael@0 6254 index++;
michael@0 6255
michael@0 6256 setLevels();
michael@0 6257 var navElement = navigationLink("NWDSGetAttrValFlags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk550.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6258 navigationTree[index] = navElement;
michael@0 6259 index++;
michael@0 6260
michael@0 6261 setLevels();
michael@0 6262 var navElement = navigationLink("NWDSGetAttrValModTime ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk558.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6263 navigationTree[index] = navElement;
michael@0 6264 index++;
michael@0 6265
michael@0 6266 setLevels();
michael@0 6267 var navElement = navigationLink("NWDSGetBinderyContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk566.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6268 navigationTree[index] = navElement;
michael@0 6269 index++;
michael@0 6270
michael@0 6271 setLevels();
michael@0 6272 var navElement = navigationLink("NWDSGetClassDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk603.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6273 navigationTree[index] = navElement;
michael@0 6274 index++;
michael@0 6275
michael@0 6276 setLevels();
michael@0 6277 var navElement = navigationLink("NWDSGetClassDefCount ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk691.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6278 navigationTree[index] = navElement;
michael@0 6279 index++;
michael@0 6280
michael@0 6281 setLevels();
michael@0 6282 var navElement = navigationLink("NWDSGetClassItem ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk769.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6283 navigationTree[index] = navElement;
michael@0 6284 index++;
michael@0 6285
michael@0 6286 setLevels();
michael@0 6287 var navElement = navigationLink("NWDSGetClassItemCount ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk838.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6288 navigationTree[index] = navElement;
michael@0 6289 index++;
michael@0 6290
michael@0 6291 setLevels();
michael@0 6292 var navElement = navigationLink("NWDSGetContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk919.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6293 navigationTree[index] = navElement;
michael@0 6294 index++;
michael@0 6295
michael@0 6296 setLevels();
michael@0 6297 var navElement = navigationLink("NWDSGetCountByClassAndName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk972.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6298 navigationTree[index] = navElement;
michael@0 6299 index++;
michael@0 6300
michael@0 6301 setLevels();
michael@0 6302 var navElement = navigationLink("NWDSGetCurrentUser ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1031.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6303 navigationTree[index] = navElement;
michael@0 6304 index++;
michael@0 6305
michael@0 6306 setLevels();
michael@0 6307 var navElement = navigationLink("NWDSGetDefNameContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1041.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6308 navigationTree[index] = navElement;
michael@0 6309 index++;
michael@0 6310
michael@0 6311 setLevels();
michael@0 6312 var navElement = navigationLink("NWDSGetDSIInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1117.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6313 navigationTree[index] = navElement;
michael@0 6314 index++;
michael@0 6315
michael@0 6316 setLevels();
michael@0 6317 var navElement = navigationLink("NWDSGetDSVerInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1209.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6318 navigationTree[index] = navElement;
michael@0 6319 index++;
michael@0 6320
michael@0 6321 setLevels();
michael@0 6322 var navElement = navigationLink("NWDSGetEffectiveRights ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1274.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6323 navigationTree[index] = navElement;
michael@0 6324 index++;
michael@0 6325
michael@0 6326 setLevels();
michael@0 6327 var navElement = navigationLink("NWDSGetMonitoredConnRef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1346.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6328 navigationTree[index] = navElement;
michael@0 6329 index++;
michael@0 6330
michael@0 6331 setLevels();
michael@0 6332 var navElement = navigationLink("NWDSGetNDSInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1425.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6333 navigationTree[index] = navElement;
michael@0 6334 index++;
michael@0 6335
michael@0 6336 setLevels();
michael@0 6337 var navElement = navigationLink("NWDSGetObjectCount ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1528.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6338 navigationTree[index] = navElement;
michael@0 6339 index++;
michael@0 6340
michael@0 6341 setLevels();
michael@0 6342 var navElement = navigationLink("NWDSGetObjectHostServerAddress ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1604.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6343 navigationTree[index] = navElement;
michael@0 6344 index++;
michael@0 6345
michael@0 6346 setLevels();
michael@0 6347 var navElement = navigationLink("NWDSGetObjectName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1640.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6348 navigationTree[index] = navElement;
michael@0 6349 index++;
michael@0 6350
michael@0 6351 setLevels();
michael@0 6352 var navElement = navigationLink("NWDSGetObjectNameAndInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1700.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6353 navigationTree[index] = navElement;
michael@0 6354 index++;
michael@0 6355
michael@0 6356 setLevels();
michael@0 6357 var navElement = navigationLink("NWDSGetPartitionExtInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1781.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6358 navigationTree[index] = navElement;
michael@0 6359 index++;
michael@0 6360
michael@0 6361 setLevels();
michael@0 6362 var navElement = navigationLink("NWDSGetPartitionExtInfoPtr ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1830.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6363 navigationTree[index] = navElement;
michael@0 6364 index++;
michael@0 6365
michael@0 6366 setLevels();
michael@0 6367 var navElement = navigationLink("NWDSGetPartitionInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1938.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6368 navigationTree[index] = navElement;
michael@0 6369 index++;
michael@0 6370
michael@0 6371 setLevels();
michael@0 6372 var navElement = navigationLink("NWDSGetPartitionRoot ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2001.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6373 navigationTree[index] = navElement;
michael@0 6374 index++;
michael@0 6375
michael@0 6376 setLevels();
michael@0 6377 var navElement = navigationLink("NWDSGetServerAddresses (obsolete 3/98) ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2021.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6378 navigationTree[index] = navElement;
michael@0 6379 index++;
michael@0 6380
michael@0 6381 setLevels();
michael@0 6382 var navElement = navigationLink("NWDSGetServerAddresses2 ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2030.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6383 navigationTree[index] = navElement;
michael@0 6384 index++;
michael@0 6385
michael@0 6386 setLevels();
michael@0 6387 var navElement = navigationLink("NWDSGetServerDN ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2039.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6388 navigationTree[index] = navElement;
michael@0 6389 index++;
michael@0 6390
michael@0 6391 setLevels();
michael@0 6392 var navElement = navigationLink("NWDSGetServerName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2047.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6393 navigationTree[index] = navElement;
michael@0 6394 index++;
michael@0 6395
michael@0 6396 setLevels();
michael@0 6397 var navElement = navigationLink("NWDSGetSyntaxCount ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2056.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6398 navigationTree[index] = navElement;
michael@0 6399 index++;
michael@0 6400
michael@0 6401 setLevels();
michael@0 6402 var navElement = navigationLink("NWDSGetSyntaxDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2065.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6403 navigationTree[index] = navElement;
michael@0 6404 index++;
michael@0 6405
michael@0 6406 setLevels();
michael@0 6407 var navElement = navigationLink("NWDSGetSyntaxID ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2074.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6408 navigationTree[index] = navElement;
michael@0 6409 index++;
michael@0 6410
michael@0 6411 setLevels();
michael@0 6412 var navElement = navigationLink("NWDSInitBuf ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2082.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6413 navigationTree[index] = navElement;
michael@0 6414 index++;
michael@0 6415
michael@0 6416 setLevels();
michael@0 6417 var navElement = navigationLink("NWDSInspectEntry ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2091.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6418 navigationTree[index] = navElement;
michael@0 6419 index++;
michael@0 6420
michael@0 6421 setLevels();
michael@0 6422 var navElement = navigationLink("NWDSJoinPartitions ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2099.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6423 navigationTree[index] = navElement;
michael@0 6424 index++;
michael@0 6425
michael@0 6426 setLevels();
michael@0 6427 var navElement = navigationLink("NWDSList ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2108.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6428 navigationTree[index] = navElement;
michael@0 6429 index++;
michael@0 6430
michael@0 6431 setLevels();
michael@0 6432 var navElement = navigationLink("NWDSListAttrsEffectiveRights ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2117.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6433 navigationTree[index] = navElement;
michael@0 6434 index++;
michael@0 6435
michael@0 6436 setLevels();
michael@0 6437 var navElement = navigationLink("NWDSListByClassAndName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2126.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6438 navigationTree[index] = navElement;
michael@0 6439 index++;
michael@0 6440
michael@0 6441 setLevels();
michael@0 6442 var navElement = navigationLink("NWDSListContainableClasses ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2135.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6443 navigationTree[index] = navElement;
michael@0 6444 index++;
michael@0 6445
michael@0 6446 setLevels();
michael@0 6447 var navElement = navigationLink("NWDSListContainers ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2144.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6448 navigationTree[index] = navElement;
michael@0 6449 index++;
michael@0 6450
michael@0 6451 setLevels();
michael@0 6452 var navElement = navigationLink("NWDSListPartitions ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2153.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6453 navigationTree[index] = navElement;
michael@0 6454 index++;
michael@0 6455
michael@0 6456 setLevels();
michael@0 6457 var navElement = navigationLink("NWDSListPartitionsExtInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2162.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6458 navigationTree[index] = navElement;
michael@0 6459 index++;
michael@0 6460
michael@0 6461 setLevels();
michael@0 6462 var navElement = navigationLink("NWDSLogin ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2171.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6463 navigationTree[index] = navElement;
michael@0 6464 index++;
michael@0 6465
michael@0 6466 setLevels();
michael@0 6467 var navElement = navigationLink("NWDSLoginAsServer ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2180.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6468 navigationTree[index] = navElement;
michael@0 6469 index++;
michael@0 6470
michael@0 6471 setLevels();
michael@0 6472 var navElement = navigationLink("NWDSLogout ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2187.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6473 navigationTree[index] = navElement;
michael@0 6474 index++;
michael@0 6475
michael@0 6476 setLevels();
michael@0 6477 var navElement = navigationLink("NWDSMapIDToName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2196.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6478 navigationTree[index] = navElement;
michael@0 6479 index++;
michael@0 6480
michael@0 6481 setLevels();
michael@0 6482 var navElement = navigationLink("NWDSMapNameToID ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2205.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6483 navigationTree[index] = navElement;
michael@0 6484 index++;
michael@0 6485
michael@0 6486 setLevels();
michael@0 6487 var navElement = navigationLink("NWDSModifyClassDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2214.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6488 navigationTree[index] = navElement;
michael@0 6489 index++;
michael@0 6490
michael@0 6491 setLevels();
michael@0 6492 var navElement = navigationLink("NWDSModifyDN ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2223.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6493 navigationTree[index] = navElement;
michael@0 6494 index++;
michael@0 6495
michael@0 6496 setLevels();
michael@0 6497 var navElement = navigationLink("NWDSModifyObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2232.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6498 navigationTree[index] = navElement;
michael@0 6499 index++;
michael@0 6500
michael@0 6501 setLevels();
michael@0 6502 var navElement = navigationLink("NWDSModifyRDN ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2241.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6503 navigationTree[index] = navElement;
michael@0 6504 index++;
michael@0 6505
michael@0 6506 setLevels();
michael@0 6507 var navElement = navigationLink("NWDSMoveObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2250.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6508 navigationTree[index] = navElement;
michael@0 6509 index++;
michael@0 6510
michael@0 6511 setLevels();
michael@0 6512 var navElement = navigationLink("NWDSMutateObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a37nkf6.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6513 navigationTree[index] = navElement;
michael@0 6514 index++;
michael@0 6515
michael@0 6516 setLevels();
michael@0 6517 var navElement = navigationLink("NWDSOpenConnToNDSServer ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2259.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6518 navigationTree[index] = navElement;
michael@0 6519 index++;
michael@0 6520
michael@0 6521 setLevels();
michael@0 6522 var navElement = navigationLink("NWDSOpenMonitoredConn ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2268.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6523 navigationTree[index] = navElement;
michael@0 6524 index++;
michael@0 6525
michael@0 6526 setLevels();
michael@0 6527 var navElement = navigationLink("NWDSOpenStream ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2277.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6528 navigationTree[index] = navElement;
michael@0 6529 index++;
michael@0 6530
michael@0 6531 setLevels();
michael@0 6532 var navElement = navigationLink("NWDSPartitionReceiveAllUpdates ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2285.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6533 navigationTree[index] = navElement;
michael@0 6534 index++;
michael@0 6535
michael@0 6536 setLevels();
michael@0 6537 var navElement = navigationLink("NWDSPartitionSendAllUpdates ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2294.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6538 navigationTree[index] = navElement;
michael@0 6539 index++;
michael@0 6540
michael@0 6541 setLevels();
michael@0 6542 var navElement = navigationLink("NWDSPutAttrName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2303.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6543 navigationTree[index] = navElement;
michael@0 6544 index++;
michael@0 6545
michael@0 6546 setLevels();
michael@0 6547 var navElement = navigationLink("NWDSPutAttrNameAndVal ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2312.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6548 navigationTree[index] = navElement;
michael@0 6549 index++;
michael@0 6550
michael@0 6551 setLevels();
michael@0 6552 var navElement = navigationLink("NWDSPutAttrVal ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2321.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6553 navigationTree[index] = navElement;
michael@0 6554 index++;
michael@0 6555
michael@0 6556 setLevels();
michael@0 6557 var navElement = navigationLink("NWDSPutChange ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2330.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6558 navigationTree[index] = navElement;
michael@0 6559 index++;
michael@0 6560
michael@0 6561 setLevels();
michael@0 6562 var navElement = navigationLink("NWDSPutChangeAndVal ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2339.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6563 navigationTree[index] = navElement;
michael@0 6564 index++;
michael@0 6565
michael@0 6566 setLevels();
michael@0 6567 var navElement = navigationLink("NWDSPutClassItem ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2348.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6568 navigationTree[index] = navElement;
michael@0 6569 index++;
michael@0 6570
michael@0 6571 setLevels();
michael@0 6572 var navElement = navigationLink("NWDSPutClassName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2357.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6573 navigationTree[index] = navElement;
michael@0 6574 index++;
michael@0 6575
michael@0 6576 setLevels();
michael@0 6577 var navElement = navigationLink("NWDSPutFilter ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2364.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6578 navigationTree[index] = navElement;
michael@0 6579 index++;
michael@0 6580
michael@0 6581 setLevels();
michael@0 6582 var navElement = navigationLink("NWDSPutSyntaxName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2373.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6583 navigationTree[index] = navElement;
michael@0 6584 index++;
michael@0 6585
michael@0 6586 setLevels();
michael@0 6587 var navElement = navigationLink("NWDSRead ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2380.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6588 navigationTree[index] = navElement;
michael@0 6589 index++;
michael@0 6590
michael@0 6591 setLevels();
michael@0 6592 var navElement = navigationLink("NWDSReadAttrDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2389.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6593 navigationTree[index] = navElement;
michael@0 6594 index++;
michael@0 6595
michael@0 6596 setLevels();
michael@0 6597 var navElement = navigationLink("NWDSReadClassDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2398.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6598 navigationTree[index] = navElement;
michael@0 6599 index++;
michael@0 6600
michael@0 6601 setLevels();
michael@0 6602 var navElement = navigationLink("NWDSReadNDSInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2407.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6603 navigationTree[index] = navElement;
michael@0 6604 index++;
michael@0 6605
michael@0 6606 setLevels();
michael@0 6607 var navElement = navigationLink("NWDSReadObjectDSIInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2416.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6608 navigationTree[index] = navElement;
michael@0 6609 index++;
michael@0 6610
michael@0 6611 setLevels();
michael@0 6612 var navElement = navigationLink("NWDSReadObjectInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2425.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6613 navigationTree[index] = navElement;
michael@0 6614 index++;
michael@0 6615
michael@0 6616 setLevels();
michael@0 6617 var navElement = navigationLink("NWDSReadReferences ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2434.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6618 navigationTree[index] = navElement;
michael@0 6619 index++;
michael@0 6620
michael@0 6621 setLevels();
michael@0 6622 var navElement = navigationLink("NWDSReadSyntaxDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2443.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6623 navigationTree[index] = navElement;
michael@0 6624 index++;
michael@0 6625
michael@0 6626 setLevels();
michael@0 6627 var navElement = navigationLink("NWDSReadSyntaxes ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2451.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6628 navigationTree[index] = navElement;
michael@0 6629 index++;
michael@0 6630
michael@0 6631 setLevels();
michael@0 6632 var navElement = navigationLink("NWDSReloadDS ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2459.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6633 navigationTree[index] = navElement;
michael@0 6634 index++;
michael@0 6635
michael@0 6636 setLevels();
michael@0 6637 var navElement = navigationLink("NWDSRemoveAllTypes ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2467.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6638 navigationTree[index] = navElement;
michael@0 6639 index++;
michael@0 6640
michael@0 6641 setLevels();
michael@0 6642 var navElement = navigationLink("NWDSRemoveAttrDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2475.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6643 navigationTree[index] = navElement;
michael@0 6644 index++;
michael@0 6645
michael@0 6646 setLevels();
michael@0 6647 var navElement = navigationLink("NWDSRemoveClassDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2484.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6648 navigationTree[index] = navElement;
michael@0 6649 index++;
michael@0 6650
michael@0 6651 setLevels();
michael@0 6652 var navElement = navigationLink("NWDSRemoveObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2493.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6653 navigationTree[index] = navElement;
michael@0 6654 index++;
michael@0 6655
michael@0 6656 setLevels();
michael@0 6657 var navElement = navigationLink("NWDSRemovePartition ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2501.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6658 navigationTree[index] = navElement;
michael@0 6659 index++;
michael@0 6660
michael@0 6661 setLevels();
michael@0 6662 var navElement = navigationLink("NWDSRemoveReplica ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2510.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6663 navigationTree[index] = navElement;
michael@0 6664 index++;
michael@0 6665
michael@0 6666 setLevels();
michael@0 6667 var navElement = navigationLink("NWDSRemSecurityEquiv ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2519.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6668 navigationTree[index] = navElement;
michael@0 6669 index++;
michael@0 6670
michael@0 6671 setLevels();
michael@0 6672 var navElement = navigationLink("NWDSRepairTimeStamps ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2528.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6673 navigationTree[index] = navElement;
michael@0 6674 index++;
michael@0 6675
michael@0 6676 setLevels();
michael@0 6677 var navElement = navigationLink("NWDSReplaceAttrNameAbbrev ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2536.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6678 navigationTree[index] = navElement;
michael@0 6679 index++;
michael@0 6680
michael@0 6681 setLevels();
michael@0 6682 var navElement = navigationLink("NWDSResolveName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2544.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6683 navigationTree[index] = navElement;
michael@0 6684 index++;
michael@0 6685
michael@0 6686 setLevels();
michael@0 6687 var navElement = navigationLink("NWDSRestoreObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2553.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6688 navigationTree[index] = navElement;
michael@0 6689 index++;
michael@0 6690
michael@0 6691 setLevels();
michael@0 6692 var navElement = navigationLink("NWDSReturnBlockOfAvailableTrees ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2562.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6693 navigationTree[index] = navElement;
michael@0 6694 index++;
michael@0 6695
michael@0 6696 setLevels();
michael@0 6697 var navElement = navigationLink("NWDSScanConnsForTrees ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2573.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6698 navigationTree[index] = navElement;
michael@0 6699 index++;
michael@0 6700
michael@0 6701 setLevels();
michael@0 6702 var navElement = navigationLink("NWDSScanForAvailableTrees ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2582.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6703 navigationTree[index] = navElement;
michael@0 6704 index++;
michael@0 6705
michael@0 6706 setLevels();
michael@0 6707 var navElement = navigationLink("NWDSSearch ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2591.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6708 navigationTree[index] = navElement;
michael@0 6709 index++;
michael@0 6710
michael@0 6711 setLevels();
michael@0 6712 var navElement = navigationLink("NWDSSetContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2600.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6713 navigationTree[index] = navElement;
michael@0 6714 index++;
michael@0 6715
michael@0 6716 setLevels();
michael@0 6717 var navElement = navigationLink("NWDSSetCurrentUser ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2609.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6718 navigationTree[index] = navElement;
michael@0 6719 index++;
michael@0 6720
michael@0 6721 setLevels();
michael@0 6722 var navElement = navigationLink("NWDSSetDefNameContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2615.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6723 navigationTree[index] = navElement;
michael@0 6724 index++;
michael@0 6725
michael@0 6726 setLevels();
michael@0 6727 var navElement = navigationLink("NWDSSetMonitoredConnection ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2624.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6728 navigationTree[index] = navElement;
michael@0 6729 index++;
michael@0 6730
michael@0 6731 setLevels();
michael@0 6732 var navElement = navigationLink("NWDSSplitPartition ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2633.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6733 navigationTree[index] = navElement;
michael@0 6734 index++;
michael@0 6735
michael@0 6736 setLevels();
michael@0 6737 var navElement = navigationLink("NWDSSyncPartition ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2642.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6738 navigationTree[index] = navElement;
michael@0 6739 index++;
michael@0 6740
michael@0 6741 setLevels();
michael@0 6742 var navElement = navigationLink("NWDSSyncReplicaToServer ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2651.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6743 navigationTree[index] = navElement;
michael@0 6744 index++;
michael@0 6745
michael@0 6746 setLevels();
michael@0 6747 var navElement = navigationLink("NWDSSyncSchema ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2660.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6748 navigationTree[index] = navElement;
michael@0 6749 index++;
michael@0 6750
michael@0 6751 setLevels();
michael@0 6752 var navElement = navigationLink("NWDSUnlockConnection ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2669.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6753 navigationTree[index] = navElement;
michael@0 6754 index++;
michael@0 6755
michael@0 6756 setLevels();
michael@0 6757 var navElement = navigationLink("NWDSVerifyObjectPassword ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2678.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6758 navigationTree[index] = navElement;
michael@0 6759 index++;
michael@0 6760
michael@0 6761 setLevels();
michael@0 6762 var navElement = navigationLink("NWDSWhoAmI ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2687.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6763 navigationTree[index] = navElement;
michael@0 6764 index++;
michael@0 6765
michael@0 6766 setLevels();
michael@0 6767 var navElement = navigationLink("NWGetDefaultNameContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2695.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6768 navigationTree[index] = navElement;
michael@0 6769 index++;
michael@0 6770
michael@0 6771 setLevels();
michael@0 6772 var navElement = navigationLink("NWGetFileServerUTCTime ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2704.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6773 navigationTree[index] = navElement;
michael@0 6774 index++;
michael@0 6775
michael@0 6776 setLevels();
michael@0 6777 var navElement = navigationLink("NWGetNumConnections ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2712.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6778 navigationTree[index] = navElement;
michael@0 6779 index++;
michael@0 6780
michael@0 6781 setLevels();
michael@0 6782 var navElement = navigationLink("NWGetNWNetVersion ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2720.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6783 navigationTree[index] = navElement;
michael@0 6784 index++;
michael@0 6785
michael@0 6786 setLevels();
michael@0 6787 var navElement = navigationLink("NWGetPreferredConnName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2727.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6788 navigationTree[index] = navElement;
michael@0 6789 index++;
michael@0 6790
michael@0 6791 setLevels();
michael@0 6792 var navElement = navigationLink("NWIsDSAuthenticated ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2736.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6793 navigationTree[index] = navElement;
michael@0 6794 index++;
michael@0 6795
michael@0 6796 setLevels();
michael@0 6797 var navElement = navigationLink("NWIsDSServer ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2743.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6798 navigationTree[index] = navElement;
michael@0 6799 index++;
michael@0 6800
michael@0 6801 setLevels();
michael@0 6802 var navElement = navigationLink("NWNetInit ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2750.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6803 navigationTree[index] = navElement;
michael@0 6804 index++;
michael@0 6805
michael@0 6806 setLevels();
michael@0 6807 var navElement = navigationLink("NWNetTerm ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2759.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6808 navigationTree[index] = navElement;
michael@0 6809 index++;
michael@0 6810
michael@0 6811 setLevels();
michael@0 6812 var navElement = navigationLink("NWSetDefaultNameContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2767.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6813 navigationTree[index] = navElement;
michael@0 6814 index++;
michael@0 6815
michael@0 6816 setLevels();
michael@0 6817 var navElement = navigationLink("NWSetPreferredDSTree ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2776.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6818 navigationTree[index] = navElement;
michael@0 6819 index++;
michael@0 6820
michael@0 6821 if (currentLevel > 1) currentLevel--
michael@0 6822
michael@0 6823 setLevels();
michael@0 6824 var navElement = navigationLink("Structures ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hqp7vveq.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6825 navigationTree[index] = navElement;
michael@0 6826 index++;
michael@0 6827
michael@0 6828 currentLevel++;
michael@0 6829
michael@0 6830 setLevels();
michael@0 6831 var navElement = navigationLink("Asn1ID_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2785.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6832 navigationTree[index] = navElement;
michael@0 6833 index++;
michael@0 6834
michael@0 6835 setLevels();
michael@0 6836 var navElement = navigationLink("Attr_Info_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2790.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6837 navigationTree[index] = navElement;
michael@0 6838 index++;
michael@0 6839
michael@0 6840 setLevels();
michael@0 6841 var navElement = navigationLink("Back_Link_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2795.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6842 navigationTree[index] = navElement;
michael@0 6843 index++;
michael@0 6844
michael@0 6845 setLevels();
michael@0 6846 var navElement = navigationLink("Bit_String_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2800.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6847 navigationTree[index] = navElement;
michael@0 6848 index++;
michael@0 6849
michael@0 6850 setLevels();
michael@0 6851 var navElement = navigationLink("Buf_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2805.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6852 navigationTree[index] = navElement;
michael@0 6853 index++;
michael@0 6854
michael@0 6855 setLevels();
michael@0 6856 var navElement = navigationLink("CI_List_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2810.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6857 navigationTree[index] = navElement;
michael@0 6858 index++;
michael@0 6859
michael@0 6860 setLevels();
michael@0 6861 var navElement = navigationLink("Class_Info_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2815.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6862 navigationTree[index] = navElement;
michael@0 6863 index++;
michael@0 6864
michael@0 6865 setLevels();
michael@0 6866 var navElement = navigationLink("EMail_Address_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2820.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6867 navigationTree[index] = navElement;
michael@0 6868 index++;
michael@0 6869
michael@0 6870 setLevels();
michael@0 6871 var navElement = navigationLink("Fax_Number_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2826.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6872 navigationTree[index] = navElement;
michael@0 6873 index++;
michael@0 6874
michael@0 6875 setLevels();
michael@0 6876 var navElement = navigationLink("Filter_Cursor_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2831.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6877 navigationTree[index] = navElement;
michael@0 6878 index++;
michael@0 6879
michael@0 6880 setLevels();
michael@0 6881 var navElement = navigationLink("Filter_Node_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2836.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6882 navigationTree[index] = navElement;
michael@0 6883 index++;
michael@0 6884
michael@0 6885 setLevels();
michael@0 6886 var navElement = navigationLink("Hold_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2841.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6887 navigationTree[index] = navElement;
michael@0 6888 index++;
michael@0 6889
michael@0 6890 setLevels();
michael@0 6891 var navElement = navigationLink("NDSOSVersion_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2846.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6892 navigationTree[index] = navElement;
michael@0 6893 index++;
michael@0 6894
michael@0 6895 setLevels();
michael@0 6896 var navElement = navigationLink("NDSStatsInfo_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2850.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6897 navigationTree[index] = navElement;
michael@0 6898 index++;
michael@0 6899
michael@0 6900 setLevels();
michael@0 6901 var navElement = navigationLink("Net_Address_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2855.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6902 navigationTree[index] = navElement;
michael@0 6903 index++;
michael@0 6904
michael@0 6905 setLevels();
michael@0 6906 var navElement = navigationLink("NWDS_TimeStamp_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2860.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6907 navigationTree[index] = navElement;
michael@0 6908 index++;
michael@0 6909
michael@0 6910 setLevels();
michael@0 6911 var navElement = navigationLink("Object_ACL_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2865.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6912 navigationTree[index] = navElement;
michael@0 6913 index++;
michael@0 6914
michael@0 6915 setLevels();
michael@0 6916 var navElement = navigationLink("Object_Info_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2870.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6917 navigationTree[index] = navElement;
michael@0 6918 index++;
michael@0 6919
michael@0 6920 setLevels();
michael@0 6921 var navElement = navigationLink("Octet_List_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2875.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6922 navigationTree[index] = navElement;
michael@0 6923 index++;
michael@0 6924
michael@0 6925 setLevels();
michael@0 6926 var navElement = navigationLink("Octet_String_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2880.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6927 navigationTree[index] = navElement;
michael@0 6928 index++;
michael@0 6929
michael@0 6930 setLevels();
michael@0 6931 var navElement = navigationLink("Path_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2885.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6932 navigationTree[index] = navElement;
michael@0 6933 index++;
michael@0 6934
michael@0 6935 setLevels();
michael@0 6936 var navElement = navigationLink("Replica_Pointer_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2890.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6937 navigationTree[index] = navElement;
michael@0 6938 index++;
michael@0 6939
michael@0 6940 setLevels();
michael@0 6941 var navElement = navigationLink("Syntax_Info_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2895.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6942 navigationTree[index] = navElement;
michael@0 6943 index++;
michael@0 6944
michael@0 6945 setLevels();
michael@0 6946 var navElement = navigationLink("TimeStamp_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2900.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6947 navigationTree[index] = navElement;
michael@0 6948 index++;
michael@0 6949
michael@0 6950 setLevels();
michael@0 6951 var navElement = navigationLink("Typed_Name_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2906.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6952 navigationTree[index] = navElement;
michael@0 6953 index++;
michael@0 6954
michael@0 6955 setLevels();
michael@0 6956 var navElement = navigationLink("Unknown_Attr_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2911.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6957 navigationTree[index] = navElement;
michael@0 6958 index++;
michael@0 6959
michael@0 6960 if (currentLevel > 1) currentLevel--
michael@0 6961
michael@0 6962 setLevels();
michael@0 6963 var navElement = navigationLink("Values ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hmmmal7s.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6964 navigationTree[index] = navElement;
michael@0 6965 index++;
michael@0 6966
michael@0 6967 currentLevel++;
michael@0 6968
michael@0 6969 setLevels();
michael@0 6970 var navElement = navigationLink("Attribute Constraint Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hudjk3k4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6971 navigationTree[index] = navElement;
michael@0 6972 index++;
michael@0 6973
michael@0 6974 setLevels();
michael@0 6975 var navElement = navigationLink("Attribute Value Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h6anqw6h.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6976 navigationTree[index] = navElement;
michael@0 6977 index++;
michael@0 6978
michael@0 6979 setLevels();
michael@0 6980 var navElement = navigationLink("Buffer Operation Types and Related Functions ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h8bn0lfm.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6981 navigationTree[index] = navElement;
michael@0 6982 index++;
michael@0 6983
michael@0 6984 setLevels();
michael@0 6985 var navElement = navigationLink("Class Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hpj620k3.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6986 navigationTree[index] = navElement;
michael@0 6987 index++;
michael@0 6988
michael@0 6989 setLevels();
michael@0 6990 var navElement = navigationLink("Change Types for Modifying Objects ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hc4p686b.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6991 navigationTree[index] = navElement;
michael@0 6992 index++;
michael@0 6993
michael@0 6994 setLevels();
michael@0 6995 var navElement = navigationLink("Context Keys and Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h1btx3en.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 6996 navigationTree[index] = navElement;
michael@0 6997 index++;
michael@0 6998
michael@0 6999 setLevels();
michael@0 7000 var navElement = navigationLink("Default Context Key Values ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hlkcqs3t.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7001 navigationTree[index] = navElement;
michael@0 7002 index++;
michael@0 7003
michael@0 7004 setLevels();
michael@0 7005 var navElement = navigationLink("DCK_FLAGS Bit Values ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/he1wcp92.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7006 navigationTree[index] = navElement;
michael@0 7007 index++;
michael@0 7008
michael@0 7009 setLevels();
michael@0 7010 var navElement = navigationLink("DCK_NAME_FORM Values ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hmd7uuiw.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7011 navigationTree[index] = navElement;
michael@0 7012 index++;
michael@0 7013
michael@0 7014 setLevels();
michael@0 7015 var navElement = navigationLink("DCK_CONFIDENCE Bit Values ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h7hy5yg3.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7016 navigationTree[index] = navElement;
michael@0 7017 index++;
michael@0 7018
michael@0 7019 setLevels();
michael@0 7020 var navElement = navigationLink("DCK_DSI_FLAGS Values ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/huh0ri39.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7021 navigationTree[index] = navElement;
michael@0 7022 index++;
michael@0 7023
michael@0 7024 setLevels();
michael@0 7025 var navElement = navigationLink("DSI_ENTRY_FLAGS Values ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hqwiyl1u.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7026 navigationTree[index] = navElement;
michael@0 7027 index++;
michael@0 7028
michael@0 7029 setLevels();
michael@0 7030 var navElement = navigationLink("Filter Tokens ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h487zxy3.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7031 navigationTree[index] = navElement;
michael@0 7032 index++;
michael@0 7033
michael@0 7034 setLevels();
michael@0 7035 var navElement = navigationLink("Information Types for Attribute Definitions ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hdqx1cns.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7036 navigationTree[index] = navElement;
michael@0 7037 index++;
michael@0 7038
michael@0 7039 setLevels();
michael@0 7040 var navElement = navigationLink("Information Types for Class Definitions ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hcq403ms.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7041 navigationTree[index] = navElement;
michael@0 7042 index++;
michael@0 7043
michael@0 7044 setLevels();
michael@0 7045 var navElement = navigationLink("Information Types for Search and Read ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/ha682lf8.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7046 navigationTree[index] = navElement;
michael@0 7047 index++;
michael@0 7048
michael@0 7049 setLevels();
michael@0 7050 var navElement = navigationLink("Name Space Types ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hs6qj0yl.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7051 navigationTree[index] = navElement;
michael@0 7052 index++;
michael@0 7053
michael@0 7054 setLevels();
michael@0 7055 var navElement = navigationLink("NDS Access Control Rights ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h12s89uj.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7056 navigationTree[index] = navElement;
michael@0 7057 index++;
michael@0 7058
michael@0 7059 setLevels();
michael@0 7060 var navElement = navigationLink("NDS Ping Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hf0fdqhd.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7061 navigationTree[index] = navElement;
michael@0 7062 index++;
michael@0 7063
michael@0 7064 setLevels();
michael@0 7065 var navElement = navigationLink("DSP Replica Information Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hw42a7qg.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7066 navigationTree[index] = navElement;
michael@0 7067 index++;
michael@0 7068
michael@0 7069 setLevels();
michael@0 7070 var navElement = navigationLink("Network Address Types ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hniuyp90.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7071 navigationTree[index] = navElement;
michael@0 7072 index++;
michael@0 7073
michael@0 7074 setLevels();
michael@0 7075 var navElement = navigationLink("Scope Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h6wfyyfk.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7076 navigationTree[index] = navElement;
michael@0 7077 index++;
michael@0 7078
michael@0 7079 setLevels();
michael@0 7080 var navElement = navigationLink("Replica Types ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/he290q86.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7081 navigationTree[index] = navElement;
michael@0 7082 index++;
michael@0 7083
michael@0 7084 setLevels();
michael@0 7085 var navElement = navigationLink("Replica States ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h9br9yt1.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7086 navigationTree[index] = navElement;
michael@0 7087 index++;
michael@0 7088
michael@0 7089 setLevels();
michael@0 7090 var navElement = navigationLink("Syntax Matching Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hd8fn0rm.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7091 navigationTree[index] = navElement;
michael@0 7092 index++;
michael@0 7093
michael@0 7094 setLevels();
michael@0 7095 var navElement = navigationLink("Syntax IDs ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hn1dsa7y.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7096 navigationTree[index] = navElement;
michael@0 7097 index++;
michael@0 7098
michael@0 7099 if (currentLevel > 1) currentLevel--
michael@0 7100
michael@0 7101 setLevels();
michael@0 7102 var navElement = navigationLink("NDS Example Code ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hb05g04v.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7103 navigationTree[index] = navElement;
michael@0 7104 index++;
michael@0 7105
michael@0 7106 currentLevel++;
michael@0 7107
michael@0 7108 setLevels();
michael@0 7109 var navElement = navigationLink("Context Handle ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a2sofgc.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7110 navigationTree[index] = navElement;
michael@0 7111 index++;
michael@0 7112
michael@0 7113 setLevels();
michael@0 7114 var navElement = navigationLink("Object and Attribute ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a2snp6e.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7115 navigationTree[index] = navElement;
michael@0 7116 index++;
michael@0 7117
michael@0 7118 setLevels();
michael@0 7119 var navElement = navigationLink("Browsing and Searching ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a2snu78.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7120 navigationTree[index] = navElement;
michael@0 7121 index++;
michael@0 7122
michael@0 7123 setLevels();
michael@0 7124 var navElement = navigationLink("Batch Modification of Objects and Attributes ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a2snzot.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7125 navigationTree[index] = navElement;
michael@0 7126 index++;
michael@0 7127
michael@0 7128 setLevels();
michael@0 7129 var navElement = navigationLink("Schema ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a2snqyd.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7130 navigationTree[index] = navElement;
michael@0 7131 index++;
michael@0 7132
michael@0 7133 if (currentLevel > 1) currentLevel--
michael@0 7134
michael@0 7135 setLevels();
michael@0 7136 var navElement = navigationLink("Revision History ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a5i29ah.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7137 navigationTree[index] = navElement;
michael@0 7138 index++;
michael@0 7139
michael@0 7140 if (currentLevel > 1) currentLevel--
michael@0 7141
michael@0 7142 setLevels();
michael@0 7143 var navElement = navigationLink("NDS Schema Reference ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h4q1mn1i.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7144 navigationTree[index] = navElement;
michael@0 7145 index++;
michael@0 7146
michael@0 7147 currentLevel++;
michael@0 7148
michael@0 7149 setLevels();
michael@0 7150 var navElement = navigationLink("Schema Concepts ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h282spjh.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7151 navigationTree[index] = navElement;
michael@0 7152 index++;
michael@0 7153
michael@0 7154 currentLevel++;
michael@0 7155
michael@0 7156 setLevels();
michael@0 7157 var navElement = navigationLink("Schema Structure ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hpmkggmh.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7158 navigationTree[index] = navElement;
michael@0 7159 index++;
michael@0 7160
michael@0 7161 setLevels();
michael@0 7162 var navElement = navigationLink("Schema Components ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hvt5bdoi.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7163 navigationTree[index] = navElement;
michael@0 7164 index++;
michael@0 7165
michael@0 7166 setLevels();
michael@0 7167 var navElement = navigationLink("Object Classes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hbna398k.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7168 navigationTree[index] = navElement;
michael@0 7169 index++;
michael@0 7170
michael@0 7171 setLevels();
michael@0 7172 var navElement = navigationLink("Naming Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h9vf1k0r.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7173 navigationTree[index] = navElement;
michael@0 7174 index++;
michael@0 7175
michael@0 7176 setLevels();
michael@0 7177 var navElement = navigationLink("Containment Classes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hh1izaro.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7178 navigationTree[index] = navElement;
michael@0 7179 index++;
michael@0 7180
michael@0 7181 setLevels();
michael@0 7182 var navElement = navigationLink("Super Classes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hmdjysrx.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7183 navigationTree[index] = navElement;
michael@0 7184 index++;
michael@0 7185
michael@0 7186 setLevels();
michael@0 7187 var navElement = navigationLink("Object Class Flags ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h6rvyaky.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7188 navigationTree[index] = navElement;
michael@0 7189 index++;
michael@0 7190
michael@0 7191 setLevels();
michael@0 7192 var navElement = navigationLink("Mandatory and Optional Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h2vnta8j.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7193 navigationTree[index] = navElement;
michael@0 7194 index++;
michael@0 7195
michael@0 7196 setLevels();
michael@0 7197 var navElement = navigationLink("Default ACL Templates ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hr9sm1l0.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7198 navigationTree[index] = navElement;
michael@0 7199 index++;
michael@0 7200
michael@0 7201 setLevels();
michael@0 7202 var navElement = navigationLink("Auxiliary Classes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hlh5m1af.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7203 navigationTree[index] = navElement;
michael@0 7204 index++;
michael@0 7205
michael@0 7206 setLevels();
michael@0 7207 var navElement = navigationLink("Attribute Type Definitions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hotadinr.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7208 navigationTree[index] = navElement;
michael@0 7209 index++;
michael@0 7210
michael@0 7211 setLevels();
michael@0 7212 var navElement = navigationLink("Attribute Syntax Definitions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h2m59phc.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7213 navigationTree[index] = navElement;
michael@0 7214 index++;
michael@0 7215
michael@0 7216 setLevels();
michael@0 7217 var navElement = navigationLink("Schema Extensions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/he5mef3b.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7218 navigationTree[index] = navElement;
michael@0 7219 index++;
michael@0 7220
michael@0 7221 if (currentLevel > 1) currentLevel--
michael@0 7222
michael@0 7223 setLevels();
michael@0 7224 var navElement = navigationLink("Base Object Class Definitions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hmv2qd15.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7225 navigationTree[index] = navElement;
michael@0 7226 index++;
michael@0 7227
michael@0 7228 currentLevel++;
michael@0 7229
michael@0 7230 setLevels();
michael@0 7231 var navElement = navigationLink("AFP Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk75.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7232 navigationTree[index] = navElement;
michael@0 7233 index++;
michael@0 7234
michael@0 7235 setLevels();
michael@0 7236 var navElement = navigationLink("Alias ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk83.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7237 navigationTree[index] = navElement;
michael@0 7238 index++;
michael@0 7239
michael@0 7240 setLevels();
michael@0 7241 var navElement = navigationLink("applicationEntity ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk91.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7242 navigationTree[index] = navElement;
michael@0 7243 index++;
michael@0 7244
michael@0 7245 setLevels();
michael@0 7246 var navElement = navigationLink("applicationProcess ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk99.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7247 navigationTree[index] = navElement;
michael@0 7248 index++;
michael@0 7249
michael@0 7250 setLevels();
michael@0 7251 var navElement = navigationLink("Audit:File Object ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk107.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7252 navigationTree[index] = navElement;
michael@0 7253 index++;
michael@0 7254
michael@0 7255 setLevels();
michael@0 7256 var navElement = navigationLink("Bindery Object ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk115.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7257 navigationTree[index] = navElement;
michael@0 7258 index++;
michael@0 7259
michael@0 7260 setLevels();
michael@0 7261 var navElement = navigationLink("Bindery Queue ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk123.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7262 navigationTree[index] = navElement;
michael@0 7263 index++;
michael@0 7264
michael@0 7265 setLevels();
michael@0 7266 var navElement = navigationLink("certificationAuthority ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk131.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7267 navigationTree[index] = navElement;
michael@0 7268 index++;
michael@0 7269
michael@0 7270 setLevels();
michael@0 7271 var navElement = navigationLink("CommExec ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk139.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7272 navigationTree[index] = navElement;
michael@0 7273 index++;
michael@0 7274
michael@0 7275 setLevels();
michael@0 7276 var navElement = navigationLink("Computer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk147.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7277 navigationTree[index] = navElement;
michael@0 7278 index++;
michael@0 7279
michael@0 7280 setLevels();
michael@0 7281 var navElement = navigationLink("Country ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk155.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7282 navigationTree[index] = navElement;
michael@0 7283 index++;
michael@0 7284
michael@0 7285 setLevels();
michael@0 7286 var navElement = navigationLink("cRLDistributionPoint ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk163.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7287 navigationTree[index] = navElement;
michael@0 7288 index++;
michael@0 7289
michael@0 7290 setLevels();
michael@0 7291 var navElement = navigationLink("dcObject ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk171.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7292 navigationTree[index] = navElement;
michael@0 7293 index++;
michael@0 7294
michael@0 7295 setLevels();
michael@0 7296 var navElement = navigationLink("Device ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk179.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7297 navigationTree[index] = navElement;
michael@0 7298 index++;
michael@0 7299
michael@0 7300 setLevels();
michael@0 7301 var navElement = navigationLink("Directory Map ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk187.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7302 navigationTree[index] = navElement;
michael@0 7303 index++;
michael@0 7304
michael@0 7305 setLevels();
michael@0 7306 var navElement = navigationLink("domain ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk195.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7307 navigationTree[index] = navElement;
michael@0 7308 index++;
michael@0 7309
michael@0 7310 setLevels();
michael@0 7311 var navElement = navigationLink("dSA ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk203.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7312 navigationTree[index] = navElement;
michael@0 7313 index++;
michael@0 7314
michael@0 7315 setLevels();
michael@0 7316 var navElement = navigationLink("External Entity ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk219.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7317 navigationTree[index] = navElement;
michael@0 7318 index++;
michael@0 7319
michael@0 7320 setLevels();
michael@0 7321 var navElement = navigationLink("Group ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk227.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7322 navigationTree[index] = navElement;
michael@0 7323 index++;
michael@0 7324
michael@0 7325 setLevels();
michael@0 7326 var navElement = navigationLink("LDAP Group ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a38rj6z.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7327 navigationTree[index] = navElement;
michael@0 7328 index++;
michael@0 7329
michael@0 7330 setLevels();
michael@0 7331 var navElement = navigationLink("LDAP Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk243.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7332 navigationTree[index] = navElement;
michael@0 7333 index++;
michael@0 7334
michael@0 7335 setLevels();
michael@0 7336 var navElement = navigationLink("List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk251.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7337 navigationTree[index] = navElement;
michael@0 7338 index++;
michael@0 7339
michael@0 7340 setLevels();
michael@0 7341 var navElement = navigationLink("Locality ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk259.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7342 navigationTree[index] = navElement;
michael@0 7343 index++;
michael@0 7344
michael@0 7345 setLevels();
michael@0 7346 var navElement = navigationLink("MASV:Security Policy ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk267.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7347 navigationTree[index] = navElement;
michael@0 7348 index++;
michael@0 7349
michael@0 7350 setLevels();
michael@0 7351 var navElement = navigationLink("Message Routing Group ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk275.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7352 navigationTree[index] = navElement;
michael@0 7353 index++;
michael@0 7354
michael@0 7355 setLevels();
michael@0 7356 var navElement = navigationLink("Messaging Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk283.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7357 navigationTree[index] = navElement;
michael@0 7358 index++;
michael@0 7359
michael@0 7360 setLevels();
michael@0 7361 var navElement = navigationLink("NCP Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk291.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7362 navigationTree[index] = navElement;
michael@0 7363 index++;
michael@0 7364
michael@0 7365 setLevels();
michael@0 7366 var navElement = navigationLink("ndsLoginProperties ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk347.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7367 navigationTree[index] = navElement;
michael@0 7368 index++;
michael@0 7369
michael@0 7370 setLevels();
michael@0 7371 var navElement = navigationLink("NDSPKI:Certificate Authority ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk355.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7372 navigationTree[index] = navElement;
michael@0 7373 index++;
michael@0 7374
michael@0 7375 setLevels();
michael@0 7376 var navElement = navigationLink("NDSPKI:Key Material ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk363.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7377 navigationTree[index] = navElement;
michael@0 7378 index++;
michael@0 7379
michael@0 7380 setLevels();
michael@0 7381 var navElement = navigationLink("NDSPKI:SD Key Access Partition ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2okvd6.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7382 navigationTree[index] = navElement;
michael@0 7383 index++;
michael@0 7384
michael@0 7385 setLevels();
michael@0 7386 var navElement = navigationLink("NDSPKI:SD Key List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2okvdx.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7387 navigationTree[index] = navElement;
michael@0 7388 index++;
michael@0 7389
michael@0 7390 setLevels();
michael@0 7391 var navElement = navigationLink("NDSPKI:Trusted Root ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2okvbk.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7392 navigationTree[index] = navElement;
michael@0 7393 index++;
michael@0 7394
michael@0 7395 setLevels();
michael@0 7396 var navElement = navigationLink("NDSPKI:Trusted Root Object ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2okvcf.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7397 navigationTree[index] = navElement;
michael@0 7398 index++;
michael@0 7399
michael@0 7400 setLevels();
michael@0 7401 var navElement = navigationLink("NSCP:groupOfCertificates ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk421.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7402 navigationTree[index] = navElement;
michael@0 7403 index++;
michael@0 7404
michael@0 7405 setLevels();
michael@0 7406 var navElement = navigationLink("NSCP:mailGroup1 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk445.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7407 navigationTree[index] = navElement;
michael@0 7408 index++;
michael@0 7409
michael@0 7410 setLevels();
michael@0 7411 var navElement = navigationLink("NSCP:mailRecipient ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk466.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7412 navigationTree[index] = navElement;
michael@0 7413 index++;
michael@0 7414
michael@0 7415 setLevels();
michael@0 7416 var navElement = navigationLink("NSCP:NetscapeMailServer5 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk474.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7417 navigationTree[index] = navElement;
michael@0 7418 index++;
michael@0 7419
michael@0 7420 setLevels();
michael@0 7421 var navElement = navigationLink("NSCP:NetscapeServer5 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk482.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7422 navigationTree[index] = navElement;
michael@0 7423 index++;
michael@0 7424
michael@0 7425 setLevels();
michael@0 7426 var navElement = navigationLink("NSCP:nginfo3 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk510.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7427 navigationTree[index] = navElement;
michael@0 7428 index++;
michael@0 7429
michael@0 7430 setLevels();
michael@0 7431 var navElement = navigationLink("NSCP:nsLicenseUser ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk518.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7432 navigationTree[index] = navElement;
michael@0 7433 index++;
michael@0 7434
michael@0 7435 setLevels();
michael@0 7436 var navElement = navigationLink("Organization ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk530.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7437 navigationTree[index] = navElement;
michael@0 7438 index++;
michael@0 7439
michael@0 7440 setLevels();
michael@0 7441 var navElement = navigationLink("Organizational Person ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk541.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7442 navigationTree[index] = navElement;
michael@0 7443 index++;
michael@0 7444
michael@0 7445 setLevels();
michael@0 7446 var navElement = navigationLink("Organizational Role ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk550.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7447 navigationTree[index] = navElement;
michael@0 7448 index++;
michael@0 7449
michael@0 7450 setLevels();
michael@0 7451 var navElement = navigationLink("Organizational Unit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk561.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7452 navigationTree[index] = navElement;
michael@0 7453 index++;
michael@0 7454
michael@0 7455 setLevels();
michael@0 7456 var navElement = navigationLink("Partition ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk570.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7457 navigationTree[index] = navElement;
michael@0 7458 index++;
michael@0 7459
michael@0 7460 setLevels();
michael@0 7461 var navElement = navigationLink("Person ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk578.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7462 navigationTree[index] = navElement;
michael@0 7463 index++;
michael@0 7464
michael@0 7465 setLevels();
michael@0 7466 var navElement = navigationLink("pkiCA ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk586.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7467 navigationTree[index] = navElement;
michael@0 7468 index++;
michael@0 7469
michael@0 7470 setLevels();
michael@0 7471 var navElement = navigationLink("pkiUser ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk594.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7472 navigationTree[index] = navElement;
michael@0 7473 index++;
michael@0 7474
michael@0 7475 setLevels();
michael@0 7476 var navElement = navigationLink("Print Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk602.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7477 navigationTree[index] = navElement;
michael@0 7478 index++;
michael@0 7479
michael@0 7480 setLevels();
michael@0 7481 var navElement = navigationLink("Printer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk610.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7482 navigationTree[index] = navElement;
michael@0 7483 index++;
michael@0 7484
michael@0 7485 setLevels();
michael@0 7486 var navElement = navigationLink("Profile ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk618.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7487 navigationTree[index] = navElement;
michael@0 7488 index++;
michael@0 7489
michael@0 7490 setLevels();
michael@0 7491 var navElement = navigationLink("Queue ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk626.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7492 navigationTree[index] = navElement;
michael@0 7493 index++;
michael@0 7494
michael@0 7495 setLevels();
michael@0 7496 var navElement = navigationLink("Resource ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk634.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7497 navigationTree[index] = navElement;
michael@0 7498 index++;
michael@0 7499
michael@0 7500 setLevels();
michael@0 7501 var navElement = navigationLink("SAS:Security ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk642.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7502 navigationTree[index] = navElement;
michael@0 7503 index++;
michael@0 7504
michael@0 7505 setLevels();
michael@0 7506 var navElement = navigationLink("SAS:Service ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk650.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7507 navigationTree[index] = navElement;
michael@0 7508 index++;
michael@0 7509
michael@0 7510 setLevels();
michael@0 7511 var navElement = navigationLink("Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk658.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7512 navigationTree[index] = navElement;
michael@0 7513 index++;
michael@0 7514
michael@0 7515 setLevels();
michael@0 7516 var navElement = navigationLink("strongAuthenticationUser ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk698.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7517 navigationTree[index] = navElement;
michael@0 7518 index++;
michael@0 7519
michael@0 7520 setLevels();
michael@0 7521 var navElement = navigationLink("Template ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk706.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7522 navigationTree[index] = navElement;
michael@0 7523 index++;
michael@0 7524
michael@0 7525 setLevels();
michael@0 7526 var navElement = navigationLink("Top ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk714.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7527 navigationTree[index] = navElement;
michael@0 7528 index++;
michael@0 7529
michael@0 7530 setLevels();
michael@0 7531 var navElement = navigationLink("Tree Root ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk722.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7532 navigationTree[index] = navElement;
michael@0 7533 index++;
michael@0 7534
michael@0 7535 setLevels();
michael@0 7536 var navElement = navigationLink("Unknown ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk730.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7537 navigationTree[index] = navElement;
michael@0 7538 index++;
michael@0 7539
michael@0 7540 setLevels();
michael@0 7541 var navElement = navigationLink("User ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk738.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7542 navigationTree[index] = navElement;
michael@0 7543 index++;
michael@0 7544
michael@0 7545 setLevels();
michael@0 7546 var navElement = navigationLink("userSecurityInformation ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk746.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7547 navigationTree[index] = navElement;
michael@0 7548 index++;
michael@0 7549
michael@0 7550 setLevels();
michael@0 7551 var navElement = navigationLink("Volume ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk754.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7552 navigationTree[index] = navElement;
michael@0 7553 index++;
michael@0 7554
michael@0 7555 setLevels();
michael@0 7556 var navElement = navigationLink("WANMAN:LAN Area ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk762.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7557 navigationTree[index] = navElement;
michael@0 7558 index++;
michael@0 7559
michael@0 7560 if (currentLevel > 1) currentLevel--
michael@0 7561
michael@0 7562 setLevels();
michael@0 7563 var navElement = navigationLink("Novell Object Class Extensions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3fh4x1.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7564 navigationTree[index] = navElement;
michael@0 7565 index++;
michael@0 7566
michael@0 7567 currentLevel++;
michael@0 7568
michael@0 7569 setLevels();
michael@0 7570 var navElement = navigationLink("Entrust:CRLDistributionPoint ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk211.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7571 navigationTree[index] = navElement;
michael@0 7572 index++;
michael@0 7573
michael@0 7574 setLevels();
michael@0 7575 var navElement = navigationLink("inetOrgPerson ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk235.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7576 navigationTree[index] = navElement;
michael@0 7577 index++;
michael@0 7578
michael@0 7579 setLevels();
michael@0 7580 var navElement = navigationLink("NDPS Broker ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk299.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7581 navigationTree[index] = navElement;
michael@0 7582 index++;
michael@0 7583
michael@0 7584 setLevels();
michael@0 7585 var navElement = navigationLink("NDPS Manager ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk307.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7586 navigationTree[index] = navElement;
michael@0 7587 index++;
michael@0 7588
michael@0 7589 setLevels();
michael@0 7590 var navElement = navigationLink("NDPS Printer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk315.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7591 navigationTree[index] = navElement;
michael@0 7592 index++;
michael@0 7593
michael@0 7594 setLevels();
michael@0 7595 var navElement = navigationLink("NDSCat:Catalog ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk323.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7596 navigationTree[index] = navElement;
michael@0 7597 index++;
michael@0 7598
michael@0 7599 setLevels();
michael@0 7600 var navElement = navigationLink("NDSCat:Master Catalog ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk331.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7601 navigationTree[index] = navElement;
michael@0 7602 index++;
michael@0 7603
michael@0 7604 setLevels();
michael@0 7605 var navElement = navigationLink("NDSCat:Slave Catalog ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk339.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7606 navigationTree[index] = navElement;
michael@0 7607 index++;
michael@0 7608
michael@0 7609 setLevels();
michael@0 7610 var navElement = navigationLink("NetSvc ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk379.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7611 navigationTree[index] = navElement;
michael@0 7612 index++;
michael@0 7613
michael@0 7614 setLevels();
michael@0 7615 var navElement = navigationLink("NLS:License Certificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk386.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7616 navigationTree[index] = navElement;
michael@0 7617 index++;
michael@0 7618
michael@0 7619 setLevels();
michael@0 7620 var navElement = navigationLink("NLS:License Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk394.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7621 navigationTree[index] = navElement;
michael@0 7622 index++;
michael@0 7623
michael@0 7624 setLevels();
michael@0 7625 var navElement = navigationLink("NLS:Product Container ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk412.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7626 navigationTree[index] = navElement;
michael@0 7627 index++;
michael@0 7628
michael@0 7629 setLevels();
michael@0 7630 var navElement = navigationLink("NSCP:groupOfUniqueNames5 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk432.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7631 navigationTree[index] = navElement;
michael@0 7632 index++;
michael@0 7633
michael@0 7634 setLevels();
michael@0 7635 var navElement = navigationLink("NSCP:mailGroup5 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk454.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7636 navigationTree[index] = navElement;
michael@0 7637 index++;
michael@0 7638
michael@0 7639 setLevels();
michael@0 7640 var navElement = navigationLink("NSCP:Nginfo ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk491.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7641 navigationTree[index] = navElement;
michael@0 7642 index++;
michael@0 7643
michael@0 7644 setLevels();
michael@0 7645 var navElement = navigationLink("NSCP:Nginfo2 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk502.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7646 navigationTree[index] = navElement;
michael@0 7647 index++;
michael@0 7648
michael@0 7649 setLevels();
michael@0 7650 var navElement = navigationLink("residentialPerson ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3omhcl.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7651 navigationTree[index] = navElement;
michael@0 7652 index++;
michael@0 7653
michael@0 7654 setLevels();
michael@0 7655 var navElement = navigationLink("SLP Scope Unit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk666.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7656 navigationTree[index] = navElement;
michael@0 7657 index++;
michael@0 7658
michael@0 7659 setLevels();
michael@0 7660 var navElement = navigationLink("SLP Directory Agent ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk674.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7661 navigationTree[index] = navElement;
michael@0 7662 index++;
michael@0 7663
michael@0 7664 setLevels();
michael@0 7665 var navElement = navigationLink("SLP Service ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk682.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7666 navigationTree[index] = navElement;
michael@0 7667 index++;
michael@0 7668
michael@0 7669 setLevels();
michael@0 7670 var navElement = navigationLink("SMS SMDR Class ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk690.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7671 navigationTree[index] = navElement;
michael@0 7672 index++;
michael@0 7673
michael@0 7674 if (currentLevel > 1) currentLevel--
michael@0 7675
michael@0 7676 setLevels();
michael@0 7677 var navElement = navigationLink("Graphical View of Object Class Inheritance ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hzah4ydk.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7678 navigationTree[index] = navElement;
michael@0 7679 index++;
michael@0 7680
michael@0 7681 currentLevel++;
michael@0 7682
michael@0 7683 setLevels();
michael@0 7684 var navElement = navigationLink("Alias and Bindery Object Classes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hw8hr9jx.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7685 navigationTree[index] = navElement;
michael@0 7686 index++;
michael@0 7687
michael@0 7688 setLevels();
michael@0 7689 var navElement = navigationLink("Tree Root, domain, and Unknown ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hu1mitlx.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7690 navigationTree[index] = navElement;
michael@0 7691 index++;
michael@0 7692
michael@0 7693 setLevels();
michael@0 7694 var navElement = navigationLink("Computer, Country, Device, and Printer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hnf7uif9.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7695 navigationTree[index] = navElement;
michael@0 7696 index++;
michael@0 7697
michael@0 7698 setLevels();
michael@0 7699 var navElement = navigationLink("List and Locality ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h48ynbap.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7700 navigationTree[index] = navElement;
michael@0 7701 index++;
michael@0 7702
michael@0 7703 setLevels();
michael@0 7704 var navElement = navigationLink("Organizational Role and Partition ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hrfg9w4e.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7705 navigationTree[index] = navElement;
michael@0 7706 index++;
michael@0 7707
michael@0 7708 setLevels();
michael@0 7709 var navElement = navigationLink("ndsLoginProperties, Organization, and Organizational Unit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hzvb48kg.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7710 navigationTree[index] = navElement;
michael@0 7711 index++;
michael@0 7712
michael@0 7713 setLevels();
michael@0 7714 var navElement = navigationLink("ndsLoginProperties, Person, Organizational Person, and User ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hknzjmiv.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7715 navigationTree[index] = navElement;
michael@0 7716 index++;
michael@0 7717
michael@0 7718 setLevels();
michael@0 7719 var navElement = navigationLink("Directory Map, Profile, Queues, Resource, and Volume ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h8jovuwl.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7720 navigationTree[index] = navElement;
michael@0 7721 index++;
michael@0 7722
michael@0 7723 setLevels();
michael@0 7724 var navElement = navigationLink("Servers (AFP, Messaging, NCP, Print) and CommExec ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/ha47y85g.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7725 navigationTree[index] = navElement;
michael@0 7726 index++;
michael@0 7727
michael@0 7728 setLevels();
michael@0 7729 var navElement = navigationLink("External Entity, Group, and Message Routing Group ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hds3w6ie.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7730 navigationTree[index] = navElement;
michael@0 7731 index++;
michael@0 7732
michael@0 7733 if (currentLevel > 1) currentLevel--
michael@0 7734
michael@0 7735 setLevels();
michael@0 7736 var navElement = navigationLink("Base Attribute Definitions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hf9qbbni.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7737 navigationTree[index] = navElement;
michael@0 7738 index++;
michael@0 7739
michael@0 7740 currentLevel++;
michael@0 7741
michael@0 7742 setLevels();
michael@0 7743 var navElement = navigationLink("Aliased Object Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk782.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7744 navigationTree[index] = navElement;
michael@0 7745 index++;
michael@0 7746
michael@0 7747 setLevels();
michael@0 7748 var navElement = navigationLink("Account Balance ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk788.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7749 navigationTree[index] = navElement;
michael@0 7750 index++;
michael@0 7751
michael@0 7752 setLevels();
michael@0 7753 var navElement = navigationLink("ACL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk794.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7754 navigationTree[index] = navElement;
michael@0 7755 index++;
michael@0 7756
michael@0 7757 setLevels();
michael@0 7758 var navElement = navigationLink("Allow Unlimited Credit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk800.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7759 navigationTree[index] = navElement;
michael@0 7760 index++;
michael@0 7761
michael@0 7762 setLevels();
michael@0 7763 var navElement = navigationLink("associatedName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a7bbra4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7764 navigationTree[index] = navElement;
michael@0 7765 index++;
michael@0 7766
michael@0 7767 setLevels();
michael@0 7768 var navElement = navigationLink("attributeCertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk806.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7769 navigationTree[index] = navElement;
michael@0 7770 index++;
michael@0 7771
michael@0 7772 setLevels();
michael@0 7773 var navElement = navigationLink("Audit:A Encryption Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk812.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7774 navigationTree[index] = navElement;
michael@0 7775 index++;
michael@0 7776
michael@0 7777 setLevels();
michael@0 7778 var navElement = navigationLink("Audit:B Encryption Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk818.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7779 navigationTree[index] = navElement;
michael@0 7780 index++;
michael@0 7781
michael@0 7782 setLevels();
michael@0 7783 var navElement = navigationLink("Audit:Contents ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk824.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7784 navigationTree[index] = navElement;
michael@0 7785 index++;
michael@0 7786
michael@0 7787 setLevels();
michael@0 7788 var navElement = navigationLink("Audit:Current Encryption Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk830.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7789 navigationTree[index] = navElement;
michael@0 7790 index++;
michael@0 7791
michael@0 7792 setLevels();
michael@0 7793 var navElement = navigationLink("Audit:File Link ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk836.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7794 navigationTree[index] = navElement;
michael@0 7795 index++;
michael@0 7796
michael@0 7797 setLevels();
michael@0 7798 var navElement = navigationLink("Audit:Link List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk842.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7799 navigationTree[index] = navElement;
michael@0 7800 index++;
michael@0 7801
michael@0 7802 setLevels();
michael@0 7803 var navElement = navigationLink("Audit:Path ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk848.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7804 navigationTree[index] = navElement;
michael@0 7805 index++;
michael@0 7806
michael@0 7807 setLevels();
michael@0 7808 var navElement = navigationLink("Audit:Policy ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk854.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7809 navigationTree[index] = navElement;
michael@0 7810 index++;
michael@0 7811
michael@0 7812 setLevels();
michael@0 7813 var navElement = navigationLink("Audit:Type ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk860.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7814 navigationTree[index] = navElement;
michael@0 7815 index++;
michael@0 7816
michael@0 7817 setLevels();
michael@0 7818 var navElement = navigationLink("authorityRevocationList ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk866.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7819 navigationTree[index] = navElement;
michael@0 7820 index++;
michael@0 7821
michael@0 7822 setLevels();
michael@0 7823 var navElement = navigationLink("Authority Revocation ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk872.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7824 navigationTree[index] = navElement;
michael@0 7825 index++;
michael@0 7826
michael@0 7827 setLevels();
michael@0 7828 var navElement = navigationLink("AuxClass Object Class Backup ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk878.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7829 navigationTree[index] = navElement;
michael@0 7830 index++;
michael@0 7831
michael@0 7832 setLevels();
michael@0 7833 var navElement = navigationLink("Auxiliary Class Flag ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk884.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7834 navigationTree[index] = navElement;
michael@0 7835 index++;
michael@0 7836
michael@0 7837 setLevels();
michael@0 7838 var navElement = navigationLink("Back Link ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk890.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7839 navigationTree[index] = navElement;
michael@0 7840 index++;
michael@0 7841
michael@0 7842 setLevels();
michael@0 7843 var navElement = navigationLink("Bindery Object Restriction ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk896.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7844 navigationTree[index] = navElement;
michael@0 7845 index++;
michael@0 7846
michael@0 7847 setLevels();
michael@0 7848 var navElement = navigationLink("Bindery Property ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk902.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7849 navigationTree[index] = navElement;
michael@0 7850 index++;
michael@0 7851
michael@0 7852 setLevels();
michael@0 7853 var navElement = navigationLink("Bindery Restriction Level ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk908.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7854 navigationTree[index] = navElement;
michael@0 7855 index++;
michael@0 7856
michael@0 7857 setLevels();
michael@0 7858 var navElement = navigationLink("Bindery Type ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk914.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7859 navigationTree[index] = navElement;
michael@0 7860 index++;
michael@0 7861
michael@0 7862 setLevels();
michael@0 7863 var navElement = navigationLink("businessCategory ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk920.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7864 navigationTree[index] = navElement;
michael@0 7865 index++;
michael@0 7866
michael@0 7867 setLevels();
michael@0 7868 var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk932.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7869 navigationTree[index] = navElement;
michael@0 7870 index++;
michael@0 7871
michael@0 7872 setLevels();
michael@0 7873 var navElement = navigationLink("cACertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk938.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7874 navigationTree[index] = navElement;
michael@0 7875 index++;
michael@0 7876
michael@0 7877 setLevels();
michael@0 7878 var navElement = navigationLink("CA Private Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk944.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7879 navigationTree[index] = navElement;
michael@0 7880 index++;
michael@0 7881
michael@0 7882 setLevels();
michael@0 7883 var navElement = navigationLink("CA Public Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk950.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7884 navigationTree[index] = navElement;
michael@0 7885 index++;
michael@0 7886
michael@0 7887 setLevels();
michael@0 7888 var navElement = navigationLink("Cartridge ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk956.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7889 navigationTree[index] = navElement;
michael@0 7890 index++;
michael@0 7891
michael@0 7892 setLevels();
michael@0 7893 var navElement = navigationLink("certificateRevocationList ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk962.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7894 navigationTree[index] = navElement;
michael@0 7895 index++;
michael@0 7896
michael@0 7897 setLevels();
michael@0 7898 var navElement = navigationLink("Certificate Revocation ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk968.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7899 navigationTree[index] = navElement;
michael@0 7900 index++;
michael@0 7901
michael@0 7902 setLevels();
michael@0 7903 var navElement = navigationLink("Certificate Validity Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk974.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7904 navigationTree[index] = navElement;
michael@0 7905 index++;
michael@0 7906
michael@0 7907 setLevels();
michael@0 7908 var navElement = navigationLink("crossCertificatePair ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk926.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7909 navigationTree[index] = navElement;
michael@0 7910 index++;
michael@0 7911
michael@0 7912 setLevels();
michael@0 7913 var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk986.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7914 navigationTree[index] = navElement;
michael@0 7915 index++;
michael@0 7916
michael@0 7917 setLevels();
michael@0 7918 var navElement = navigationLink("Convergence ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk998.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7919 navigationTree[index] = navElement;
michael@0 7920 index++;
michael@0 7921
michael@0 7922 setLevels();
michael@0 7923 var navElement = navigationLink("Cross Certificate Pair ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1004.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7924 navigationTree[index] = navElement;
michael@0 7925 index++;
michael@0 7926
michael@0 7927 setLevels();
michael@0 7928 var navElement = navigationLink("dc ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1034.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7929 navigationTree[index] = navElement;
michael@0 7930 index++;
michael@0 7931
michael@0 7932 setLevels();
michael@0 7933 var navElement = navigationLink("Default Queue ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1040.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7934 navigationTree[index] = navElement;
michael@0 7935 index++;
michael@0 7936
michael@0 7937 setLevels();
michael@0 7938 var navElement = navigationLink("deltaRevocationList ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1052.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7939 navigationTree[index] = navElement;
michael@0 7940 index++;
michael@0 7941
michael@0 7942 setLevels();
michael@0 7943 var navElement = navigationLink("departmentNumber ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3on5am.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7944 navigationTree[index] = navElement;
michael@0 7945 index++;
michael@0 7946
michael@0 7947 setLevels();
michael@0 7948 var navElement = navigationLink("Description ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1058.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7949 navigationTree[index] = navElement;
michael@0 7950 index++;
michael@0 7951
michael@0 7952 setLevels();
michael@0 7953 var navElement = navigationLink("destinationIndicator ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1064.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7954 navigationTree[index] = navElement;
michael@0 7955 index++;
michael@0 7956
michael@0 7957 setLevels();
michael@0 7958 var navElement = navigationLink("Detect Intruder ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1070.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7959 navigationTree[index] = navElement;
michael@0 7960 index++;
michael@0 7961
michael@0 7962 setLevels();
michael@0 7963 var navElement = navigationLink("Device ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1076.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7964 navigationTree[index] = navElement;
michael@0 7965 index++;
michael@0 7966
michael@0 7967 setLevels();
michael@0 7968 var navElement = navigationLink("dmdName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1082.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7969 navigationTree[index] = navElement;
michael@0 7970 index++;
michael@0 7971
michael@0 7972 setLevels();
michael@0 7973 var navElement = navigationLink("dn ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1088.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7974 navigationTree[index] = navElement;
michael@0 7975 index++;
michael@0 7976
michael@0 7977 setLevels();
michael@0 7978 var navElement = navigationLink("dnQualifier ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1094.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7979 navigationTree[index] = navElement;
michael@0 7980 index++;
michael@0 7981
michael@0 7982 setLevels();
michael@0 7983 var navElement = navigationLink("DS Revision ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1100.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7984 navigationTree[index] = navElement;
michael@0 7985 index++;
michael@0 7986
michael@0 7987 setLevels();
michael@0 7988 var navElement = navigationLink("EMail Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1106.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7989 navigationTree[index] = navElement;
michael@0 7990 index++;
michael@0 7991
michael@0 7992 setLevels();
michael@0 7993 var navElement = navigationLink("employeeType ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3on9iy.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7994 navigationTree[index] = navElement;
michael@0 7995 index++;
michael@0 7996
michael@0 7997 setLevels();
michael@0 7998 var navElement = navigationLink("enhancedSearchGuide ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1120.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 7999 navigationTree[index] = navElement;
michael@0 8000 index++;
michael@0 8001
michael@0 8002 setLevels();
michael@0 8003 var navElement = navigationLink("Equivalent To Me ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1138.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8004 navigationTree[index] = navElement;
michael@0 8005 index++;
michael@0 8006
michael@0 8007 setLevels();
michael@0 8008 var navElement = navigationLink("External Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1144.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8009 navigationTree[index] = navElement;
michael@0 8010 index++;
michael@0 8011
michael@0 8012 setLevels();
michael@0 8013 var navElement = navigationLink("External Synchronizer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1150.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8014 navigationTree[index] = navElement;
michael@0 8015 index++;
michael@0 8016
michael@0 8017 setLevels();
michael@0 8018 var navElement = navigationLink("Facsimile Telephone Number ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1156.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8019 navigationTree[index] = navElement;
michael@0 8020 index++;
michael@0 8021
michael@0 8022 setLevels();
michael@0 8023 var navElement = navigationLink("Full Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1162.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8024 navigationTree[index] = navElement;
michael@0 8025 index++;
michael@0 8026
michael@0 8027 setLevels();
michael@0 8028 var navElement = navigationLink("Generational Qualifier ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1168.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8029 navigationTree[index] = navElement;
michael@0 8030 index++;
michael@0 8031
michael@0 8032 setLevels();
michael@0 8033 var navElement = navigationLink("generationQualifier ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1174.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8034 navigationTree[index] = navElement;
michael@0 8035 index++;
michael@0 8036
michael@0 8037 setLevels();
michael@0 8038 var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1180.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8039 navigationTree[index] = navElement;
michael@0 8040 index++;
michael@0 8041
michael@0 8042 setLevels();
michael@0 8043 var navElement = navigationLink("Given Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1186.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8044 navigationTree[index] = navElement;
michael@0 8045 index++;
michael@0 8046
michael@0 8047 setLevels();
michael@0 8048 var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1192.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8049 navigationTree[index] = navElement;
michael@0 8050 index++;
michael@0 8051
michael@0 8052 setLevels();
michael@0 8053 var navElement = navigationLink("GUID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1198.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8054 navigationTree[index] = navElement;
michael@0 8055 index++;
michael@0 8056
michael@0 8057 setLevels();
michael@0 8058 var navElement = navigationLink("High Convergence Sync Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1216.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8059 navigationTree[index] = navElement;
michael@0 8060 index++;
michael@0 8061
michael@0 8062 setLevels();
michael@0 8063 var navElement = navigationLink("Higher Privileges ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1222.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8064 navigationTree[index] = navElement;
michael@0 8065 index++;
michael@0 8066
michael@0 8067 setLevels();
michael@0 8068 var navElement = navigationLink("Home Directory ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1228.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8069 navigationTree[index] = navElement;
michael@0 8070 index++;
michael@0 8071
michael@0 8072 setLevels();
michael@0 8073 var navElement = navigationLink("Home Directory Rights ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1234.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8074 navigationTree[index] = navElement;
michael@0 8075 index++;
michael@0 8076
michael@0 8077 setLevels();
michael@0 8078 var navElement = navigationLink("homePhone ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3onbgn.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8079 navigationTree[index] = navElement;
michael@0 8080 index++;
michael@0 8081
michael@0 8082 setLevels();
michael@0 8083 var navElement = navigationLink("homePostalAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3ondem.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8084 navigationTree[index] = navElement;
michael@0 8085 index++;
michael@0 8086
michael@0 8087 setLevels();
michael@0 8088 var navElement = navigationLink("houseIdentifier ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1258.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8089 navigationTree[index] = navElement;
michael@0 8090 index++;
michael@0 8091
michael@0 8092 setLevels();
michael@0 8093 var navElement = navigationLink("Host Device ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1240.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8094 navigationTree[index] = navElement;
michael@0 8095 index++;
michael@0 8096
michael@0 8097 setLevels();
michael@0 8098 var navElement = navigationLink("Host Resource Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1246.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8099 navigationTree[index] = navElement;
michael@0 8100 index++;
michael@0 8101
michael@0 8102 setLevels();
michael@0 8103 var navElement = navigationLink("Host Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1252.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8104 navigationTree[index] = navElement;
michael@0 8105 index++;
michael@0 8106
michael@0 8107 setLevels();
michael@0 8108 var navElement = navigationLink("Inherited ACL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1264.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8109 navigationTree[index] = navElement;
michael@0 8110 index++;
michael@0 8111
michael@0 8112 setLevels();
michael@0 8113 var navElement = navigationLink("Initials ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1270.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8114 navigationTree[index] = navElement;
michael@0 8115 index++;
michael@0 8116
michael@0 8117 setLevels();
michael@0 8118 var navElement = navigationLink("internationaliSDNNumber ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1276.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8119 navigationTree[index] = navElement;
michael@0 8120 index++;
michael@0 8121
michael@0 8122 setLevels();
michael@0 8123 var navElement = navigationLink("Internet EMail Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1282.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8124 navigationTree[index] = navElement;
michael@0 8125 index++;
michael@0 8126
michael@0 8127 setLevels();
michael@0 8128 var navElement = navigationLink("Intruder Attempt Reset Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1288.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8129 navigationTree[index] = navElement;
michael@0 8130 index++;
michael@0 8131
michael@0 8132 setLevels();
michael@0 8133 var navElement = navigationLink("Intruder Lockout Reset Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1294.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8134 navigationTree[index] = navElement;
michael@0 8135 index++;
michael@0 8136
michael@0 8137 setLevels();
michael@0 8138 var navElement = navigationLink("knowledgeInformation ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1312.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8139 navigationTree[index] = navElement;
michael@0 8140 index++;
michael@0 8141
michael@0 8142 setLevels();
michael@0 8143 var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1318.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8144 navigationTree[index] = navElement;
michael@0 8145 index++;
michael@0 8146
michael@0 8147 setLevels();
michael@0 8148 var navElement = navigationLink("Language ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1324.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8149 navigationTree[index] = navElement;
michael@0 8150 index++;
michael@0 8151
michael@0 8152 setLevels();
michael@0 8153 var navElement = navigationLink("Last Login Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1330.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8154 navigationTree[index] = navElement;
michael@0 8155 index++;
michael@0 8156
michael@0 8157 setLevels();
michael@0 8158 var navElement = navigationLink("Last Referenced Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1336.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8159 navigationTree[index] = navElement;
michael@0 8160 index++;
michael@0 8161
michael@0 8162 setLevels();
michael@0 8163 var navElement = navigationLink("LDAP ACL v11 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1342.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8164 navigationTree[index] = navElement;
michael@0 8165 index++;
michael@0 8166
michael@0 8167 setLevels();
michael@0 8168 var navElement = navigationLink("LDAP Allow Clear Text Password ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1348.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8169 navigationTree[index] = navElement;
michael@0 8170 index++;
michael@0 8171
michael@0 8172 setLevels();
michael@0 8173 var navElement = navigationLink("LDAP Anonymous Identity ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1354.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8174 navigationTree[index] = navElement;
michael@0 8175 index++;
michael@0 8176
michael@0 8177 setLevels();
michael@0 8178 var navElement = navigationLink("LDAP Attribute Map v11 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1360.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8179 navigationTree[index] = navElement;
michael@0 8180 index++;
michael@0 8181
michael@0 8182 setLevels();
michael@0 8183 var navElement = navigationLink("LDAP Backup Log Filename ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1366.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8184 navigationTree[index] = navElement;
michael@0 8185 index++;
michael@0 8186
michael@0 8187 setLevels();
michael@0 8188 var navElement = navigationLink("LDAP Class Map v11 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1378.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8189 navigationTree[index] = navElement;
michael@0 8190 index++;
michael@0 8191
michael@0 8192 setLevels();
michael@0 8193 var navElement = navigationLink("LDAP Enable SSL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1384.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8194 navigationTree[index] = navElement;
michael@0 8195 index++;
michael@0 8196
michael@0 8197 setLevels();
michael@0 8198 var navElement = navigationLink("LDAP Enable TCP ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1390.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8199 navigationTree[index] = navElement;
michael@0 8200 index++;
michael@0 8201
michael@0 8202 setLevels();
michael@0 8203 var navElement = navigationLink("LDAP Enable UDP ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1396.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8204 navigationTree[index] = navElement;
michael@0 8205 index++;
michael@0 8206
michael@0 8207 setLevels();
michael@0 8208 var navElement = navigationLink("LDAP Group ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1402.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8209 navigationTree[index] = navElement;
michael@0 8210 index++;
michael@0 8211
michael@0 8212 setLevels();
michael@0 8213 var navElement = navigationLink("LDAP Host Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1408.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8214 navigationTree[index] = navElement;
michael@0 8215 index++;
michael@0 8216
michael@0 8217 setLevels();
michael@0 8218 var navElement = navigationLink("LDAP Log Filename ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1414.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8219 navigationTree[index] = navElement;
michael@0 8220 index++;
michael@0 8221
michael@0 8222 setLevels();
michael@0 8223 var navElement = navigationLink("LDAP Log Level ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1420.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8224 navigationTree[index] = navElement;
michael@0 8225 index++;
michael@0 8226
michael@0 8227 setLevels();
michael@0 8228 var navElement = navigationLink("LDAP Log Size Limit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1426.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8229 navigationTree[index] = navElement;
michael@0 8230 index++;
michael@0 8231
michael@0 8232 setLevels();
michael@0 8233 var navElement = navigationLink("LDAP Referral ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1432.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8234 navigationTree[index] = navElement;
michael@0 8235 index++;
michael@0 8236
michael@0 8237 setLevels();
michael@0 8238 var navElement = navigationLink("LDAP Screen Level ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1438.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8239 navigationTree[index] = navElement;
michael@0 8240 index++;
michael@0 8241
michael@0 8242 setLevels();
michael@0 8243 var navElement = navigationLink("LDAP Search Size Limit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1444.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8244 navigationTree[index] = navElement;
michael@0 8245 index++;
michael@0 8246
michael@0 8247 setLevels();
michael@0 8248 var navElement = navigationLink("LDAP Search Time Limit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1450.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8249 navigationTree[index] = navElement;
michael@0 8250 index++;
michael@0 8251
michael@0 8252 setLevels();
michael@0 8253 var navElement = navigationLink("LDAP Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1456.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8254 navigationTree[index] = navElement;
michael@0 8255 index++;
michael@0 8256
michael@0 8257 setLevels();
michael@0 8258 var navElement = navigationLink("LDAP Server Bind Limit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1462.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8259 navigationTree[index] = navElement;
michael@0 8260 index++;
michael@0 8261
michael@0 8262 setLevels();
michael@0 8263 var navElement = navigationLink("LDAP Server Idle Timeout ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1468.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8264 navigationTree[index] = navElement;
michael@0 8265 index++;
michael@0 8266
michael@0 8267 setLevels();
michael@0 8268 var navElement = navigationLink("LDAP Server List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1474.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8269 navigationTree[index] = navElement;
michael@0 8270 index++;
michael@0 8271
michael@0 8272 setLevels();
michael@0 8273 var navElement = navigationLink("LDAP SSL Port ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1480.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8274 navigationTree[index] = navElement;
michael@0 8275 index++;
michael@0 8276
michael@0 8277 setLevels();
michael@0 8278 var navElement = navigationLink("LDAP Suffix ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1486.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8279 navigationTree[index] = navElement;
michael@0 8280 index++;
michael@0 8281
michael@0 8282 setLevels();
michael@0 8283 var navElement = navigationLink("LDAP TCP Port ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1492.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8284 navigationTree[index] = navElement;
michael@0 8285 index++;
michael@0 8286
michael@0 8287 setLevels();
michael@0 8288 var navElement = navigationLink("LDAP UDP Port ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1498.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8289 navigationTree[index] = navElement;
michael@0 8290 index++;
michael@0 8291
michael@0 8292 setLevels();
michael@0 8293 var navElement = navigationLink("LDAP:bindCatalog ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1516.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8294 navigationTree[index] = navElement;
michael@0 8295 index++;
michael@0 8296
michael@0 8297 setLevels();
michael@0 8298 var navElement = navigationLink("LDAP:bindCatalogUsage ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1522.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8299 navigationTree[index] = navElement;
michael@0 8300 index++;
michael@0 8301
michael@0 8302 setLevels();
michael@0 8303 var navElement = navigationLink("LDAP:keyMaterialName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1546.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8304 navigationTree[index] = navElement;
michael@0 8305 index++;
michael@0 8306
michael@0 8307 setLevels();
michael@0 8308 var navElement = navigationLink("LDAP:otherReferralUsage ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1552.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8309 navigationTree[index] = navElement;
michael@0 8310 index++;
michael@0 8311
michael@0 8312 setLevels();
michael@0 8313 var navElement = navigationLink("LDAP:searchCatalog ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1558.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8314 navigationTree[index] = navElement;
michael@0 8315 index++;
michael@0 8316
michael@0 8317 setLevels();
michael@0 8318 var navElement = navigationLink("LDAP:searchCatalogUsage ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1564.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8319 navigationTree[index] = navElement;
michael@0 8320 index++;
michael@0 8321
michael@0 8322 setLevels();
michael@0 8323 var navElement = navigationLink("LDAP:searchReferralUsage ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1570.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8324 navigationTree[index] = navElement;
michael@0 8325 index++;
michael@0 8326
michael@0 8327 setLevels();
michael@0 8328 var navElement = navigationLink("Locked By Intruder ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1576.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8329 navigationTree[index] = navElement;
michael@0 8330 index++;
michael@0 8331
michael@0 8332 setLevels();
michael@0 8333 var navElement = navigationLink("Lockout After Detection ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1582.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8334 navigationTree[index] = navElement;
michael@0 8335 index++;
michael@0 8336
michael@0 8337 setLevels();
michael@0 8338 var navElement = navigationLink("Login Allowed Time Map ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1588.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8339 navigationTree[index] = navElement;
michael@0 8340 index++;
michael@0 8341
michael@0 8342 setLevels();
michael@0 8343 var navElement = navigationLink("Login Disabled ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1594.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8344 navigationTree[index] = navElement;
michael@0 8345 index++;
michael@0 8346
michael@0 8347 setLevels();
michael@0 8348 var navElement = navigationLink("Login Expiration Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1600.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8349 navigationTree[index] = navElement;
michael@0 8350 index++;
michael@0 8351
michael@0 8352 setLevels();
michael@0 8353 var navElement = navigationLink("Login Grace Limit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1606.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8354 navigationTree[index] = navElement;
michael@0 8355 index++;
michael@0 8356
michael@0 8357 setLevels();
michael@0 8358 var navElement = navigationLink("Login Grace Remaining ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1612.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8359 navigationTree[index] = navElement;
michael@0 8360 index++;
michael@0 8361
michael@0 8362 setLevels();
michael@0 8363 var navElement = navigationLink("Login Intruder Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1618.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8364 navigationTree[index] = navElement;
michael@0 8365 index++;
michael@0 8366
michael@0 8367 setLevels();
michael@0 8368 var navElement = navigationLink("Login Intruder Attempts ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1624.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8369 navigationTree[index] = navElement;
michael@0 8370 index++;
michael@0 8371
michael@0 8372 setLevels();
michael@0 8373 var navElement = navigationLink("Login Intruder Limit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1630.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8374 navigationTree[index] = navElement;
michael@0 8375 index++;
michael@0 8376
michael@0 8377 setLevels();
michael@0 8378 var navElement = navigationLink("Login Intruder Reset Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1636.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8379 navigationTree[index] = navElement;
michael@0 8380 index++;
michael@0 8381
michael@0 8382 setLevels();
michael@0 8383 var navElement = navigationLink("Login Maximum Simultaneous ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1642.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8384 navigationTree[index] = navElement;
michael@0 8385 index++;
michael@0 8386
michael@0 8387 setLevels();
michael@0 8388 var navElement = navigationLink("Login Script ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1648.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8389 navigationTree[index] = navElement;
michael@0 8390 index++;
michael@0 8391
michael@0 8392 setLevels();
michael@0 8393 var navElement = navigationLink("Login Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1654.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8394 navigationTree[index] = navElement;
michael@0 8395 index++;
michael@0 8396
michael@0 8397 setLevels();
michael@0 8398 var navElement = navigationLink("Low Convergence Reset Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1660.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8399 navigationTree[index] = navElement;
michael@0 8400 index++;
michael@0 8401
michael@0 8402 setLevels();
michael@0 8403 var navElement = navigationLink("Low Convergence Sync Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1666.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8404 navigationTree[index] = navElement;
michael@0 8405 index++;
michael@0 8406
michael@0 8407 setLevels();
michael@0 8408 var navElement = navigationLink("Mailbox ID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1672.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8409 navigationTree[index] = navElement;
michael@0 8410 index++;
michael@0 8411
michael@0 8412 setLevels();
michael@0 8413 var navElement = navigationLink("Mailbox Location ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1678.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8414 navigationTree[index] = navElement;
michael@0 8415 index++;
michael@0 8416
michael@0 8417 setLevels();
michael@0 8418 var navElement = navigationLink("manager ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3onljj.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8419 navigationTree[index] = navElement;
michael@0 8420 index++;
michael@0 8421
michael@0 8422 setLevels();
michael@0 8423 var navElement = navigationLink("masvAuthorizedRange ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1684.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8424 navigationTree[index] = navElement;
michael@0 8425 index++;
michael@0 8426
michael@0 8427 setLevels();
michael@0 8428 var navElement = navigationLink("masvDefaultRange ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1690.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8429 navigationTree[index] = navElement;
michael@0 8430 index++;
michael@0 8431
michael@0 8432 setLevels();
michael@0 8433 var navElement = navigationLink("masvDomainPolicy ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1696.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8434 navigationTree[index] = navElement;
michael@0 8435 index++;
michael@0 8436
michael@0 8437 setLevels();
michael@0 8438 var navElement = navigationLink("masvLabel ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1702.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8439 navigationTree[index] = navElement;
michael@0 8440 index++;
michael@0 8441
michael@0 8442 setLevels();
michael@0 8443 var navElement = navigationLink("masvProposedLabel ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1708.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8444 navigationTree[index] = navElement;
michael@0 8445 index++;
michael@0 8446
michael@0 8447 setLevels();
michael@0 8448 var navElement = navigationLink("Member ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1726.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8449 navigationTree[index] = navElement;
michael@0 8450 index++;
michael@0 8451
michael@0 8452 setLevels();
michael@0 8453 var navElement = navigationLink("Members Of Template ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1732.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8454 navigationTree[index] = navElement;
michael@0 8455 index++;
michael@0 8456
michael@0 8457 setLevels();
michael@0 8458 var navElement = navigationLink("Memory ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1738.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8459 navigationTree[index] = navElement;
michael@0 8460 index++;
michael@0 8461
michael@0 8462 setLevels();
michael@0 8463 var navElement = navigationLink("Message Routing Group ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1744.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8464 navigationTree[index] = navElement;
michael@0 8465 index++;
michael@0 8466
michael@0 8467 setLevels();
michael@0 8468 var navElement = navigationLink("Message Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1750.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8469 navigationTree[index] = navElement;
michael@0 8470 index++;
michael@0 8471
michael@0 8472 setLevels();
michael@0 8473 var navElement = navigationLink("Messaging Database Location ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1756.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8474 navigationTree[index] = navElement;
michael@0 8475 index++;
michael@0 8476
michael@0 8477 setLevels();
michael@0 8478 var navElement = navigationLink("Messaging Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1762.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8479 navigationTree[index] = navElement;
michael@0 8480 index++;
michael@0 8481
michael@0 8482 setLevels();
michael@0 8483 var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1768.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8484 navigationTree[index] = navElement;
michael@0 8485 index++;
michael@0 8486
michael@0 8487 setLevels();
michael@0 8488 var navElement = navigationLink("Minimum Account Balance ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1786.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8489 navigationTree[index] = navElement;
michael@0 8490 index++;
michael@0 8491
michael@0 8492 setLevels();
michael@0 8493 var navElement = navigationLink("mobile ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3oojmc.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8494 navigationTree[index] = navElement;
michael@0 8495 index++;
michael@0 8496
michael@0 8497 setLevels();
michael@0 8498 var navElement = navigationLink("NDSPKI:Certificate Chain ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4104.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8499 navigationTree[index] = navElement;
michael@0 8500 index++;
michael@0 8501
michael@0 8502 setLevels();
michael@0 8503 var navElement = navigationLink("NDSPKI:Given Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4110.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8504 navigationTree[index] = navElement;
michael@0 8505 index++;
michael@0 8506
michael@0 8507 setLevels();
michael@0 8508 var navElement = navigationLink("NDSPKI:Key File ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4116.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8509 navigationTree[index] = navElement;
michael@0 8510 index++;
michael@0 8511
michael@0 8512 setLevels();
michael@0 8513 var navElement = navigationLink("NDSPKI:Key Material DN ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4122.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8514 navigationTree[index] = navElement;
michael@0 8515 index++;
michael@0 8516
michael@0 8517 setLevels();
michael@0 8518 var navElement = navigationLink("NDSPKI:Keystore ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2oknqe.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8519 navigationTree[index] = navElement;
michael@0 8520 index++;
michael@0 8521
michael@0 8522 setLevels();
michael@0 8523 var navElement = navigationLink("NDSPKI:Not After ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2oknpk.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8524 navigationTree[index] = navElement;
michael@0 8525 index++;
michael@0 8526
michael@0 8527 setLevels();
michael@0 8528 var navElement = navigationLink("NDSPKI:Not Before ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2oknpe.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8529 navigationTree[index] = navElement;
michael@0 8530 index++;
michael@0 8531
michael@0 8532 setLevels();
michael@0 8533 var navElement = navigationLink("NDSPKI:Parent CA ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4128.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8534 navigationTree[index] = navElement;
michael@0 8535 index++;
michael@0 8536
michael@0 8537 setLevels();
michael@0 8538 var navElement = navigationLink("NDSPKI:Parent CA DN ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4134.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8539 navigationTree[index] = navElement;
michael@0 8540 index++;
michael@0 8541
michael@0 8542 setLevels();
michael@0 8543 var navElement = navigationLink("NDSPKI:Private Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4140.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8544 navigationTree[index] = navElement;
michael@0 8545 index++;
michael@0 8546
michael@0 8547 setLevels();
michael@0 8548 var navElement = navigationLink("NDSPKI:Public Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4146.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8549 navigationTree[index] = navElement;
michael@0 8550 index++;
michael@0 8551
michael@0 8552 setLevels();
michael@0 8553 var navElement = navigationLink("NDSPKI:Public Key Certificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4152.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8554 navigationTree[index] = navElement;
michael@0 8555 index++;
michael@0 8556
michael@0 8557 setLevels();
michael@0 8558 var navElement = navigationLink("NDSPKI:SD Key Cert ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2oknq2.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8559 navigationTree[index] = navElement;
michael@0 8560 index++;
michael@0 8561
michael@0 8562 setLevels();
michael@0 8563 var navElement = navigationLink("NDSPKI:SD Key ID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2oknq8.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8564 navigationTree[index] = navElement;
michael@0 8565 index++;
michael@0 8566
michael@0 8567 setLevels();
michael@0 8568 var navElement = navigationLink("NDSPKI:SD Key Server DN ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2oknpq.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8569 navigationTree[index] = navElement;
michael@0 8570 index++;
michael@0 8571
michael@0 8572 setLevels();
michael@0 8573 var navElement = navigationLink("NDSPKI:SD Key Struct ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2oknpw.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8574 navigationTree[index] = navElement;
michael@0 8575 index++;
michael@0 8576
michael@0 8577 setLevels();
michael@0 8578 var navElement = navigationLink("NDSPKI:Subject Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4158.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8579 navigationTree[index] = navElement;
michael@0 8580 index++;
michael@0 8581
michael@0 8582 setLevels();
michael@0 8583 var navElement = navigationLink("NDSPKI:Tree CA DN ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4164.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8584 navigationTree[index] = navElement;
michael@0 8585 index++;
michael@0 8586
michael@0 8587 setLevels();
michael@0 8588 var navElement = navigationLink("NDSPKI:Trusted Root Certificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2oknp8.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8589 navigationTree[index] = navElement;
michael@0 8590 index++;
michael@0 8591
michael@0 8592 setLevels();
michael@0 8593 var navElement = navigationLink("NDSPKI:userCertificateInfo ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2oknp2.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8594 navigationTree[index] = navElement;
michael@0 8595 index++;
michael@0 8596
michael@0 8597 setLevels();
michael@0 8598 var navElement = navigationLink("Network Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4170.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8599 navigationTree[index] = navElement;
michael@0 8600 index++;
michael@0 8601
michael@0 8602 setLevels();
michael@0 8603 var navElement = navigationLink("Network Address Restriction ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4176.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8604 navigationTree[index] = navElement;
michael@0 8605 index++;
michael@0 8606
michael@0 8607 setLevels();
michael@0 8608 var navElement = navigationLink("New Object's DS Rights ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4182.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8609 navigationTree[index] = navElement;
michael@0 8610 index++;
michael@0 8611
michael@0 8612 setLevels();
michael@0 8613 var navElement = navigationLink("New Object's FS Rights ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4188.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8614 navigationTree[index] = navElement;
michael@0 8615 index++;
michael@0 8616
michael@0 8617 setLevels();
michael@0 8618 var navElement = navigationLink("New Object's Self Rights ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4194.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8619 navigationTree[index] = navElement;
michael@0 8620 index++;
michael@0 8621
michael@0 8622 setLevels();
michael@0 8623 var navElement = navigationLink("NNS Domain ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4338.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8624 navigationTree[index] = navElement;
michael@0 8625 index++;
michael@0 8626
michael@0 8627 setLevels();
michael@0 8628 var navElement = navigationLink("Notify ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4374.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8629 navigationTree[index] = navElement;
michael@0 8630 index++;
michael@0 8631
michael@0 8632 setLevels();
michael@0 8633 var navElement = navigationLink("NSCP:administratorContactInfo ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4392.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8634 navigationTree[index] = navElement;
michael@0 8635 index++;
michael@0 8636
michael@0 8637 setLevels();
michael@0 8638 var navElement = navigationLink("NSCP:adminURL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4398.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8639 navigationTree[index] = navElement;
michael@0 8640 index++;
michael@0 8641
michael@0 8642 setLevels();
michael@0 8643 var navElement = navigationLink("NSCP:AmailAccessDomain ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4404.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8644 navigationTree[index] = navElement;
michael@0 8645 index++;
michael@0 8646
michael@0 8647 setLevels();
michael@0 8648 var navElement = navigationLink("NSCP:AmailAlternateAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4410.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8649 navigationTree[index] = navElement;
michael@0 8650 index++;
michael@0 8651
michael@0 8652 setLevels();
michael@0 8653 var navElement = navigationLink("NSCP:AmailAutoReplyMode ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4416.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8654 navigationTree[index] = navElement;
michael@0 8655 index++;
michael@0 8656
michael@0 8657 setLevels();
michael@0 8658 var navElement = navigationLink("NSCP:AmailAutoReplyText ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4422.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8659 navigationTree[index] = navElement;
michael@0 8660 index++;
michael@0 8661
michael@0 8662 setLevels();
michael@0 8663 var navElement = navigationLink("NSCP:AmailDeliveryOption ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4428.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8664 navigationTree[index] = navElement;
michael@0 8665 index++;
michael@0 8666
michael@0 8667 setLevels();
michael@0 8668 var navElement = navigationLink("NSCP:AmailForwardingAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4434.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8669 navigationTree[index] = navElement;
michael@0 8670 index++;
michael@0 8671
michael@0 8672 setLevels();
michael@0 8673 var navElement = navigationLink("NSCP:AmailHost ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4440.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8674 navigationTree[index] = navElement;
michael@0 8675 index++;
michael@0 8676
michael@0 8677 setLevels();
michael@0 8678 var navElement = navigationLink("NSCP:AmailMessageStore ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4446.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8679 navigationTree[index] = navElement;
michael@0 8680 index++;
michael@0 8681
michael@0 8682 setLevels();
michael@0 8683 var navElement = navigationLink("NSCP:AmailProgramDeliveryInfo ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4452.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8684 navigationTree[index] = navElement;
michael@0 8685 index++;
michael@0 8686
michael@0 8687 setLevels();
michael@0 8688 var navElement = navigationLink("NSCP:AmailQuota ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4458.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8689 navigationTree[index] = navElement;
michael@0 8690 index++;
michael@0 8691
michael@0 8692 setLevels();
michael@0 8693 var navElement = navigationLink("NSCP:AnsLicenseEndTime ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4464.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8694 navigationTree[index] = navElement;
michael@0 8695 index++;
michael@0 8696
michael@0 8697 setLevels();
michael@0 8698 var navElement = navigationLink("NSCP:AnsLicensedFor ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4470.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8699 navigationTree[index] = navElement;
michael@0 8700 index++;
michael@0 8701
michael@0 8702 setLevels();
michael@0 8703 var navElement = navigationLink("NSCP:AnsLicenseStartTime ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4476.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8704 navigationTree[index] = navElement;
michael@0 8705 index++;
michael@0 8706
michael@0 8707 setLevels();
michael@0 8708 var navElement = navigationLink("NSCP:employeeNumber ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4482.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8709 navigationTree[index] = navElement;
michael@0 8710 index++;
michael@0 8711
michael@0 8712 setLevels();
michael@0 8713 var navElement = navigationLink("NSCP:installationTimeStamp ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4488.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8714 navigationTree[index] = navElement;
michael@0 8715 index++;
michael@0 8716
michael@0 8717 setLevels();
michael@0 8718 var navElement = navigationLink("NSCP:mailRoutingAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2ixy4e.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8719 navigationTree[index] = navElement;
michael@0 8720 index++;
michael@0 8721
michael@0 8722 setLevels();
michael@0 8723 var navElement = navigationLink("NSCP:memberCertificateDesc ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4554.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8724 navigationTree[index] = navElement;
michael@0 8725 index++;
michael@0 8726
michael@0 8727 setLevels();
michael@0 8728 var navElement = navigationLink("NSCP:mgrpRFC822mailmember ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4560.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8729 navigationTree[index] = navElement;
michael@0 8730 index++;
michael@0 8731
michael@0 8732 setLevels();
michael@0 8733 var navElement = navigationLink("NSCP:ngcomponentCIS ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4572.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8734 navigationTree[index] = navElement;
michael@0 8735 index++;
michael@0 8736
michael@0 8737 setLevels();
michael@0 8738 var navElement = navigationLink("NSCP:nsaclrole ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4578.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8739 navigationTree[index] = navElement;
michael@0 8740 index++;
michael@0 8741
michael@0 8742 setLevels();
michael@0 8743 var navElement = navigationLink("NSCP:nscreator ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4584.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8744 navigationTree[index] = navElement;
michael@0 8745 index++;
michael@0 8746
michael@0 8747 setLevels();
michael@0 8748 var navElement = navigationLink("NSCP:nsflags ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4590.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8749 navigationTree[index] = navElement;
michael@0 8750 index++;
michael@0 8751
michael@0 8752 setLevels();
michael@0 8753 var navElement = navigationLink("NSCP:nsnewsACL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4614.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8754 navigationTree[index] = navElement;
michael@0 8755 index++;
michael@0 8756
michael@0 8757 setLevels();
michael@0 8758 var navElement = navigationLink("NSCP:nsprettyname ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4620.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8759 navigationTree[index] = navElement;
michael@0 8760 index++;
michael@0 8761
michael@0 8762 setLevels();
michael@0 8763 var navElement = navigationLink("NSCP:serverHostName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4626.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8764 navigationTree[index] = navElement;
michael@0 8765 index++;
michael@0 8766
michael@0 8767 setLevels();
michael@0 8768 var navElement = navigationLink("NSCP:serverProductName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4632.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8769 navigationTree[index] = navElement;
michael@0 8770 index++;
michael@0 8771
michael@0 8772 setLevels();
michael@0 8773 var navElement = navigationLink("NSCP:serverRoot ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4638.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8774 navigationTree[index] = navElement;
michael@0 8775 index++;
michael@0 8776
michael@0 8777 setLevels();
michael@0 8778 var navElement = navigationLink("NSCP:serverVersionNumber ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4644.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8779 navigationTree[index] = navElement;
michael@0 8780 index++;
michael@0 8781
michael@0 8782 setLevels();
michael@0 8783 var navElement = navigationLink("NSCP:subtreeACI ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4650.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8784 navigationTree[index] = navElement;
michael@0 8785 index++;
michael@0 8786
michael@0 8787 setLevels();
michael@0 8788 var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4656.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8789 navigationTree[index] = navElement;
michael@0 8790 index++;
michael@0 8791
michael@0 8792 setLevels();
michael@0 8793 var navElement = navigationLink("Obituary ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4662.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8794 navigationTree[index] = navElement;
michael@0 8795 index++;
michael@0 8796
michael@0 8797 setLevels();
michael@0 8798 var navElement = navigationLink("Obituary Notify ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4668.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8799 navigationTree[index] = navElement;
michael@0 8800 index++;
michael@0 8801
michael@0 8802 setLevels();
michael@0 8803 var navElement = navigationLink("Object Class ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4674.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8804 navigationTree[index] = navElement;
michael@0 8805 index++;
michael@0 8806
michael@0 8807 setLevels();
michael@0 8808 var navElement = navigationLink("Operator ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4680.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8809 navigationTree[index] = navElement;
michael@0 8810 index++;
michael@0 8811
michael@0 8812 setLevels();
michael@0 8813 var navElement = navigationLink("Other GUID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4686.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8814 navigationTree[index] = navElement;
michael@0 8815 index++;
michael@0 8816
michael@0 8817 setLevels();
michael@0 8818 var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4692.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8819 navigationTree[index] = navElement;
michael@0 8820 index++;
michael@0 8821
michael@0 8822 setLevels();
michael@0 8823 var navElement = navigationLink("Owner ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4698.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8824 navigationTree[index] = navElement;
michael@0 8825 index++;
michael@0 8826
michael@0 8827 setLevels();
michael@0 8828 var navElement = navigationLink("Page Description Language ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4704.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8829 navigationTree[index] = navElement;
michael@0 8830 index++;
michael@0 8831
michael@0 8832 setLevels();
michael@0 8833 var navElement = navigationLink("pager ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3oojmj.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8834 navigationTree[index] = navElement;
michael@0 8835 index++;
michael@0 8836
michael@0 8837 setLevels();
michael@0 8838 var navElement = navigationLink("Partition Control ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4716.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8839 navigationTree[index] = navElement;
michael@0 8840 index++;
michael@0 8841
michael@0 8842 setLevels();
michael@0 8843 var navElement = navigationLink("Partition Creation Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4722.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8844 navigationTree[index] = navElement;
michael@0 8845 index++;
michael@0 8846
michael@0 8847 setLevels();
michael@0 8848 var navElement = navigationLink("Partition Status ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4728.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8849 navigationTree[index] = navElement;
michael@0 8850 index++;
michael@0 8851
michael@0 8852 setLevels();
michael@0 8853 var navElement = navigationLink("Password Allow Change ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4734.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8854 navigationTree[index] = navElement;
michael@0 8855 index++;
michael@0 8856
michael@0 8857 setLevels();
michael@0 8858 var navElement = navigationLink("Password Expiration Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4740.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8859 navigationTree[index] = navElement;
michael@0 8860 index++;
michael@0 8861
michael@0 8862 setLevels();
michael@0 8863 var navElement = navigationLink("Password Expiration Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4746.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8864 navigationTree[index] = navElement;
michael@0 8865 index++;
michael@0 8866
michael@0 8867 setLevels();
michael@0 8868 var navElement = navigationLink("Password Management ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4752.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8869 navigationTree[index] = navElement;
michael@0 8870 index++;
michael@0 8871
michael@0 8872 setLevels();
michael@0 8873 var navElement = navigationLink("Password Minimum Length ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4758.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8874 navigationTree[index] = navElement;
michael@0 8875 index++;
michael@0 8876
michael@0 8877 setLevels();
michael@0 8878 var navElement = navigationLink("Password Required ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4764.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8879 navigationTree[index] = navElement;
michael@0 8880 index++;
michael@0 8881
michael@0 8882 setLevels();
michael@0 8883 var navElement = navigationLink("Password Unique Required ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4770.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8884 navigationTree[index] = navElement;
michael@0 8885 index++;
michael@0 8886
michael@0 8887 setLevels();
michael@0 8888 var navElement = navigationLink("Passwords Used ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4776.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8889 navigationTree[index] = navElement;
michael@0 8890 index++;
michael@0 8891
michael@0 8892 setLevels();
michael@0 8893 var navElement = navigationLink("Path ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4782.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8894 navigationTree[index] = navElement;
michael@0 8895 index++;
michael@0 8896
michael@0 8897 setLevels();
michael@0 8898 var navElement = navigationLink("Permanent Config Parms ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4788.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8899 navigationTree[index] = navElement;
michael@0 8900 index++;
michael@0 8901
michael@0 8902 setLevels();
michael@0 8903 var navElement = navigationLink("Physical Delivery Office Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4794.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8904 navigationTree[index] = navElement;
michael@0 8905 index++;
michael@0 8906
michael@0 8907 setLevels();
michael@0 8908 var navElement = navigationLink("Postal Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4800.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8909 navigationTree[index] = navElement;
michael@0 8910 index++;
michael@0 8911
michael@0 8912 setLevels();
michael@0 8913 var navElement = navigationLink("Postal Code ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4806.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8914 navigationTree[index] = navElement;
michael@0 8915 index++;
michael@0 8916
michael@0 8917 setLevels();
michael@0 8918 var navElement = navigationLink("Postal Office Box ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4812.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8919 navigationTree[index] = navElement;
michael@0 8920 index++;
michael@0 8921
michael@0 8922 setLevels();
michael@0 8923 var navElement = navigationLink("Postmaster ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4818.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8924 navigationTree[index] = navElement;
michael@0 8925 index++;
michael@0 8926
michael@0 8927 setLevels();
michael@0 8928 var navElement = navigationLink("preferredDeliveryMethod ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4824.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8929 navigationTree[index] = navElement;
michael@0 8930 index++;
michael@0 8931
michael@0 8932 setLevels();
michael@0 8933 var navElement = navigationLink("presentationAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4830.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8934 navigationTree[index] = navElement;
michael@0 8935 index++;
michael@0 8936
michael@0 8937 setLevels();
michael@0 8938 var navElement = navigationLink("Print Job Configuration ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4848.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8939 navigationTree[index] = navElement;
michael@0 8940 index++;
michael@0 8941
michael@0 8942 setLevels();
michael@0 8943 var navElement = navigationLink("Print Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4854.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8944 navigationTree[index] = navElement;
michael@0 8945 index++;
michael@0 8946
michael@0 8947 setLevels();
michael@0 8948 var navElement = navigationLink("Printer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4860.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8949 navigationTree[index] = navElement;
michael@0 8950 index++;
michael@0 8951
michael@0 8952 setLevels();
michael@0 8953 var navElement = navigationLink("Printer Configuration ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4872.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8954 navigationTree[index] = navElement;
michael@0 8955 index++;
michael@0 8956
michael@0 8957 setLevels();
michael@0 8958 var navElement = navigationLink("Printer Control ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4878.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8959 navigationTree[index] = navElement;
michael@0 8960 index++;
michael@0 8961
michael@0 8962 setLevels();
michael@0 8963 var navElement = navigationLink("Private Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4914.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8964 navigationTree[index] = navElement;
michael@0 8965 index++;
michael@0 8966
michael@0 8967 setLevels();
michael@0 8968 var navElement = navigationLink("Profile ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4920.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8969 navigationTree[index] = navElement;
michael@0 8970 index++;
michael@0 8971
michael@0 8972 setLevels();
michael@0 8973 var navElement = navigationLink("Profile Membership ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4926.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8974 navigationTree[index] = navElement;
michael@0 8975 index++;
michael@0 8976
michael@0 8977 setLevels();
michael@0 8978 var navElement = navigationLink("protocolInformation ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4932.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8979 navigationTree[index] = navElement;
michael@0 8980 index++;
michael@0 8981
michael@0 8982 setLevels();
michael@0 8983 var navElement = navigationLink("Public Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4944.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8984 navigationTree[index] = navElement;
michael@0 8985 index++;
michael@0 8986
michael@0 8987 setLevels();
michael@0 8988 var navElement = navigationLink("Purge Vector ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4950.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8989 navigationTree[index] = navElement;
michael@0 8990 index++;
michael@0 8991
michael@0 8992 setLevels();
michael@0 8993 var navElement = navigationLink("Queue ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4956.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8994 navigationTree[index] = navElement;
michael@0 8995 index++;
michael@0 8996
michael@0 8997 setLevels();
michael@0 8998 var navElement = navigationLink("Queue Directory ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4962.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 8999 navigationTree[index] = navElement;
michael@0 9000 index++;
michael@0 9001
michael@0 9002 setLevels();
michael@0 9003 var navElement = navigationLink("Received Up To ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4968.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9004 navigationTree[index] = navElement;
michael@0 9005 index++;
michael@0 9006
michael@0 9007 setLevels();
michael@0 9008 var navElement = navigationLink("Reference ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4974.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9009 navigationTree[index] = navElement;
michael@0 9010 index++;
michael@0 9011
michael@0 9012 setLevels();
michael@0 9013 var navElement = navigationLink("registeredAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4980.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9014 navigationTree[index] = navElement;
michael@0 9015 index++;
michael@0 9016
michael@0 9017 setLevels();
michael@0 9018 var navElement = navigationLink("Replica ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5010.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9019 navigationTree[index] = navElement;
michael@0 9020 index++;
michael@0 9021
michael@0 9022 setLevels();
michael@0 9023 var navElement = navigationLink("Replica Up To ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5016.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9024 navigationTree[index] = navElement;
michael@0 9025 index++;
michael@0 9026
michael@0 9027 setLevels();
michael@0 9028 var navElement = navigationLink("Resource ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5028.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9029 navigationTree[index] = navElement;
michael@0 9030 index++;
michael@0 9031
michael@0 9032 setLevels();
michael@0 9033 var navElement = navigationLink("Revision ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5064.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9034 navigationTree[index] = navElement;
michael@0 9035 index++;
michael@0 9036
michael@0 9037 setLevels();
michael@0 9038 var navElement = navigationLink("Role Occupant ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5070.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9039 navigationTree[index] = navElement;
michael@0 9040 index++;
michael@0 9041
michael@0 9042 setLevels();
michael@0 9043 var navElement = navigationLink("roomNumber ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5076.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9044 navigationTree[index] = navElement;
michael@0 9045 index++;
michael@0 9046
michael@0 9047 setLevels();
michael@0 9048 var navElement = navigationLink("Run Setup Script ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5082.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9049 navigationTree[index] = navElement;
michael@0 9050 index++;
michael@0 9051
michael@0 9052 setLevels();
michael@0 9053 var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5088.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9054 navigationTree[index] = navElement;
michael@0 9055 index++;
michael@0 9056
michael@0 9057 setLevels();
michael@0 9058 var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5094.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9059 navigationTree[index] = navElement;
michael@0 9060 index++;
michael@0 9061
michael@0 9062 setLevels();
michael@0 9063 var navElement = navigationLink("SAP Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5100.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9064 navigationTree[index] = navElement;
michael@0 9065 index++;
michael@0 9066
michael@0 9067 setLevels();
michael@0 9068 var navElement = navigationLink("SAS:Security DN ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5106.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9069 navigationTree[index] = navElement;
michael@0 9070 index++;
michael@0 9071
michael@0 9072 setLevels();
michael@0 9073 var navElement = navigationLink("SAS:Service DN ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5112.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9074 navigationTree[index] = navElement;
michael@0 9075 index++;
michael@0 9076
michael@0 9077 setLevels();
michael@0 9078 var navElement = navigationLink("searchGuide ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5118.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9079 navigationTree[index] = navElement;
michael@0 9080 index++;
michael@0 9081
michael@0 9082 setLevels();
michael@0 9083 var navElement = navigationLink("searchSizeLimit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5124.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9084 navigationTree[index] = navElement;
michael@0 9085 index++;
michael@0 9086
michael@0 9087 setLevels();
michael@0 9088 var navElement = navigationLink("searchTimeLimit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5130.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9089 navigationTree[index] = navElement;
michael@0 9090 index++;
michael@0 9091
michael@0 9092 setLevels();
michael@0 9093 var navElement = navigationLink("Security Equals ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5136.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9094 navigationTree[index] = navElement;
michael@0 9095 index++;
michael@0 9096
michael@0 9097 setLevels();
michael@0 9098 var navElement = navigationLink("Security Flags ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5142.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9099 navigationTree[index] = navElement;
michael@0 9100 index++;
michael@0 9101
michael@0 9102 setLevels();
michael@0 9103 var navElement = navigationLink("See Also ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5148.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9104 navigationTree[index] = navElement;
michael@0 9105 index++;
michael@0 9106
michael@0 9107 setLevels();
michael@0 9108 var navElement = navigationLink("Serial Number ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5154.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9109 navigationTree[index] = navElement;
michael@0 9110 index++;
michael@0 9111
michael@0 9112 setLevels();
michael@0 9113 var navElement = navigationLink("Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5160.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9114 navigationTree[index] = navElement;
michael@0 9115 index++;
michael@0 9116
michael@0 9117 setLevels();
michael@0 9118 var navElement = navigationLink("Server Holds ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5166.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9119 navigationTree[index] = navElement;
michael@0 9120 index++;
michael@0 9121
michael@0 9122 setLevels();
michael@0 9123 var navElement = navigationLink("Set Password After Create ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5172.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9124 navigationTree[index] = navElement;
michael@0 9125 index++;
michael@0 9126
michael@0 9127 setLevels();
michael@0 9128 var navElement = navigationLink("Setup Script ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5178.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9129 navigationTree[index] = navElement;
michael@0 9130 index++;
michael@0 9131
michael@0 9132 setLevels();
michael@0 9133 var navElement = navigationLink("Status ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5286.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9134 navigationTree[index] = navElement;
michael@0 9135 index++;
michael@0 9136
michael@0 9137 setLevels();
michael@0 9138 var navElement = navigationLink("supportedAlgorithms ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5298.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9139 navigationTree[index] = navElement;
michael@0 9140 index++;
michael@0 9141
michael@0 9142 setLevels();
michael@0 9143 var navElement = navigationLink("supportedApplicationContext ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5304.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9144 navigationTree[index] = navElement;
michael@0 9145 index++;
michael@0 9146
michael@0 9147 setLevels();
michael@0 9148 var navElement = navigationLink("Supported Connections ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5310.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9149 navigationTree[index] = navElement;
michael@0 9150 index++;
michael@0 9151
michael@0 9152 setLevels();
michael@0 9153 var navElement = navigationLink("Supported Gateway ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5316.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9154 navigationTree[index] = navElement;
michael@0 9155 index++;
michael@0 9156
michael@0 9157 setLevels();
michael@0 9158 var navElement = navigationLink("Supported Services ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5322.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9159 navigationTree[index] = navElement;
michael@0 9160 index++;
michael@0 9161
michael@0 9162 setLevels();
michael@0 9163 var navElement = navigationLink("Supported Typefaces ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5328.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9164 navigationTree[index] = navElement;
michael@0 9165 index++;
michael@0 9166
michael@0 9167 setLevels();
michael@0 9168 var navElement = navigationLink("Surname ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5334.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9169 navigationTree[index] = navElement;
michael@0 9170 index++;
michael@0 9171
michael@0 9172 setLevels();
michael@0 9173 var navElement = navigationLink("Synchronization Tolerance ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5358.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9174 navigationTree[index] = navElement;
michael@0 9175 index++;
michael@0 9176
michael@0 9177 setLevels();
michael@0 9178 var navElement = navigationLink("Synchronized Up To ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5364.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9179 navigationTree[index] = navElement;
michael@0 9180 index++;
michael@0 9181
michael@0 9182 setLevels();
michael@0 9183 var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5370.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9184 navigationTree[index] = navElement;
michael@0 9185 index++;
michael@0 9186
michael@0 9187 setLevels();
michael@0 9188 var navElement = navigationLink("Telephone Number ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5376.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9189 navigationTree[index] = navElement;
michael@0 9190 index++;
michael@0 9191
michael@0 9192 setLevels();
michael@0 9193 var navElement = navigationLink("telexNumber ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5382.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9194 navigationTree[index] = navElement;
michael@0 9195 index++;
michael@0 9196
michael@0 9197 setLevels();
michael@0 9198 var navElement = navigationLink("telexTerminalIdentifier ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5388.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9199 navigationTree[index] = navElement;
michael@0 9200 index++;
michael@0 9201
michael@0 9202 setLevels();
michael@0 9203 var navElement = navigationLink("Timezone ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5394.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9204 navigationTree[index] = navElement;
michael@0 9205 index++;
michael@0 9206
michael@0 9207 setLevels();
michael@0 9208 var navElement = navigationLink("Title ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5400.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9209 navigationTree[index] = navElement;
michael@0 9210 index++;
michael@0 9211
michael@0 9212 setLevels();
michael@0 9213 var navElement = navigationLink("Transitive Vector ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5406.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9214 navigationTree[index] = navElement;
michael@0 9215 index++;
michael@0 9216
michael@0 9217 setLevels();
michael@0 9218 var navElement = navigationLink("Trustees Of New Object ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5412.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9219 navigationTree[index] = navElement;
michael@0 9220 index++;
michael@0 9221
michael@0 9222 setLevels();
michael@0 9223 var navElement = navigationLink("Type Creator Map ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5418.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9224 navigationTree[index] = navElement;
michael@0 9225 index++;
michael@0 9226
michael@0 9227 setLevels();
michael@0 9228 var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5424.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9229 navigationTree[index] = navElement;
michael@0 9230 index++;
michael@0 9231
michael@0 9232 setLevels();
michael@0 9233 var navElement = navigationLink("uniqueID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5430.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9234 navigationTree[index] = navElement;
michael@0 9235 index++;
michael@0 9236
michael@0 9237 setLevels();
michael@0 9238 var navElement = navigationLink("Unknown ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5436.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9239 navigationTree[index] = navElement;
michael@0 9240 index++;
michael@0 9241
michael@0 9242 setLevels();
michael@0 9243 var navElement = navigationLink("Unknown Auxiliary Class ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5442.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9244 navigationTree[index] = navElement;
michael@0 9245 index++;
michael@0 9246
michael@0 9247 setLevels();
michael@0 9248 var navElement = navigationLink("Unknown Base Class ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5448.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9249 navigationTree[index] = navElement;
michael@0 9250 index++;
michael@0 9251
michael@0 9252 setLevels();
michael@0 9253 var navElement = navigationLink("Used By ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5454.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9254 navigationTree[index] = navElement;
michael@0 9255 index++;
michael@0 9256
michael@0 9257 setLevels();
michael@0 9258 var navElement = navigationLink("User ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5460.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9259 navigationTree[index] = navElement;
michael@0 9260 index++;
michael@0 9261
michael@0 9262 setLevels();
michael@0 9263 var navElement = navigationLink("userCertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5466.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9264 navigationTree[index] = navElement;
michael@0 9265 index++;
michael@0 9266
michael@0 9267 setLevels();
michael@0 9268 var navElement = navigationLink("userPassword ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6m1fnz.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9269 navigationTree[index] = navElement;
michael@0 9270 index++;
michael@0 9271
michael@0 9272 setLevels();
michael@0 9273 var navElement = navigationLink("Uses ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5472.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9274 navigationTree[index] = navElement;
michael@0 9275 index++;
michael@0 9276
michael@0 9277 setLevels();
michael@0 9278 var navElement = navigationLink("Version ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5478.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9279 navigationTree[index] = navElement;
michael@0 9280 index++;
michael@0 9281
michael@0 9282 setLevels();
michael@0 9283 var navElement = navigationLink("Volume ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5484.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9284 navigationTree[index] = navElement;
michael@0 9285 index++;
michael@0 9286
michael@0 9287 setLevels();
michael@0 9288 var navElement = navigationLink("Volume Space Restrictions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5490.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9289 navigationTree[index] = navElement;
michael@0 9290 index++;
michael@0 9291
michael@0 9292 setLevels();
michael@0 9293 var navElement = navigationLink("WANMAN:Cost ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5496.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9294 navigationTree[index] = navElement;
michael@0 9295 index++;
michael@0 9296
michael@0 9297 setLevels();
michael@0 9298 var navElement = navigationLink("WANMAN:Default Cost ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5502.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9299 navigationTree[index] = navElement;
michael@0 9300 index++;
michael@0 9301
michael@0 9302 setLevels();
michael@0 9303 var navElement = navigationLink("WANMAN:LAN Area Membership ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5508.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9304 navigationTree[index] = navElement;
michael@0 9305 index++;
michael@0 9306
michael@0 9307 setLevels();
michael@0 9308 var navElement = navigationLink("WANMAN:WAN Policy ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5514.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9309 navigationTree[index] = navElement;
michael@0 9310 index++;
michael@0 9311
michael@0 9312 setLevels();
michael@0 9313 var navElement = navigationLink("x121Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5520.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9314 navigationTree[index] = navElement;
michael@0 9315 index++;
michael@0 9316
michael@0 9317 setLevels();
michael@0 9318 var navElement = navigationLink("x500UniqueIdentifier ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5526.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9319 navigationTree[index] = navElement;
michael@0 9320 index++;
michael@0 9321
michael@0 9322 if (currentLevel > 1) currentLevel--
michael@0 9323
michael@0 9324 setLevels();
michael@0 9325 var navElement = navigationLink("Novell Attribute Extensions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3fh5xp.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9326 navigationTree[index] = navElement;
michael@0 9327 index++;
michael@0 9328
michael@0 9329 currentLevel++;
michael@0 9330
michael@0 9331 setLevels();
michael@0 9332 var navElement = navigationLink("audio ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3omwno.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9333 navigationTree[index] = navElement;
michael@0 9334 index++;
michael@0 9335
michael@0 9336 setLevels();
michael@0 9337 var navElement = navigationLink("carLicense ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3on4e7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9338 navigationTree[index] = navElement;
michael@0 9339 index++;
michael@0 9340
michael@0 9341 setLevels();
michael@0 9342 var navElement = navigationLink("Client Install Candidate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk980.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9343 navigationTree[index] = navElement;
michael@0 9344 index++;
michael@0 9345
michael@0 9346 setLevels();
michael@0 9347 var navElement = navigationLink("Color Supported ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk992.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9348 navigationTree[index] = navElement;
michael@0 9349 index++;
michael@0 9350
michael@0 9351 setLevels();
michael@0 9352 var navElement = navigationLink("Database Dir Path ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1010.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9353 navigationTree[index] = navElement;
michael@0 9354 index++;
michael@0 9355
michael@0 9356 setLevels();
michael@0 9357 var navElement = navigationLink("Database Volume Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1016.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9358 navigationTree[index] = navElement;
michael@0 9359 index++;
michael@0 9360
michael@0 9361 setLevels();
michael@0 9362 var navElement = navigationLink("Datapool Location ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1022.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9363 navigationTree[index] = navElement;
michael@0 9364 index++;
michael@0 9365
michael@0 9366 setLevels();
michael@0 9367 var navElement = navigationLink("Datapool Locations ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1028.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9368 navigationTree[index] = navElement;
michael@0 9369 index++;
michael@0 9370
michael@0 9371 setLevels();
michael@0 9372 var navElement = navigationLink("Delivery Methods Installed ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1046.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9373 navigationTree[index] = navElement;
michael@0 9374 index++;
michael@0 9375
michael@0 9376 setLevels();
michael@0 9377 var navElement = navigationLink("displayName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3oorbo.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9378 navigationTree[index] = navElement;
michael@0 9379 index++;
michael@0 9380
michael@0 9381 setLevels();
michael@0 9382 var navElement = navigationLink("Employee ID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1114.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9383 navigationTree[index] = navElement;
michael@0 9384 index++;
michael@0 9385
michael@0 9386 setLevels();
michael@0 9387 var navElement = navigationLink("Entrust:AttributeCertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1126.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9388 navigationTree[index] = navElement;
michael@0 9389 index++;
michael@0 9390
michael@0 9391 setLevels();
michael@0 9392 var navElement = navigationLink("Entrust:User ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1132.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9393 navigationTree[index] = navElement;
michael@0 9394 index++;
michael@0 9395
michael@0 9396 setLevels();
michael@0 9397 var navElement = navigationLink("GW API Gateway Directory Path ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1204.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9398 navigationTree[index] = navElement;
michael@0 9399 index++;
michael@0 9400
michael@0 9401 setLevels();
michael@0 9402 var navElement = navigationLink("GW API Gateway Directory Volume ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1210.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9403 navigationTree[index] = navElement;
michael@0 9404 index++;
michael@0 9405
michael@0 9406 setLevels();
michael@0 9407 var navElement = navigationLink("IPP URI ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1300.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9408 navigationTree[index] = navElement;
michael@0 9409 index++;
michael@0 9410
michael@0 9411 setLevels();
michael@0 9412 var navElement = navigationLink("IPP URI Security Scheme ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1306.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9413 navigationTree[index] = navElement;
michael@0 9414 index++;
michael@0 9415
michael@0 9416 setLevels();
michael@0 9417 var navElement = navigationLink("jpegPhoto ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3onfdu.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9418 navigationTree[index] = navElement;
michael@0 9419 index++;
michael@0 9420
michael@0 9421 setLevels();
michael@0 9422 var navElement = navigationLink("labeledUri ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3onkke.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9423 navigationTree[index] = navElement;
michael@0 9424 index++;
michael@0 9425
michael@0 9426 setLevels();
michael@0 9427 var navElement = navigationLink("LDAP Class Map ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1372.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9428 navigationTree[index] = navElement;
michael@0 9429 index++;
michael@0 9430
michael@0 9431 setLevels();
michael@0 9432 var navElement = navigationLink("ldapPhoto ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3op8zp.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9433 navigationTree[index] = navElement;
michael@0 9434 index++;
michael@0 9435
michael@0 9436 setLevels();
michael@0 9437 var navElement = navigationLink("LDAPUserCertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1504.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9438 navigationTree[index] = navElement;
michael@0 9439 index++;
michael@0 9440
michael@0 9441 setLevels();
michael@0 9442 var navElement = navigationLink("LDAP:ARL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1510.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9443 navigationTree[index] = navElement;
michael@0 9444 index++;
michael@0 9445
michael@0 9446 setLevels();
michael@0 9447 var navElement = navigationLink("LDAP:caCertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1528.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9448 navigationTree[index] = navElement;
michael@0 9449 index++;
michael@0 9450
michael@0 9451 setLevels();
michael@0 9452 var navElement = navigationLink("LDAP:CRL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1534.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9453 navigationTree[index] = navElement;
michael@0 9454 index++;
michael@0 9455
michael@0 9456 setLevels();
michael@0 9457 var navElement = navigationLink("LDAP:crossCertificatePair ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1540.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9458 navigationTree[index] = navElement;
michael@0 9459 index++;
michael@0 9460
michael@0 9461 setLevels();
michael@0 9462 var navElement = navigationLink("MASV:Authorized Range ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a9j2co5.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9463 navigationTree[index] = navElement;
michael@0 9464 index++;
michael@0 9465
michael@0 9466 setLevels();
michael@0 9467 var navElement = navigationLink("MASV:Default Range ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a9j2cob.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9468 navigationTree[index] = navElement;
michael@0 9469 index++;
michael@0 9470
michael@0 9471 setLevels();
michael@0 9472 var navElement = navigationLink("MASV:Domain Policy ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a9j2coh.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9473 navigationTree[index] = navElement;
michael@0 9474 index++;
michael@0 9475
michael@0 9476 setLevels();
michael@0 9477 var navElement = navigationLink("MASV:Label ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a9j2con.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9478 navigationTree[index] = navElement;
michael@0 9479 index++;
michael@0 9480
michael@0 9481 setLevels();
michael@0 9482 var navElement = navigationLink("MASV:Proposed Label ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a9j2cot.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9483 navigationTree[index] = navElement;
michael@0 9484 index++;
michael@0 9485
michael@0 9486 setLevels();
michael@0 9487 var navElement = navigationLink("Maximum Speed ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1714.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9488 navigationTree[index] = navElement;
michael@0 9489 index++;
michael@0 9490
michael@0 9491 setLevels();
michael@0 9492 var navElement = navigationLink("Maximum Speed Units ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1720.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9493 navigationTree[index] = navElement;
michael@0 9494 index++;
michael@0 9495
michael@0 9496 setLevels();
michael@0 9497 var navElement = navigationLink("MHS Send Directory Path ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1774.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9498 navigationTree[index] = navElement;
michael@0 9499 index++;
michael@0 9500
michael@0 9501 setLevels();
michael@0 9502 var navElement = navigationLink("MHS Send Directory Volume ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1780.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9503 navigationTree[index] = navElement;
michael@0 9504 index++;
michael@0 9505
michael@0 9506 setLevels();
michael@0 9507 var navElement = navigationLink("NDPS Accountant Role ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1792.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9508 navigationTree[index] = navElement;
michael@0 9509 index++;
michael@0 9510
michael@0 9511 setLevels();
michael@0 9512 var navElement = navigationLink("NDPS Control Flags ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1798.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9513 navigationTree[index] = navElement;
michael@0 9514 index++;
michael@0 9515
michael@0 9516 setLevels();
michael@0 9517 var navElement = navigationLink("NDPS Database Saved Timestamp ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1804.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9518 navigationTree[index] = navElement;
michael@0 9519 index++;
michael@0 9520
michael@0 9521 setLevels();
michael@0 9522 var navElement = navigationLink("NDPS Database Saved Data Image ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1810.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9523 navigationTree[index] = navElement;
michael@0 9524 index++;
michael@0 9525
michael@0 9526 setLevels();
michael@0 9527 var navElement = navigationLink("NDPS Database Saved Index Image ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1816.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9528 navigationTree[index] = navElement;
michael@0 9529 index++;
michael@0 9530
michael@0 9531 setLevels();
michael@0 9532 var navElement = navigationLink("NDPS Default Printer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1822.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9533 navigationTree[index] = navElement;
michael@0 9534 index++;
michael@0 9535
michael@0 9536 setLevels();
michael@0 9537 var navElement = navigationLink("NDPS Default Public Printer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1828.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9538 navigationTree[index] = navElement;
michael@0 9539 index++;
michael@0 9540
michael@0 9541 setLevels();
michael@0 9542 var navElement = navigationLink("NDPS Job Configuration ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1834.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9543 navigationTree[index] = navElement;
michael@0 9544 index++;
michael@0 9545
michael@0 9546 setLevels();
michael@0 9547 var navElement = navigationLink("NDPS Manager Status ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1840.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9548 navigationTree[index] = navElement;
michael@0 9549 index++;
michael@0 9550
michael@0 9551 setLevels();
michael@0 9552 var navElement = navigationLink("NDPS Operator Role ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1846.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9553 navigationTree[index] = navElement;
michael@0 9554 index++;
michael@0 9555
michael@0 9556 setLevels();
michael@0 9557 var navElement = navigationLink("NDPS Printer Install List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1852.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9558 navigationTree[index] = navElement;
michael@0 9559 index++;
michael@0 9560
michael@0 9561 setLevels();
michael@0 9562 var navElement = navigationLink("NDPS Printer Install Timestamp ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1858.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9563 navigationTree[index] = navElement;
michael@0 9564 index++;
michael@0 9565
michael@0 9566 setLevels();
michael@0 9567 var navElement = navigationLink("NDPS Printer Queue List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1864.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9568 navigationTree[index] = navElement;
michael@0 9569 index++;
michael@0 9570
michael@0 9571 setLevels();
michael@0 9572 var navElement = navigationLink("NDPS Printer Siblings ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1870.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9573 navigationTree[index] = navElement;
michael@0 9574 index++;
michael@0 9575
michael@0 9576 setLevels();
michael@0 9577 var navElement = navigationLink("NDPS Public Printer Install List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1876.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9578 navigationTree[index] = navElement;
michael@0 9579 index++;
michael@0 9580
michael@0 9581 setLevels();
michael@0 9582 var navElement = navigationLink("NDPS Replace All Client Printers ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1882.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9583 navigationTree[index] = navElement;
michael@0 9584 index++;
michael@0 9585
michael@0 9586 setLevels();
michael@0 9587 var navElement = navigationLink("NDPS SMTP Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1888.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9588 navigationTree[index] = navElement;
michael@0 9589 index++;
michael@0 9590
michael@0 9591 setLevels();
michael@0 9592 var navElement = navigationLink("NDPS User Role ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1894.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9593 navigationTree[index] = navElement;
michael@0 9594 index++;
michael@0 9595
michael@0 9596 setLevels();
michael@0 9597 var navElement = navigationLink("NDSCat:Actual All Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1900.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9598 navigationTree[index] = navElement;
michael@0 9599 index++;
michael@0 9600
michael@0 9601 setLevels();
michael@0 9602 var navElement = navigationLink("NDSCat:Actual Attribute Count ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1906.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9603 navigationTree[index] = navElement;
michael@0 9604 index++;
michael@0 9605
michael@0 9606 setLevels();
michael@0 9607 var navElement = navigationLink("NDSCat:Actual Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1912.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9608 navigationTree[index] = navElement;
michael@0 9609 index++;
michael@0 9610
michael@0 9611 setLevels();
michael@0 9612 var navElement = navigationLink("NDSCat:Actual Base Object ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1918.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9613 navigationTree[index] = navElement;
michael@0 9614 index++;
michael@0 9615
michael@0 9616 setLevels();
michael@0 9617 var navElement = navigationLink("NDSCat:Actual Catalog Size ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1924.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9618 navigationTree[index] = navElement;
michael@0 9619 index++;
michael@0 9620
michael@0 9621 setLevels();
michael@0 9622 var navElement = navigationLink("NDSCat:Actual End Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1930.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9623 navigationTree[index] = navElement;
michael@0 9624 index++;
michael@0 9625
michael@0 9626 setLevels();
michael@0 9627 var navElement = navigationLink("NDSCat:Actual Filter ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1936.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9628 navigationTree[index] = navElement;
michael@0 9629 index++;
michael@0 9630
michael@0 9631 setLevels();
michael@0 9632 var navElement = navigationLink("NDSCat:Actual Object Count ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1942.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9633 navigationTree[index] = navElement;
michael@0 9634 index++;
michael@0 9635
michael@0 9636 setLevels();
michael@0 9637 var navElement = navigationLink("NDSCat:Actual Return Code ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1948.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9638 navigationTree[index] = navElement;
michael@0 9639 index++;
michael@0 9640
michael@0 9641 setLevels();
michael@0 9642 var navElement = navigationLink("NDSCat:Actual Scope ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1954.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9643 navigationTree[index] = navElement;
michael@0 9644 index++;
michael@0 9645
michael@0 9646 setLevels();
michael@0 9647 var navElement = navigationLink("NDSCat:Actual Search Aliases ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1960.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9648 navigationTree[index] = navElement;
michael@0 9649 index++;
michael@0 9650
michael@0 9651 setLevels();
michael@0 9652 var navElement = navigationLink("NDSCat:Actual Start Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1966.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9653 navigationTree[index] = navElement;
michael@0 9654 index++;
michael@0 9655
michael@0 9656 setLevels();
michael@0 9657 var navElement = navigationLink("NDSCat:Actual Value Count ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1972.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9658 navigationTree[index] = navElement;
michael@0 9659 index++;
michael@0 9660
michael@0 9661 setLevels();
michael@0 9662 var navElement = navigationLink("NDSCat:All Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1978.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9663 navigationTree[index] = navElement;
michael@0 9664 index++;
michael@0 9665
michael@0 9666 setLevels();
michael@0 9667 var navElement = navigationLink("NDSCat:AttrDefTbl ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1984.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9668 navigationTree[index] = navElement;
michael@0 9669 index++;
michael@0 9670
michael@0 9671 setLevels();
michael@0 9672 var navElement = navigationLink("NDSCat:Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1990.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9673 navigationTree[index] = navElement;
michael@0 9674 index++;
michael@0 9675
michael@0 9676 setLevels();
michael@0 9677 var navElement = navigationLink("NDSCat:Auto Dredge ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1996.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9678 navigationTree[index] = navElement;
michael@0 9679 index++;
michael@0 9680
michael@0 9681 setLevels();
michael@0 9682 var navElement = navigationLink("NDSCat:Base Object ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk2002.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9683 navigationTree[index] = navElement;
michael@0 9684 index++;
michael@0 9685
michael@0 9686 setLevels();
michael@0 9687 var navElement = navigationLink("NDSCat:CatalogDB ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk2008.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9688 navigationTree[index] = navElement;
michael@0 9689 index++;
michael@0 9690
michael@0 9691 setLevels();
michael@0 9692 var navElement = navigationLink("NDSCat:Catalog List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk2014.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9693 navigationTree[index] = navElement;
michael@0 9694 index++;
michael@0 9695
michael@0 9696 setLevels();
michael@0 9697 var navElement = navigationLink("NDSCat:Dredge Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4008.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9698 navigationTree[index] = navElement;
michael@0 9699 index++;
michael@0 9700
michael@0 9701 setLevels();
michael@0 9702 var navElement = navigationLink("NDSCat:Filter ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4014.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9703 navigationTree[index] = navElement;
michael@0 9704 index++;
michael@0 9705
michael@0 9706 setLevels();
michael@0 9707 var navElement = navigationLink("NDSCat:IndexDefTbl ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4020.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9708 navigationTree[index] = navElement;
michael@0 9709 index++;
michael@0 9710
michael@0 9711 setLevels();
michael@0 9712 var navElement = navigationLink("NDSCat:Indexes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4026.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9713 navigationTree[index] = navElement;
michael@0 9714 index++;
michael@0 9715
michael@0 9716 setLevels();
michael@0 9717 var navElement = navigationLink("NDSCat:Label ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4032.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9718 navigationTree[index] = navElement;
michael@0 9719 index++;
michael@0 9720
michael@0 9721 setLevels();
michael@0 9722 var navElement = navigationLink("NDSCat:Log ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4038.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9723 navigationTree[index] = navElement;
michael@0 9724 index++;
michael@0 9725
michael@0 9726 setLevels();
michael@0 9727 var navElement = navigationLink("NDSCat:Master Catalog ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4044.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9728 navigationTree[index] = navElement;
michael@0 9729 index++;
michael@0 9730
michael@0 9731 setLevels();
michael@0 9732 var navElement = navigationLink("NDSCat:Max Log Size ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4050.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9733 navigationTree[index] = navElement;
michael@0 9734 index++;
michael@0 9735
michael@0 9736 setLevels();
michael@0 9737 var navElement = navigationLink("NDSCat:Max Retries ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4056.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9738 navigationTree[index] = navElement;
michael@0 9739 index++;
michael@0 9740
michael@0 9741 setLevels();
michael@0 9742 var navElement = navigationLink("NDSCat:Max Threads ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4062.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9743 navigationTree[index] = navElement;
michael@0 9744 index++;
michael@0 9745
michael@0 9746 setLevels();
michael@0 9747 var navElement = navigationLink("NDSCat:Retry Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4068.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9748 navigationTree[index] = navElement;
michael@0 9749 index++;
michael@0 9750
michael@0 9751 setLevels();
michael@0 9752 var navElement = navigationLink("NDSCat:Scope ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4074.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9753 navigationTree[index] = navElement;
michael@0 9754 index++;
michael@0 9755
michael@0 9756 setLevels();
michael@0 9757 var navElement = navigationLink("NDSCat:Search Aliases ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4080.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9758 navigationTree[index] = navElement;
michael@0 9759 index++;
michael@0 9760
michael@0 9761 setLevels();
michael@0 9762 var navElement = navigationLink("NDSCat:Slave Catalog List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4086.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9763 navigationTree[index] = navElement;
michael@0 9764 index++;
michael@0 9765
michael@0 9766 setLevels();
michael@0 9767 var navElement = navigationLink("NDSCat:Start Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4092.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9768 navigationTree[index] = navElement;
michael@0 9769 index++;
michael@0 9770
michael@0 9771 setLevels();
michael@0 9772 var navElement = navigationLink("NDSCat:Synch Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4098.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9773 navigationTree[index] = navElement;
michael@0 9774 index++;
michael@0 9775
michael@0 9776 setLevels();
michael@0 9777 var navElement = navigationLink("NLS:Common Certificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4200.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9778 navigationTree[index] = navElement;
michael@0 9779 index++;
michael@0 9780
michael@0 9781 setLevels();
michael@0 9782 var navElement = navigationLink("NLS:Current Installed ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4206.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9783 navigationTree[index] = navElement;
michael@0 9784 index++;
michael@0 9785
michael@0 9786 setLevels();
michael@0 9787 var navElement = navigationLink("NLS:Current Peak Installed ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4212.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9788 navigationTree[index] = navElement;
michael@0 9789 index++;
michael@0 9790
michael@0 9791 setLevels();
michael@0 9792 var navElement = navigationLink("NLS:Current Peak Used ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4218.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9793 navigationTree[index] = navElement;
michael@0 9794 index++;
michael@0 9795
michael@0 9796 setLevels();
michael@0 9797 var navElement = navigationLink("NLS:Current Used ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4224.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9798 navigationTree[index] = navElement;
michael@0 9799 index++;
michael@0 9800
michael@0 9801 setLevels();
michael@0 9802 var navElement = navigationLink("NLS:Hourly Data Size ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4230.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9803 navigationTree[index] = navElement;
michael@0 9804 index++;
michael@0 9805
michael@0 9806 setLevels();
michael@0 9807 var navElement = navigationLink("NLS:License Database ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4236.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9808 navigationTree[index] = navElement;
michael@0 9809 index++;
michael@0 9810
michael@0 9811 setLevels();
michael@0 9812 var navElement = navigationLink("NLS:License ID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4242.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9813 navigationTree[index] = navElement;
michael@0 9814 index++;
michael@0 9815
michael@0 9816 setLevels();
michael@0 9817 var navElement = navigationLink("NLS:License Service Provider ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4248.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9818 navigationTree[index] = navElement;
michael@0 9819 index++;
michael@0 9820
michael@0 9821 setLevels();
michael@0 9822 var navElement = navigationLink("NLS:LSP Revision ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4254.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9823 navigationTree[index] = navElement;
michael@0 9824 index++;
michael@0 9825
michael@0 9826 setLevels();
michael@0 9827 var navElement = navigationLink("NLS:Owner ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4260.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9828 navigationTree[index] = navElement;
michael@0 9829 index++;
michael@0 9830
michael@0 9831 setLevels();
michael@0 9832 var navElement = navigationLink("NLS:Peak Installed Data ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4266.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9833 navigationTree[index] = navElement;
michael@0 9834 index++;
michael@0 9835
michael@0 9836 setLevels();
michael@0 9837 var navElement = navigationLink("NLS:Peak Used Data ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4272.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9838 navigationTree[index] = navElement;
michael@0 9839 index++;
michael@0 9840
michael@0 9841 setLevels();
michael@0 9842 var navElement = navigationLink("NLS:Product ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4278.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9843 navigationTree[index] = navElement;
michael@0 9844 index++;
michael@0 9845
michael@0 9846 setLevels();
michael@0 9847 var navElement = navigationLink("NLS:Publisher ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4284.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9848 navigationTree[index] = navElement;
michael@0 9849 index++;
michael@0 9850
michael@0 9851 setLevels();
michael@0 9852 var navElement = navigationLink("NLS:Revision ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4290.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9853 navigationTree[index] = navElement;
michael@0 9854 index++;
michael@0 9855
michael@0 9856 setLevels();
michael@0 9857 var navElement = navigationLink("NLS:Search Type ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4296.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9858 navigationTree[index] = navElement;
michael@0 9859 index++;
michael@0 9860
michael@0 9861 setLevels();
michael@0 9862 var navElement = navigationLink("NLS:Summary Update Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4302.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9863 navigationTree[index] = navElement;
michael@0 9864 index++;
michael@0 9865
michael@0 9866 setLevels();
michael@0 9867 var navElement = navigationLink("NLS:Summary Version ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4308.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9868 navigationTree[index] = navElement;
michael@0 9869 index++;
michael@0 9870
michael@0 9871 setLevels();
michael@0 9872 var navElement = navigationLink("NLS:Transaction Database ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4314.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9873 navigationTree[index] = navElement;
michael@0 9874 index++;
michael@0 9875
michael@0 9876 setLevels();
michael@0 9877 var navElement = navigationLink("NLS:Transaction Log Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4320.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9878 navigationTree[index] = navElement;
michael@0 9879 index++;
michael@0 9880
michael@0 9881 setLevels();
michael@0 9882 var navElement = navigationLink("NLS:Transaction Log Size ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4326.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9883 navigationTree[index] = navElement;
michael@0 9884 index++;
michael@0 9885
michael@0 9886 setLevels();
michael@0 9887 var navElement = navigationLink("NLS:Version ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4332.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9888 navigationTree[index] = navElement;
michael@0 9889 index++;
michael@0 9890
michael@0 9891 setLevels();
michael@0 9892 var navElement = navigationLink("Notification Consumers ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4344.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9893 navigationTree[index] = navElement;
michael@0 9894 index++;
michael@0 9895
michael@0 9896 setLevels();
michael@0 9897 var navElement = navigationLink("Notification Profile ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4350.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9898 navigationTree[index] = navElement;
michael@0 9899 index++;
michael@0 9900
michael@0 9901 setLevels();
michael@0 9902 var navElement = navigationLink("Notification Service Enabled ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4356.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9903 navigationTree[index] = navElement;
michael@0 9904 index++;
michael@0 9905
michael@0 9906 setLevels();
michael@0 9907 var navElement = navigationLink("Notification Srvc Net Addr ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4362.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9908 navigationTree[index] = navElement;
michael@0 9909 index++;
michael@0 9910
michael@0 9911 setLevels();
michael@0 9912 var navElement = navigationLink("Notification Srvc Net Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4368.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9913 navigationTree[index] = navElement;
michael@0 9914 index++;
michael@0 9915
michael@0 9916 setLevels();
michael@0 9917 var navElement = navigationLink("NRD:Registry Data ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4380.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9918 navigationTree[index] = navElement;
michael@0 9919 index++;
michael@0 9920
michael@0 9921 setLevels();
michael@0 9922 var navElement = navigationLink("NRD:Registry Index ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4386.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9923 navigationTree[index] = navElement;
michael@0 9924 index++;
michael@0 9925
michael@0 9926 setLevels();
michael@0 9927 var navElement = navigationLink("NSCP:mailAccessDomain ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4494.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9928 navigationTree[index] = navElement;
michael@0 9929 index++;
michael@0 9930
michael@0 9931 setLevels();
michael@0 9932 var navElement = navigationLink("NSCP:mailAlternateAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4500.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9933 navigationTree[index] = navElement;
michael@0 9934 index++;
michael@0 9935
michael@0 9936 setLevels();
michael@0 9937 var navElement = navigationLink("NSCP:mailAutoReplyMode ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4506.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9938 navigationTree[index] = navElement;
michael@0 9939 index++;
michael@0 9940
michael@0 9941 setLevels();
michael@0 9942 var navElement = navigationLink("NSCP:mailAutoReplyText ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4512.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9943 navigationTree[index] = navElement;
michael@0 9944 index++;
michael@0 9945
michael@0 9946 setLevels();
michael@0 9947 var navElement = navigationLink("NSCP:mailDeliveryOption ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4518.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9948 navigationTree[index] = navElement;
michael@0 9949 index++;
michael@0 9950
michael@0 9951 setLevels();
michael@0 9952 var navElement = navigationLink("NSCP:mailForwardingAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4524.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9953 navigationTree[index] = navElement;
michael@0 9954 index++;
michael@0 9955
michael@0 9956 setLevels();
michael@0 9957 var navElement = navigationLink("NSCP:mailHost ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4530.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9958 navigationTree[index] = navElement;
michael@0 9959 index++;
michael@0 9960
michael@0 9961 setLevels();
michael@0 9962 var navElement = navigationLink("NSCP:mailMessageStore ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4536.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9963 navigationTree[index] = navElement;
michael@0 9964 index++;
michael@0 9965
michael@0 9966 setLevels();
michael@0 9967 var navElement = navigationLink("NSCP:mailProgramDeliveryInfo ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4542.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9968 navigationTree[index] = navElement;
michael@0 9969 index++;
michael@0 9970
michael@0 9971 setLevels();
michael@0 9972 var navElement = navigationLink("NSCP:mailQuota ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4548.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9973 navigationTree[index] = navElement;
michael@0 9974 index++;
michael@0 9975
michael@0 9976 setLevels();
michael@0 9977 var navElement = navigationLink("NSCP:ngComponent ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4566.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9978 navigationTree[index] = navElement;
michael@0 9979 index++;
michael@0 9980
michael@0 9981 setLevels();
michael@0 9982 var navElement = navigationLink("NSCP:nsLicenseEndTime ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4596.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9983 navigationTree[index] = navElement;
michael@0 9984 index++;
michael@0 9985
michael@0 9986 setLevels();
michael@0 9987 var navElement = navigationLink("NSCP:nsLicensedFor ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4602.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9988 navigationTree[index] = navElement;
michael@0 9989 index++;
michael@0 9990
michael@0 9991 setLevels();
michael@0 9992 var navElement = navigationLink("NSCP:nsLicenseStartTime ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4608.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9993 navigationTree[index] = navElement;
michael@0 9994 index++;
michael@0 9995
michael@0 9996 setLevels();
michael@0 9997 var navElement = navigationLink("Page Description Languages ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4710.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 9998 navigationTree[index] = navElement;
michael@0 9999 index++;
michael@0 10000
michael@0 10001 setLevels();
michael@0 10002 var navElement = navigationLink("preferredLanguage ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3oon3t.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10003 navigationTree[index] = navElement;
michael@0 10004 index++;
michael@0 10005
michael@0 10006 setLevels();
michael@0 10007 var navElement = navigationLink("Primary Notification Service ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4836.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10008 navigationTree[index] = navElement;
michael@0 10009 index++;
michael@0 10010
michael@0 10011 setLevels();
michael@0 10012 var navElement = navigationLink("Primary Resource Service ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4842.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10013 navigationTree[index] = navElement;
michael@0 10014 index++;
michael@0 10015
michael@0 10016 setLevels();
michael@0 10017 var navElement = navigationLink("Printer Agent Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4866.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10018 navigationTree[index] = navElement;
michael@0 10019 index++;
michael@0 10020
michael@0 10021 setLevels();
michael@0 10022 var navElement = navigationLink("Printer Manufacturer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4884.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10023 navigationTree[index] = navElement;
michael@0 10024 index++;
michael@0 10025
michael@0 10026 setLevels();
michael@0 10027 var navElement = navigationLink("Printer Mechanism Types ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4890.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10028 navigationTree[index] = navElement;
michael@0 10029 index++;
michael@0 10030
michael@0 10031 setLevels();
michael@0 10032 var navElement = navigationLink("Printer Model ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4896.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10033 navigationTree[index] = navElement;
michael@0 10034 index++;
michael@0 10035
michael@0 10036 setLevels();
michael@0 10037 var navElement = navigationLink("Printer Status ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4902.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10038 navigationTree[index] = navElement;
michael@0 10039 index++;
michael@0 10040
michael@0 10041 setLevels();
michael@0 10042 var navElement = navigationLink("Printer to PA ID Mappings ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4908.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10043 navigationTree[index] = navElement;
michael@0 10044 index++;
michael@0 10045
michael@0 10046 setLevels();
michael@0 10047 var navElement = navigationLink("PSM Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4938.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10048 navigationTree[index] = navElement;
michael@0 10049 index++;
michael@0 10050
michael@0 10051 setLevels();
michael@0 10052 var navElement = navigationLink("Registry Advertising Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4986.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10053 navigationTree[index] = navElement;
michael@0 10054 index++;
michael@0 10055
michael@0 10056 setLevels();
michael@0 10057 var navElement = navigationLink("Registry Service Enabled ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4992.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10058 navigationTree[index] = navElement;
michael@0 10059 index++;
michael@0 10060
michael@0 10061 setLevels();
michael@0 10062 var navElement = navigationLink("Registry Srvc Net Addr ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4998.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10063 navigationTree[index] = navElement;
michael@0 10064 index++;
michael@0 10065
michael@0 10066 setLevels();
michael@0 10067 var navElement = navigationLink("Registry Srvc Net Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5004.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10068 navigationTree[index] = navElement;
michael@0 10069 index++;
michael@0 10070
michael@0 10071 setLevels();
michael@0 10072 var navElement = navigationLink("Resolution ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5022.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10073 navigationTree[index] = navElement;
michael@0 10074 index++;
michael@0 10075
michael@0 10076 setLevels();
michael@0 10077 var navElement = navigationLink("Resource Mgmt Srvc Net Addr ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5034.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10078 navigationTree[index] = navElement;
michael@0 10079 index++;
michael@0 10080
michael@0 10081 setLevels();
michael@0 10082 var navElement = navigationLink("Resource Mgmt Srvc Net Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5040.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10083 navigationTree[index] = navElement;
michael@0 10084 index++;
michael@0 10085
michael@0 10086 setLevels();
michael@0 10087 var navElement = navigationLink("Resource Mgmt Service Enabled ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5046.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10088 navigationTree[index] = navElement;
michael@0 10089 index++;
michael@0 10090
michael@0 10091 setLevels();
michael@0 10092 var navElement = navigationLink("Resource Mgr Database Path ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5052.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10093 navigationTree[index] = navElement;
michael@0 10094 index++;
michael@0 10095
michael@0 10096 setLevels();
michael@0 10097 var navElement = navigationLink("Resource Mgr Database Volume ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5058.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10098 navigationTree[index] = navElement;
michael@0 10099 index++;
michael@0 10100
michael@0 10101 setLevels();
michael@0 10102 var navElement = navigationLink("secretary ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3oon40.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10103 navigationTree[index] = navElement;
michael@0 10104 index++;
michael@0 10105
michael@0 10106 setLevels();
michael@0 10107 var navElement = navigationLink("Sides Supported ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5184.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10108 navigationTree[index] = navElement;
michael@0 10109 index++;
michael@0 10110
michael@0 10111 setLevels();
michael@0 10112 var navElement = navigationLink("SLP Attribute ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5190.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10113 navigationTree[index] = navElement;
michael@0 10114 index++;
michael@0 10115
michael@0 10116 setLevels();
michael@0 10117 var navElement = navigationLink("SLP Cache Limit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5196.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10118 navigationTree[index] = navElement;
michael@0 10119 index++;
michael@0 10120
michael@0 10121 setLevels();
michael@0 10122 var navElement = navigationLink("SLP DA Back Link ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5202.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10123 navigationTree[index] = navElement;
michael@0 10124 index++;
michael@0 10125
michael@0 10126 setLevels();
michael@0 10127 var navElement = navigationLink("SLP Directory Agent DN ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5208.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10128 navigationTree[index] = navElement;
michael@0 10129 index++;
michael@0 10130
michael@0 10131 setLevels();
michael@0 10132 var navElement = navigationLink("SLP Language ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5214.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10133 navigationTree[index] = navElement;
michael@0 10134 index++;
michael@0 10135
michael@0 10136 setLevels();
michael@0 10137 var navElement = navigationLink("SLP Lifetime ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5220.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10138 navigationTree[index] = navElement;
michael@0 10139 index++;
michael@0 10140
michael@0 10141 setLevels();
michael@0 10142 var navElement = navigationLink("SLP Scope Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5226.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10143 navigationTree[index] = navElement;
michael@0 10144 index++;
michael@0 10145
michael@0 10146 setLevels();
michael@0 10147 var navElement = navigationLink("SLP Scope Unit DN ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5232.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10148 navigationTree[index] = navElement;
michael@0 10149 index++;
michael@0 10150
michael@0 10151 setLevels();
michael@0 10152 var navElement = navigationLink("SLP Start Purge Hour ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5238.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10153 navigationTree[index] = navElement;
michael@0 10154 index++;
michael@0 10155
michael@0 10156 setLevels();
michael@0 10157 var navElement = navigationLink("SLP Status ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5244.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10158 navigationTree[index] = navElement;
michael@0 10159 index++;
michael@0 10160
michael@0 10161 setLevels();
michael@0 10162 var navElement = navigationLink("SLP SU Back Link ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5250.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10163 navigationTree[index] = navElement;
michael@0 10164 index++;
michael@0 10165
michael@0 10166 setLevels();
michael@0 10167 var navElement = navigationLink("SLP SU Type ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5256.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10168 navigationTree[index] = navElement;
michael@0 10169 index++;
michael@0 10170
michael@0 10171 setLevels();
michael@0 10172 var navElement = navigationLink("SLP Type ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5262.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10173 navigationTree[index] = navElement;
michael@0 10174 index++;
michael@0 10175
michael@0 10176 setLevels();
michael@0 10177 var navElement = navigationLink("SLP URL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5268.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10178 navigationTree[index] = navElement;
michael@0 10179 index++;
michael@0 10180
michael@0 10181 setLevels();
michael@0 10182 var navElement = navigationLink("SMS Protocol Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5274.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10183 navigationTree[index] = navElement;
michael@0 10184 index++;
michael@0 10185
michael@0 10186 setLevels();
michael@0 10187 var navElement = navigationLink("SMS Registered Service ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5280.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10188 navigationTree[index] = navElement;
michael@0 10189 index++;
michael@0 10190
michael@0 10191 setLevels();
michael@0 10192 var navElement = navigationLink("SU ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5292.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10193 navigationTree[index] = navElement;
michael@0 10194 index++;
michael@0 10195
michael@0 10196 setLevels();
michael@0 10197 var navElement = navigationLink("SvcInfo ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5340.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10198 navigationTree[index] = navElement;
michael@0 10199 index++;
michael@0 10200
michael@0 10201 setLevels();
michael@0 10202 var navElement = navigationLink("SvcType ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5346.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10203 navigationTree[index] = navElement;
michael@0 10204 index++;
michael@0 10205
michael@0 10206 setLevels();
michael@0 10207 var navElement = navigationLink("SvcTypeID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5352.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10208 navigationTree[index] = navElement;
michael@0 10209 index++;
michael@0 10210
michael@0 10211 setLevels();
michael@0 10212 var navElement = navigationLink("userSMIMECertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3oorbh.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10213 navigationTree[index] = navElement;
michael@0 10214 index++;
michael@0 10215
michael@0 10216 if (currentLevel > 1) currentLevel--
michael@0 10217
michael@0 10218 setLevels();
michael@0 10219 var navElement = navigationLink("LDAP Operational Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a7lnqjy.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10220 navigationTree[index] = navElement;
michael@0 10221 index++;
michael@0 10222
michael@0 10223 currentLevel++;
michael@0 10224
michael@0 10225 setLevels();
michael@0 10226 var navElement = navigationLink("createTimeStamp ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fur3q.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10227 navigationTree[index] = navElement;
michael@0 10228 index++;
michael@0 10229
michael@0 10230 setLevels();
michael@0 10231 var navElement = navigationLink("creatorsName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fur3f.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10232 navigationTree[index] = navElement;
michael@0 10233 index++;
michael@0 10234
michael@0 10235 setLevels();
michael@0 10236 var navElement = navigationLink("entryFlags ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fuxcp.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10237 navigationTree[index] = navElement;
michael@0 10238 index++;
michael@0 10239
michael@0 10240 setLevels();
michael@0 10241 var navElement = navigationLink("federationBoundary ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fzxsm.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10242 navigationTree[index] = navElement;
michael@0 10243 index++;
michael@0 10244
michael@0 10245 setLevels();
michael@0 10246 var navElement = navigationLink("localEntryID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fzcam.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10247 navigationTree[index] = navElement;
michael@0 10248 index++;
michael@0 10249
michael@0 10250 setLevels();
michael@0 10251 var navElement = navigationLink("modifiersName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fur3j.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10252 navigationTree[index] = navElement;
michael@0 10253 index++;
michael@0 10254
michael@0 10255 setLevels();
michael@0 10256 var navElement = navigationLink("modifyTimeStamp ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fur3x.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10257 navigationTree[index] = navElement;
michael@0 10258 index++;
michael@0 10259
michael@0 10260 setLevels();
michael@0 10261 var navElement = navigationLink("structuralObjectClass ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fuxcb.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10262 navigationTree[index] = navElement;
michael@0 10263 index++;
michael@0 10264
michael@0 10265 setLevels();
michael@0 10266 var navElement = navigationLink("subordinateCount ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fuxci.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10267 navigationTree[index] = navElement;
michael@0 10268 index++;
michael@0 10269
michael@0 10270 setLevels();
michael@0 10271 var navElement = navigationLink("subschemaSubentry ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fuxc4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10272 navigationTree[index] = navElement;
michael@0 10273 index++;
michael@0 10274
michael@0 10275 if (currentLevel > 1) currentLevel--
michael@0 10276
michael@0 10277 setLevels();
michael@0 10278 var navElement = navigationLink("Attribute Syntax Definitions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h55cqjqs.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10279 navigationTree[index] = navElement;
michael@0 10280 index++;
michael@0 10281
michael@0 10282 currentLevel++;
michael@0 10283
michael@0 10284 setLevels();
michael@0 10285 var navElement = navigationLink("Back Link ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5533.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10286 navigationTree[index] = navElement;
michael@0 10287 index++;
michael@0 10288
michael@0 10289 setLevels();
michael@0 10290 var navElement = navigationLink("Boolean ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5540.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10291 navigationTree[index] = navElement;
michael@0 10292 index++;
michael@0 10293
michael@0 10294 setLevels();
michael@0 10295 var navElement = navigationLink("Case Exact String ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5547.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10296 navigationTree[index] = navElement;
michael@0 10297 index++;
michael@0 10298
michael@0 10299 setLevels();
michael@0 10300 var navElement = navigationLink("Case Ignore List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5554.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10301 navigationTree[index] = navElement;
michael@0 10302 index++;
michael@0 10303
michael@0 10304 setLevels();
michael@0 10305 var navElement = navigationLink("Case Ignore String ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5561.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10306 navigationTree[index] = navElement;
michael@0 10307 index++;
michael@0 10308
michael@0 10309 setLevels();
michael@0 10310 var navElement = navigationLink("Class Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5568.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10311 navigationTree[index] = navElement;
michael@0 10312 index++;
michael@0 10313
michael@0 10314 setLevels();
michael@0 10315 var navElement = navigationLink("Counter ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5575.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10316 navigationTree[index] = navElement;
michael@0 10317 index++;
michael@0 10318
michael@0 10319 setLevels();
michael@0 10320 var navElement = navigationLink("Distinguished Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5582.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10321 navigationTree[index] = navElement;
michael@0 10322 index++;
michael@0 10323
michael@0 10324 setLevels();
michael@0 10325 var navElement = navigationLink("EMail Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5589.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10326 navigationTree[index] = navElement;
michael@0 10327 index++;
michael@0 10328
michael@0 10329 setLevels();
michael@0 10330 var navElement = navigationLink("Facsimile Telephone Number ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5596.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10331 navigationTree[index] = navElement;
michael@0 10332 index++;
michael@0 10333
michael@0 10334 setLevels();
michael@0 10335 var navElement = navigationLink("Hold ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5603.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10336 navigationTree[index] = navElement;
michael@0 10337 index++;
michael@0 10338
michael@0 10339 setLevels();
michael@0 10340 var navElement = navigationLink("Integer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5610.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10341 navigationTree[index] = navElement;
michael@0 10342 index++;
michael@0 10343
michael@0 10344 setLevels();
michael@0 10345 var navElement = navigationLink("Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5617.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10346 navigationTree[index] = navElement;
michael@0 10347 index++;
michael@0 10348
michael@0 10349 setLevels();
michael@0 10350 var navElement = navigationLink("Net Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5624.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10351 navigationTree[index] = navElement;
michael@0 10352 index++;
michael@0 10353
michael@0 10354 setLevels();
michael@0 10355 var navElement = navigationLink("Numeric String ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5631.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10356 navigationTree[index] = navElement;
michael@0 10357 index++;
michael@0 10358
michael@0 10359 setLevels();
michael@0 10360 var navElement = navigationLink("Object ACL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5638.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10361 navigationTree[index] = navElement;
michael@0 10362 index++;
michael@0 10363
michael@0 10364 setLevels();
michael@0 10365 var navElement = navigationLink("Octet List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5645.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10366 navigationTree[index] = navElement;
michael@0 10367 index++;
michael@0 10368
michael@0 10369 setLevels();
michael@0 10370 var navElement = navigationLink("Octet String ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5652.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10371 navigationTree[index] = navElement;
michael@0 10372 index++;
michael@0 10373
michael@0 10374 setLevels();
michael@0 10375 var navElement = navigationLink("Path ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5659.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10376 navigationTree[index] = navElement;
michael@0 10377 index++;
michael@0 10378
michael@0 10379 setLevels();
michael@0 10380 var navElement = navigationLink("Postal Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5666.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10381 navigationTree[index] = navElement;
michael@0 10382 index++;
michael@0 10383
michael@0 10384 setLevels();
michael@0 10385 var navElement = navigationLink("Printable String ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5673.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10386 navigationTree[index] = navElement;
michael@0 10387 index++;
michael@0 10388
michael@0 10389 setLevels();
michael@0 10390 var navElement = navigationLink("Replica Pointer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5680.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10391 navigationTree[index] = navElement;
michael@0 10392 index++;
michael@0 10393
michael@0 10394 setLevels();
michael@0 10395 var navElement = navigationLink("Stream ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5687.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10396 navigationTree[index] = navElement;
michael@0 10397 index++;
michael@0 10398
michael@0 10399 setLevels();
michael@0 10400 var navElement = navigationLink("Telephone Number ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5694.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10401 navigationTree[index] = navElement;
michael@0 10402 index++;
michael@0 10403
michael@0 10404 setLevels();
michael@0 10405 var navElement = navigationLink("Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5701.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10406 navigationTree[index] = navElement;
michael@0 10407 index++;
michael@0 10408
michael@0 10409 setLevels();
michael@0 10410 var navElement = navigationLink("Timestamp ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5708.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10411 navigationTree[index] = navElement;
michael@0 10412 index++;
michael@0 10413
michael@0 10414 setLevels();
michael@0 10415 var navElement = navigationLink("Typed Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5715.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10416 navigationTree[index] = navElement;
michael@0 10417 index++;
michael@0 10418
michael@0 10419 setLevels();
michael@0 10420 var navElement = navigationLink("Unknown ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5722.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10421 navigationTree[index] = navElement;
michael@0 10422 index++;
michael@0 10423
michael@0 10424 if (currentLevel > 1) currentLevel--
michael@0 10425
michael@0 10426 setLevels();
michael@0 10427 var navElement = navigationLink("Index of Classes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx1.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10428 navigationTree[index] = navElement;
michael@0 10429 index++;
michael@0 10430
michael@0 10431 currentLevel++;
michael@0 10432
michael@0 10433 setLevels();
michael@0 10434 var navElement = navigationLink("A through B ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx2.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10435 navigationTree[index] = navElement;
michael@0 10436 index++;
michael@0 10437
michael@0 10438 setLevels();
michael@0 10439 var navElement = navigationLink("C through D ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx3.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10440 navigationTree[index] = navElement;
michael@0 10441 index++;
michael@0 10442
michael@0 10443 setLevels();
michael@0 10444 var navElement = navigationLink("E through K ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10445 navigationTree[index] = navElement;
michael@0 10446 index++;
michael@0 10447
michael@0 10448 setLevels();
michael@0 10449 var navElement = navigationLink("L through M ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx5.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10450 navigationTree[index] = navElement;
michael@0 10451 index++;
michael@0 10452
michael@0 10453 setLevels();
michael@0 10454 var navElement = navigationLink("N ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx6.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10455 navigationTree[index] = navElement;
michael@0 10456 index++;
michael@0 10457
michael@0 10458 setLevels();
michael@0 10459 var navElement = navigationLink("O ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10460 navigationTree[index] = navElement;
michael@0 10461 index++;
michael@0 10462
michael@0 10463 setLevels();
michael@0 10464 var navElement = navigationLink("P through R ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx8.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10465 navigationTree[index] = navElement;
michael@0 10466 index++;
michael@0 10467
michael@0 10468 setLevels();
michael@0 10469 var navElement = navigationLink("S ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx9.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10470 navigationTree[index] = navElement;
michael@0 10471 index++;
michael@0 10472
michael@0 10473 setLevels();
michael@0 10474 var navElement = navigationLink("T through Z ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx10.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10475 navigationTree[index] = navElement;
michael@0 10476 index++;
michael@0 10477
michael@0 10478 if (currentLevel > 1) currentLevel--
michael@0 10479
michael@0 10480 setLevels();
michael@0 10481 var navElement = navigationLink("Index of Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx11.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10482 navigationTree[index] = navElement;
michael@0 10483 index++;
michael@0 10484
michael@0 10485 currentLevel++;
michael@0 10486
michael@0 10487 setLevels();
michael@0 10488 var navElement = navigationLink("A ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx12.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10489 navigationTree[index] = navElement;
michael@0 10490 index++;
michael@0 10491
michael@0 10492 setLevels();
michael@0 10493 var navElement = navigationLink("B ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx13.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10494 navigationTree[index] = navElement;
michael@0 10495 index++;
michael@0 10496
michael@0 10497 setLevels();
michael@0 10498 var navElement = navigationLink("C ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx14.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10499 navigationTree[index] = navElement;
michael@0 10500 index++;
michael@0 10501
michael@0 10502 setLevels();
michael@0 10503 var navElement = navigationLink("D ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx15.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10504 navigationTree[index] = navElement;
michael@0 10505 index++;
michael@0 10506
michael@0 10507 setLevels();
michael@0 10508 var navElement = navigationLink("E ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx16.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10509 navigationTree[index] = navElement;
michael@0 10510 index++;
michael@0 10511
michael@0 10512 setLevels();
michael@0 10513 var navElement = navigationLink("F through G ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx17.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10514 navigationTree[index] = navElement;
michael@0 10515 index++;
michael@0 10516
michael@0 10517 setLevels();
michael@0 10518 var navElement = navigationLink("H ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx18.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10519 navigationTree[index] = navElement;
michael@0 10520 index++;
michael@0 10521
michael@0 10522 setLevels();
michael@0 10523 var navElement = navigationLink("I through K ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx19.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10524 navigationTree[index] = navElement;
michael@0 10525 index++;
michael@0 10526
michael@0 10527 setLevels();
michael@0 10528 var navElement = navigationLink("L ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx20.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10529 navigationTree[index] = navElement;
michael@0 10530 index++;
michael@0 10531
michael@0 10532 setLevels();
michael@0 10533 var navElement = navigationLink("M ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx21.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10534 navigationTree[index] = navElement;
michael@0 10535 index++;
michael@0 10536
michael@0 10537 setLevels();
michael@0 10538 var navElement = navigationLink("N ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx22.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10539 navigationTree[index] = navElement;
michael@0 10540 index++;
michael@0 10541
michael@0 10542 setLevels();
michael@0 10543 var navElement = navigationLink("O ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx23.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10544 navigationTree[index] = navElement;
michael@0 10545 index++;
michael@0 10546
michael@0 10547 setLevels();
michael@0 10548 var navElement = navigationLink("P ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx24.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10549 navigationTree[index] = navElement;
michael@0 10550 index++;
michael@0 10551
michael@0 10552 setLevels();
michael@0 10553 var navElement = navigationLink("Q ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx25.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10554 navigationTree[index] = navElement;
michael@0 10555 index++;
michael@0 10556
michael@0 10557 setLevels();
michael@0 10558 var navElement = navigationLink("R ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx26.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10559 navigationTree[index] = navElement;
michael@0 10560 index++;
michael@0 10561
michael@0 10562 setLevels();
michael@0 10563 var navElement = navigationLink("S ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx27.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10564 navigationTree[index] = navElement;
michael@0 10565 index++;
michael@0 10566
michael@0 10567 setLevels();
michael@0 10568 var navElement = navigationLink("T ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx28.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10569 navigationTree[index] = navElement;
michael@0 10570 index++;
michael@0 10571
michael@0 10572 setLevels();
michael@0 10573 var navElement = navigationLink("U ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx29.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10574 navigationTree[index] = navElement;
michael@0 10575 index++;
michael@0 10576
michael@0 10577 setLevels();
michael@0 10578 var navElement = navigationLink("V through Z ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx30.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10579 navigationTree[index] = navElement;
michael@0 10580 index++;
michael@0 10581
michael@0 10582 if (currentLevel > 1) currentLevel--
michael@0 10583
michael@0 10584 setLevels();
michael@0 10585 var navElement = navigationLink("Index of ASN.1 IDs ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx31.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10586 navigationTree[index] = navElement;
michael@0 10587 index++;
michael@0 10588
michael@0 10589 currentLevel++;
michael@0 10590
michael@0 10591 setLevels();
michael@0 10592 var navElement = navigationLink("0 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx32.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10593 navigationTree[index] = navElement;
michael@0 10594 index++;
michael@0 10595
michael@0 10596 setLevels();
michael@0 10597 var navElement = navigationLink("1 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx33.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10598 navigationTree[index] = navElement;
michael@0 10599 index++;
michael@0 10600
michael@0 10601 setLevels();
michael@0 10602 var navElement = navigationLink("2 through 2.4 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx34.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10603 navigationTree[index] = navElement;
michael@0 10604 index++;
michael@0 10605
michael@0 10606 setLevels();
michael@0 10607 var navElement = navigationLink("2.5 through 2.9 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx35.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10608 navigationTree[index] = navElement;
michael@0 10609 index++;
michael@0 10610
michael@0 10611 if (currentLevel > 1) currentLevel--
michael@0 10612
michael@0 10613 setLevels();
michael@0 10614 var navElement = navigationLink("Index of LDAP Names ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx36.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10615 navigationTree[index] = navElement;
michael@0 10616 index++;
michael@0 10617
michael@0 10618 currentLevel++;
michael@0 10619
michael@0 10620 setLevels();
michael@0 10621 var navElement = navigationLink("A through B ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx37.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10622 navigationTree[index] = navElement;
michael@0 10623 index++;
michael@0 10624
michael@0 10625 setLevels();
michael@0 10626 var navElement = navigationLink("C ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx38.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10627 navigationTree[index] = navElement;
michael@0 10628 index++;
michael@0 10629
michael@0 10630 setLevels();
michael@0 10631 var navElement = navigationLink("D ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx39.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10632 navigationTree[index] = navElement;
michael@0 10633 index++;
michael@0 10634
michael@0 10635 setLevels();
michael@0 10636 var navElement = navigationLink("E through F ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx40.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10637 navigationTree[index] = navElement;
michael@0 10638 index++;
michael@0 10639
michael@0 10640 setLevels();
michael@0 10641 var navElement = navigationLink("G ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx41.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10642 navigationTree[index] = navElement;
michael@0 10643 index++;
michael@0 10644
michael@0 10645 setLevels();
michael@0 10646 var navElement = navigationLink("H ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx42.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10647 navigationTree[index] = navElement;
michael@0 10648 index++;
michael@0 10649
michael@0 10650 setLevels();
michael@0 10651 var navElement = navigationLink("I through K ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx43.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10652 navigationTree[index] = navElement;
michael@0 10653 index++;
michael@0 10654
michael@0 10655 setLevels();
michael@0 10656 var navElement = navigationLink("L ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx44.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10657 navigationTree[index] = navElement;
michael@0 10658 index++;
michael@0 10659
michael@0 10660 setLevels();
michael@0 10661 var navElement = navigationLink("M ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx45.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10662 navigationTree[index] = navElement;
michael@0 10663 index++;
michael@0 10664
michael@0 10665 setLevels();
michael@0 10666 var navElement = navigationLink("N ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx46.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10667 navigationTree[index] = navElement;
michael@0 10668 index++;
michael@0 10669
michael@0 10670 setLevels();
michael@0 10671 var navElement = navigationLink("O ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx47.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10672 navigationTree[index] = navElement;
michael@0 10673 index++;
michael@0 10674
michael@0 10675 setLevels();
michael@0 10676 var navElement = navigationLink("P ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx48.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10677 navigationTree[index] = navElement;
michael@0 10678 index++;
michael@0 10679
michael@0 10680 setLevels();
michael@0 10681 var navElement = navigationLink("Q through R ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx49.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10682 navigationTree[index] = navElement;
michael@0 10683 index++;
michael@0 10684
michael@0 10685 setLevels();
michael@0 10686 var navElement = navigationLink("S ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx50.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10687 navigationTree[index] = navElement;
michael@0 10688 index++;
michael@0 10689
michael@0 10690 setLevels();
michael@0 10691 var navElement = navigationLink("T ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx51.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10692 navigationTree[index] = navElement;
michael@0 10693 index++;
michael@0 10694
michael@0 10695 setLevels();
michael@0 10696 var navElement = navigationLink("U through Z ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx52.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10697 navigationTree[index] = navElement;
michael@0 10698 index++;
michael@0 10699
michael@0 10700 if (currentLevel > 1) currentLevel--
michael@0 10701
michael@0 10702 setLevels();
michael@0 10703 var navElement = navigationLink("Revision History ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a5i29ah.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10704 navigationTree[index] = navElement;
michael@0 10705 index++;
michael@0 10706
michael@0 10707 if (currentLevel > 1) currentLevel--
michael@0 10708
michael@0 10709 setLevels();
michael@0 10710 var navElement = navigationLink("NDS Iterator Services ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hnv8aaj7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10711 navigationTree[index] = navElement;
michael@0 10712 index++;
michael@0 10713
michael@0 10714 currentLevel++;
michael@0 10715
michael@0 10716 setLevels();
michael@0 10717 var navElement = navigationLink("Concepts ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hj3udfo7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10718 navigationTree[index] = navElement;
michael@0 10719 index++;
michael@0 10720
michael@0 10721 currentLevel++;
michael@0 10722
michael@0 10723 setLevels();
michael@0 10724 var navElement = navigationLink("Iterator Objects ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hwiuqovp.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10725 navigationTree[index] = navElement;
michael@0 10726 index++;
michael@0 10727
michael@0 10728 setLevels();
michael@0 10729 var navElement = navigationLink("Creation of an Iterator Object ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hrb7xece.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10730 navigationTree[index] = navElement;
michael@0 10731 index++;
michael@0 10732
michael@0 10733 setLevels();
michael@0 10734 var navElement = navigationLink("Iterator Indexes ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hqngpqag.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10735 navigationTree[index] = navElement;
michael@0 10736 index++;
michael@0 10737
michael@0 10738 setLevels();
michael@0 10739 var navElement = navigationLink("Positions of an Iterator Object ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/h25zhm0d.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10740 navigationTree[index] = navElement;
michael@0 10741 index++;
michael@0 10742
michael@0 10743 setLevels();
michael@0 10744 var navElement = navigationLink("Current Position Movement with Retrieval Functions ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hn9jdbnd.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10745 navigationTree[index] = navElement;
michael@0 10746 index++;
michael@0 10747
michael@0 10748 setLevels();
michael@0 10749 var navElement = navigationLink("Retrieval of Data ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hy7j1t07.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10750 navigationTree[index] = navElement;
michael@0 10751 index++;
michael@0 10752
michael@0 10753 if (currentLevel > 1) currentLevel--
michael@0 10754
michael@0 10755 setLevels();
michael@0 10756 var navElement = navigationLink("Tasks ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/huypg52u.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10757 navigationTree[index] = navElement;
michael@0 10758 index++;
michael@0 10759
michael@0 10760 currentLevel++;
michael@0 10761
michael@0 10762 setLevels();
michael@0 10763 var navElement = navigationLink("Creating a Search Iterator Object ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hcyx2utx.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10764 navigationTree[index] = navElement;
michael@0 10765 index++;
michael@0 10766
michael@0 10767 setLevels();
michael@0 10768 var navElement = navigationLink("Retrieving and Unpacking Object and Attribute Name Data ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/h9evr0ru.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10769 navigationTree[index] = navElement;
michael@0 10770 index++;
michael@0 10771
michael@0 10772 setLevels();
michael@0 10773 var navElement = navigationLink("Retrieving and Unpacking Object, Attribute, and Value Data ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/htq89y7t.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10774 navigationTree[index] = navElement;
michael@0 10775 index++;
michael@0 10776
michael@0 10777 if (currentLevel > 1) currentLevel--
michael@0 10778
michael@0 10779 setLevels();
michael@0 10780 var navElement = navigationLink("Functions ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/h7qwv271.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10781 navigationTree[index] = navElement;
michael@0 10782 index++;
michael@0 10783
michael@0 10784 currentLevel++;
michael@0 10785
michael@0 10786 setLevels();
michael@0 10787 var navElement = navigationLink("NWDSItrAtEOF ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk29.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10788 navigationTree[index] = navElement;
michael@0 10789 index++;
michael@0 10790
michael@0 10791 setLevels();
michael@0 10792 var navElement = navigationLink("NWDSItrAtFirst ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk36.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10793 navigationTree[index] = navElement;
michael@0 10794 index++;
michael@0 10795
michael@0 10796 setLevels();
michael@0 10797 var navElement = navigationLink("NWDSItrClone ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk43.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10798 navigationTree[index] = navElement;
michael@0 10799 index++;
michael@0 10800
michael@0 10801 setLevels();
michael@0 10802 var navElement = navigationLink("NWDSItrCount ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk50.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10803 navigationTree[index] = navElement;
michael@0 10804 index++;
michael@0 10805
michael@0 10806 setLevels();
michael@0 10807 var navElement = navigationLink("NWDSItrCreateList ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk57.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10808 navigationTree[index] = navElement;
michael@0 10809 index++;
michael@0 10810
michael@0 10811 setLevels();
michael@0 10812 var navElement = navigationLink("NWDSItrCreateSearch ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk64.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10813 navigationTree[index] = navElement;
michael@0 10814 index++;
michael@0 10815
michael@0 10816 setLevels();
michael@0 10817 var navElement = navigationLink("NWDSItrDestroy ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk71.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10818 navigationTree[index] = navElement;
michael@0 10819 index++;
michael@0 10820
michael@0 10821 setLevels();
michael@0 10822 var navElement = navigationLink("NWDSItrGetCurrent ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk77.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10823 navigationTree[index] = navElement;
michael@0 10824 index++;
michael@0 10825
michael@0 10826 setLevels();
michael@0 10827 var navElement = navigationLink("NWDSItrGetInfo ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk84.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10828 navigationTree[index] = navElement;
michael@0 10829 index++;
michael@0 10830
michael@0 10831 setLevels();
michael@0 10832 var navElement = navigationLink("NWDSItrGetNext ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk91.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10833 navigationTree[index] = navElement;
michael@0 10834 index++;
michael@0 10835
michael@0 10836 setLevels();
michael@0 10837 var navElement = navigationLink("NWDSItrGetPosition ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk98.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10838 navigationTree[index] = navElement;
michael@0 10839 index++;
michael@0 10840
michael@0 10841 setLevels();
michael@0 10842 var navElement = navigationLink("NWDSItrGetPrev ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk105.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10843 navigationTree[index] = navElement;
michael@0 10844 index++;
michael@0 10845
michael@0 10846 setLevels();
michael@0 10847 var navElement = navigationLink("NWDSItrSetPosition ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk112.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10848 navigationTree[index] = navElement;
michael@0 10849 index++;
michael@0 10850
michael@0 10851 setLevels();
michael@0 10852 var navElement = navigationLink("NWDSItrSetPositionFromIterator ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk119.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10853 navigationTree[index] = navElement;
michael@0 10854 index++;
michael@0 10855
michael@0 10856 setLevels();
michael@0 10857 var navElement = navigationLink("NWDSItrSkip ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk126.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10858 navigationTree[index] = navElement;
michael@0 10859 index++;
michael@0 10860
michael@0 10861 setLevels();
michael@0 10862 var navElement = navigationLink("NWDSItrTypeDown ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk133.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10863 navigationTree[index] = navElement;
michael@0 10864 index++;
michael@0 10865
michael@0 10866 if (currentLevel > 1) currentLevel--
michael@0 10867
michael@0 10868 setLevels();
michael@0 10869 var navElement = navigationLink("NDS Iterator Example Code ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hw9m9u6o.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10870 navigationTree[index] = navElement;
michael@0 10871 index++;
michael@0 10872
michael@0 10873 currentLevel++;
michael@0 10874
michael@0 10875 setLevels();
michael@0 10876 var navElement = navigationLink("Cloning an Iterator Object: Example ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hur66hmi.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10877 navigationTree[index] = navElement;
michael@0 10878 index++;
michael@0 10879
michael@0 10880 setLevels();
michael@0 10881 var navElement = navigationLink("Counting with NDS Iterators: Example ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hgllfzfg.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10882 navigationTree[index] = navElement;
michael@0 10883 index++;
michael@0 10884
michael@0 10885 setLevels();
michael@0 10886 var navElement = navigationLink("Creating and Using a List Iterator: Example ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hfnbz1tw.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10887 navigationTree[index] = navElement;
michael@0 10888 index++;
michael@0 10889
michael@0 10890 setLevels();
michael@0 10891 var navElement = navigationLink("Creating a Search Iterator and Displaying the Results: Example ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hhe6xegc.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10892 navigationTree[index] = navElement;
michael@0 10893 index++;
michael@0 10894
michael@0 10895 setLevels();
michael@0 10896 var navElement = navigationLink("Getting Iterator Information: Example ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hfg59w8k.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10897 navigationTree[index] = navElement;
michael@0 10898 index++;
michael@0 10899
michael@0 10900 setLevels();
michael@0 10901 var navElement = navigationLink("Getting and Setting the Iterator's Position: Example ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hh03dp06.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10902 navigationTree[index] = navElement;
michael@0 10903 index++;
michael@0 10904
michael@0 10905 setLevels();
michael@0 10906 var navElement = navigationLink("Listing in Reverse Order: Example ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hsj5zfs1.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10907 navigationTree[index] = navElement;
michael@0 10908 index++;
michael@0 10909
michael@0 10910 setLevels();
michael@0 10911 var navElement = navigationLink("Positioning the Iterator with Typedown: Example ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hqvieqdk.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10912 navigationTree[index] = navElement;
michael@0 10913 index++;
michael@0 10914
michael@0 10915 setLevels();
michael@0 10916 var navElement = navigationLink("Skipping Objects in the List: Example ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/ho81tg5d.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10917 navigationTree[index] = navElement;
michael@0 10918 index++;
michael@0 10919
michael@0 10920 if (currentLevel > 1) currentLevel--
michael@0 10921
michael@0 10922 setLevels();
michael@0 10923 var navElement = navigationLink("Revision History ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/a5i29ah.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],"");
michael@0 10924 navigationTree[index] = navElement;
michael@0 10925 index++;
michael@0 10926
michael@0 10927 if (currentLevel > 1) currentLevel--
michael@0 10928
michael@0 10929 if (currentLevel > 1) currentLevel--
michael@0 10930
michael@0 10931 reportCompare('No Crash', 'No Crash', '');

mercurial