diff options
| author | The Android Open Source Project <initial-contribution@android.com> | 2009-03-03 18:28:41 -0800 |
|---|---|---|
| committer | The Android Open Source Project <initial-contribution@android.com> | 2009-03-03 18:28:41 -0800 |
| commit | 648161bb0edfc3d43db63caed5cc5213bc6cb78f (patch) | |
| tree | 4b825dc642cb6eb9a060e54bf8d69288fbee4904 /JavaScriptCore/tests/mozilla/js1_5/Regress | |
| parent | a65af38181ac7d34544586bdb5cd004de93897ad (diff) | |
| download | external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.zip external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.gz external_webkit-648161bb0edfc3d43db63caed5cc5213bc6cb78f.tar.bz2 | |
auto import from //depot/cupcake/@135843
Diffstat (limited to 'JavaScriptCore/tests/mozilla/js1_5/Regress')
50 files changed, 0 insertions, 27904 deletions
diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-102725.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-102725.js deleted file mode 100644 index 1316672..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-102725.js +++ /dev/null @@ -1,77 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS -* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or -* implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. -* All Rights Reserved. -* -* Contributor(s): dbaron@fas.harvard.edu, pschwartau@netscape.com -* Date: 09 October 2001 -* -* SUMMARY: Regression test for Bugzilla bug 102725 -* See http://bugzilla.mozilla.org/show_bug.cgi?id=102725 -* "gcc -O2 problems converting numbers to strings" -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 102725; -var summary = 'Testing converting numbers to strings'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -/* - * Successive calls to foo.toString() were producing different answers! - */ -status = inSection(1); -foo = (new Date()).getTime(); -actual = foo.toString(); -expect = foo.toString(); -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-103602.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-103602.js deleted file mode 100644 index ab8113d..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-103602.js +++ /dev/null @@ -1,162 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2001 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 10 Jan 2002 -* SUMMARY: Reassignment to a const is NOT an error per ECMA -* See http://bugzilla.mozilla.org/show_bug.cgi?id=103602 -* -* ------- Additional Comment #4 From Brendan Eich 2002-01-10 15:30 ------- -* -* That's per ECMA (don't blame me, I fought for what Netscape always did: -* throw an error [could be a catchable exception since 1.3]). -* Readonly properties, when set by assignment, are not changed, but no error -* or exception is thrown. The value of the assignment expression is the value -* of the r.h.s. -* -* If you want a *strict* warning, pls change the summary of this bug to say so. -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 103602; -var summary = 'Reassignment to a const is NOT an error per ECMA'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; -var cnFAIL_1 = 'Redeclaration of a const FAILED to cause an error'; -var cnFAIL_2 = 'Reassigning to a const caused an ERROR! It should not!!!'; -var sEval = ''; - -/* - * Not every implementation supports const (a non-ECMA extension) - * For example, Rhino does not; it would generate a complile-time error. - * So we have to hide this so it will be detected at run-time instead. - */ -try -{ - sEval = 'const one = 1'; - eval(sEval); -} -catch(e) -{ - quit(); // if const is not supported, this testcase is over - -} - - -status = inSection(1); -try -{ - /* - * Redeclaration of const should be a compile-time error. - * Hide so it will be detected at run-time. - */ - sEval = 'const one = 2;'; - eval(sEval); - - expect = ''; // we shouldn't reach this line - actual = cnFAIL_1; - addThis(); -} -catch(e) -{ - // good - we should be here. - actual = expect; - addThis(); -} - - -status = inSection(2); -try -{ - /* - * Reassignment to a const should be NOT be an error, per ECMA. - */ - one = 2; - actual = expect; // good: no error was generated - addThis(); - - // although no error, the assignment should have been ignored - - status = inSection(3); - actual = one; - expect = 1; - addThis(); - - // the value of the EXPRESSION, however, is the value of the r.h.s. - - status = inSection(4); - actual = (one = 2); - expect = 2; - addThis(); -} - -catch(e) -{ - // BAD - we shouldn't be here - expect = ''; - actual = cnFAIL_2; - addThis(); -} - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - for (var i = 0; i < UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-104077.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-104077.js deleted file mode 100644 index 992028e..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-104077.js +++ /dev/null @@ -1,635 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2001 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): chwu@nortelnetworks.com, timeless@mac.com, -* brendan@mozilla.org, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 10 October 2001 -* SUMMARY: Regression test for Bugzilla bug 104077 -* See http://bugzilla.mozilla.org/show_bug.cgi?id=104077 -* "JS crash: with/finally/return" -* -* Also http://bugzilla.mozilla.org/show_bug.cgi?id=120571 -* "JS crash: try/catch/continue." -* -* SpiderMonkey crashed on this code - it shouldn't. -* -* NOTE: the finally-blocks below should execute even if their try-blocks -* have return or throw statements in them: -* -* ------- Additional Comment #76 From Mike Shaver 2001-12-07 01:21 ------- -* finally trumps return, and all other control-flow constructs that cause -* program execution to jump out of the try block: throw, break, etc. Once you -* enter a try block, you will execute the finally block after leaving the try, -* regardless of what happens to make you leave the try. -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 104077; -var summary = "Just testing that we don't crash on with/finally/return -"; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -function addValues(obj) -{ - var sum; - with (obj) - { - try - { - sum = arg1 + arg2; - } - finally - { - return sum; - } - } -} - -status = inSection(1); -var obj = new Object(); -obj.arg1 = 1; -obj.arg2 = 2; -actual = addValues(obj); -expect = 3; -captureThis(); - - - -function tryThis() -{ - var sum = 4 ; - var i = 0; - - while (sum < 10) - { - try - { - sum += 1; - i += 1; - } - finally - { - print("In finally case of tryThis() function"); - } - } - return i; -} - -status = inSection(2); -actual = tryThis(); -expect = 6; -captureThis(); - - - -function myTest(x) -{ - var obj = new Object(); - var msg; - - with (obj) - { - msg = (x != null) ? "NO" : "YES"; - print("Is the provided argument to myTest() null? : " + msg); - - try - { - throw "ZZZ"; - } - catch(e) - { - print("Caught thrown exception = " + e); - } - } - - return 1; -} - -status = inSection(3); -actual = myTest(null); -expect = 1; -captureThis(); - - - -function addValues_2(obj) -{ - var sum = 0; - with (obj) - { - try - { - sum = arg1 + arg2; - with (arg3) - { - while (sum < 10) - { - try - { - if (sum > 5) - return sum; - sum += 1; - } - catch(e) - { - print('Caught an exception in addValues_2() function: ' + e); - } - } - } - } - finally - { - return sum; - } - } -} - -status = inSection(4); -obj = new Object(); -obj.arg1 = 1; -obj.arg2 = 2; -obj.arg3 = new Object(); -obj.arg3.a = 10; -obj.arg3.b = 20; -actual = addValues_2(obj); -expect = 6; -captureThis(); - - - -status = inSection(5); -try -{ - throw new A(); -} -catch(e) -{ -} -finally -{ - try - { - throw new A(); - } - catch(e) - { - } - finally - { - actual = 'a'; - } - actual = 'b'; -} -expect = 'b'; -captureThis(); - - - - -function testfunc(mode) -{ - var obj = new Object(); - with (obj) - { - var num = 100; - var str = "abc" ; - - if (str == null) - { - try - { - throw "authentication.0"; - } - catch(e) - { - } - finally - { - } - - return num; - } - else - { - try - { - if (mode == 0) - throw "authentication.0"; - else - mytest(); - } - catch(e) - { - } - finally - { - } - - return num; - } - } -} - -status = inSection(6); -actual = testfunc(0); -expect = 100; -captureThis(); - -status = inSection(7); -actual = testfunc(); -expect = 100; -captureThis(); - - - - -function entry_menu() -{ - var document = new Object(); - var dialog = new Object(); - var num = 100; - - with (document) - { - with (dialog) - { - try - { - while (true) - { - return num; - } - } - finally - { - } - } - } -} - -status = inSection(8); -actual = entry_menu(); -expect = 100; -captureThis(); - - - - -function addValues_3(obj) -{ - var sum = 0; - - with (obj) - { - try - { - sum = arg1 + arg2; - with (arg3) - { - while (sum < 10) - { - try - { - if (sum > 5) - return sum; - sum += 1; - } - catch (e) - { - sum += 1; - print(e); - } - } - } - } - finally - { - try - { - sum +=1; - print("In finally block of addValues_3() function: sum = " + sum); - } - catch (e if e == 42) - { - sum +=1; - print('In finally catch block of addValues_3() function: sum = ' + sum + ', e = ' + e); - } - finally - { - sum +=1; - print("In finally finally block of addValues_3() function: sum = " + sum); - return sum; - } - } - } -} - -status = inSection(9); -obj = new Object(); -obj.arg1 = 1; -obj.arg2 = 2; -obj.arg3 = new Object(); -obj.arg3.a = 10; -obj.arg3.b = 20; -actual = addValues_3(obj); -expect = 8; -captureThis(); - - - - -function addValues_4(obj) -{ - var sum = 0; - - with (obj) - { - try - { - sum = arg1 + arg2; - with (arg3) - { - while (sum < 10) - { - try - { - if (sum > 5) - return sum; - sum += 1; - } - catch (e) - { - sum += 1; - print(e); - } - } - } - } - finally - { - try - { - sum += 1; - print("In finally block of addValues_4() function: sum = " + sum); - } - catch (e if e == 42) - { - sum += 1; - print("In 1st finally catch block of addValues_4() function: sum = " + sum + ", e = " + e); - } - catch (e if e == 43) - { - sum += 1; - print("In 2nd finally catch block of addValues_4() function: sum = " + sum + ", e = " + e); - } - finally - { - sum += 1; - print("In finally finally block of addValues_4() function: sum = " + sum); - return sum; - } - } - } -} - -status = inSection(10); -obj = new Object(); -obj.arg1 = 1; -obj.arg2 = 2; -obj.arg3 = new Object(); -obj.arg3.a = 10; -obj.arg3.b = 20; -actual = addValues_4(obj); -expect = 8; -captureThis(); - - - - -function addValues_5(obj) -{ - var sum = 0; - - with (obj) - { - try - { - sum = arg1 + arg2; - with (arg3) - { - while (sum < 10) - { - try - { - if (sum > 5) - return sum; - sum += 1; - } - catch (e) - { - sum += 1; - print(e); - } - } - } - } - finally - { - try - { - sum += 1; - print("In finally block of addValues_5() function: sum = " + sum); - } - catch (e) - { - sum += 1; - print("In finally catch block of addValues_5() function: sum = " + sum + ", e = " + e); - } - finally - { - sum += 1; - print("In finally finally block of addValues_5() function: sum = " + sum); - return sum; - } - } - } -} - -status = inSection(11); -obj = new Object(); -obj.arg1 = 1; -obj.arg2 = 2; -obj.arg3 = new Object(); -obj.arg3.a = 10; -obj.arg3.b = 20; -actual = addValues_5(obj); -expect = 8; -captureThis(); - - - - -function testObj(obj) -{ - var x = 42; - - try - { - with (obj) - { - if (obj.p) - throw obj.p; - x = obj.q; - } - } - finally - { - print("in finally block of testObj() function"); - return 999; - } -} - -status = inSection(12); -obj = {p:43}; -actual = testObj(obj); -expect = 999; -captureThis(); - - - -/* - * Next two cases are from http://bugzilla.mozilla.org/show_bug.cgi?id=120571 - */ -function a120571() -{ - while(0) - { - try - { - } - catch(e) - { - continue; - } - } -} - -// this caused a crash! Test to see that it doesn't now. -print(a120571); - -// Now test that we have a non-null value for a120571.toString() -status = inSection(13); -try -{ - actual = a120571.toString().match(/continue/)[0]; -} -catch(e) -{ - actual = 'FAILED! Did not find "continue" in function body'; -} -expect = 'continue'; -captureThis(); - - - - -function b() -{ - for(;;) - { - try - { - } - catch(e) - { - continue; - } - } -} - -// this caused a crash!!! Test to see that it doesn't now. -print(b); - -// Now test that we have a non-null value for b.toString() -status = inSection(14); -try -{ - actual = b.toString().match(/continue/)[0]; -} -catch(e) -{ - actual = 'FAILED! Did not find "continue" in function body'; -} -expect = 'continue'; -captureThis(); - - - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function captureThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-110286.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-110286.js deleted file mode 100644 index 36959c2..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-110286.js +++ /dev/null @@ -1,151 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2001 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 16 Nov 2001 -* SUMMARY: multiline comments containing "/*" should not be syntax errors -* See http://bugzilla.mozilla.org/show_bug.cgi?id=110286 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 110286; -var summary = 'Multiline comments containing "/*" should not be syntax errors'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -status = inSection(1); -actual = eval("/* /* */3"); -expect = 3; -addThis(); - -status = inSection(2); -actual = eval("3/* /* */"); -expect = 3; -addThis(); - -status = inSection(3); -actual = eval("/* 3/* */"); -expect = undefined; -addThis(); - -status = inSection(4); -actual = eval("/* /*3 */"); -expect = undefined; -addThis(); - -status = inSection(5); -var passed = true; -try -{ - eval("/* blah blah /* blah blah */"); -} -catch(e) -{ - passed = false; -} -actual = passed; -expect = true; -addThis(); - - -status = inSection(6); -try -{ - /* - /*A/* /* /*A/* - /* blah blah /* - /* blah blah /* - /* /*A/* /*A/* - */ - var result = 'PASSED'; -} -catch(e) -{ - var result = 'FAILED'; -} -actual = result; -expect = 'PASSED'; -addThis(); - - -status = inSection(7); -var str = 'ABC'; -/* - * /* - * /* - * /* - * /* - * - */ -str += 'DEF'; -actual = str; -expect = 'ABCDEF'; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - for (var i = 0; i < UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-111557.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-111557.js deleted file mode 100644 index 375b906..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-111557.js +++ /dev/null @@ -1,10960 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2001 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 26 Nov 2001 -* SUMMARY: JS should not crash on this code -* See http://bugzilla.mozilla.org/show_bug.cgi?id=111557 -* -*/ -//----------------------------------------------------------------------------- -var bug = 111557; -var summary = "Just seeing that we don't crash on this code -"; - -printBugNumber(bug); -printStatus(summary); - - -/* - * NOTE: have defined |top| as |this| to make this a standalone JS shell test. - * This came from the HTML of a frame, where |top| would have its DOM meaning. - */ -var top = this; - - top.authors = new Array(); - top.titles = new Array(); - var i = 0; - - - top.authors[i] = "zPROD xA.5375."; - top.titles[i] = "NDS Libraries for C"; - i++; - - top.authors[i] = "zFLDR xB.5375.0100."; - top.titles[i] = "NDS Backup Services"; - i++; - - top.authors[i] = "zFLDR xC.5375.0100.0001."; - top.titles[i] = "Functions"; - i++; - - top.authors[i] = "zHTML xD.5375.0100.0001.0001."; - top.titles[i] = "NDSBackupServerData"; - i++; - - top.authors[i] = "zHTML xD.5375.0100.0001.0002."; - top.titles[i] = "NDSFreeNameList"; - i++; - - top.authors[i] = "zHTML xD.5375.0100.0001.0003."; - top.titles[i] = "NDSGetReplicaPartitionNames"; - i++; - - top.authors[i] = "zHTML xD.5375.0100.0001.0004."; - top.titles[i] = "NDSIsOnlyServerInTree"; - i++; - - top.authors[i] = "zHTML xD.5375.0100.0001.0005."; - top.titles[i] = "NDSSYSVolumeRecovery"; - i++; - - top.authors[i] = "zHTML xD.5375.0100.0001.0006."; - top.titles[i] = "NDSVerifyServerInfo"; - i++; - - top.authors[i] = "zFLDR xC.5375.0100.0002."; - top.titles[i] = "Structures"; - i++; - - top.authors[i] = "zHTML xD.5375.0100.0002.0001."; - top.titles[i] = "NAMEID_TYPE"; - i++; - - top.authors[i] = "zFLDR xC.5375.0100.0003."; - top.titles[i] = "Values"; - i++; - - top.authors[i] = "zHTML xD.5375.0100.0003.0001."; - top.titles[i] = "NDS Reason Flags"; - i++; - - top.authors[i] = "zHTML xD.5375.0100.0003.0002."; - top.titles[i] = "NDS Server Flags"; - i++; - - top.authors[i] = "zHTML xC.5375.0100.0004."; - top.titles[i] = "Revision History"; - i++; - - top.authors[i] = "zFLDR xB.5375.0300."; - top.titles[i] = "NDS Event Services"; - i++; - - top.authors[i] = "zFLDR xC.5375.0300.0001."; - top.titles[i] = "Concepts"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0001.0001."; - top.titles[i] = "NDS Event Introduction"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0001.0002."; - top.titles[i] = "NDS Event Functions"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0001.0003."; - top.titles[i] = "NDS Event Priorities"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0001.0004."; - top.titles[i] = "NDS Event Data Filtering"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0001.0005."; - top.titles[i] = "NDS Event Types"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0001.0006."; - top.titles[i] = "Global Network Monitoring"; - i++; - - top.authors[i] = "zFLDR xC.5375.0300.0002."; - top.titles[i] = "Tasks"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0002.0001."; - top.titles[i] = "Monitoring NDS Events"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0002.0002."; - top.titles[i] = "Registering for NDS Events"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0002.0003."; - top.titles[i] = "Unregistering for NDS Events"; - i++; - - top.authors[i] = "zFLDR xC.5375.0300.0003."; - top.titles[i] = "Functions"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0003.0001."; - top.titles[i] = "NWDSEConvertEntryName"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0003.0002."; - top.titles[i] = "NWDSEGetLocalAttrID"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0003.0003."; - top.titles[i] = "NWDSEGetLocalAttrName"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0003.0004."; - top.titles[i] = "NWDSEGetLocalClassID"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0003.0005."; - top.titles[i] = "NWDSEGetLocalClassName"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0003.0006."; - top.titles[i] = "NWDSEGetLocalEntryID"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0003.0007."; - top.titles[i] = "NWDSEGetLocalEntryName"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0003.0008."; - top.titles[i] = "NWDSERegisterForEvent"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0003.0009."; - top.titles[i] = "NWDSERegisterForEventWithResult"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0003.0010."; - top.titles[i] = "NWDSEUnRegisterForEvent"; - i++; - - top.authors[i] = "zFLDR xC.5375.0300.0004."; - top.titles[i] = "Structures"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0001."; - top.titles[i] = "DSEACL"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0002."; - top.titles[i] = "DSEBackLink"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0003."; - top.titles[i] = "DSEBinderyObjectInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0004."; - top.titles[i] = "DSEBitString"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0005."; - top.titles[i] = "DSEChangeConnState"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0006."; - top.titles[i] = "DSECIList"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0007."; - top.titles[i] = "DSEDebugInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0008."; - top.titles[i] = "DSEEmailAddress"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0009."; - top.titles[i] = "DSEEntryInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0010."; - top.titles[i] = "DSEEntryInfo2"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0011."; - top.titles[i] = "DSEEventData"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0012."; - top.titles[i] = "DSEFaxNumber"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0013."; - top.titles[i] = "DSEHold"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0014."; - top.titles[i] = "DSEModuleState"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0015."; - top.titles[i] = "DSENetAddress"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0016."; - top.titles[i] = "DSEOctetList"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0017."; - top.titles[i] = "DSEPath"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0018."; - top.titles[i] = "DSEReplicaPointer"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0019."; - top.titles[i] = "DSESEVInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0020."; - top.titles[i] = "DSETimeStamp"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0021."; - top.titles[i] = "DSETraceInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0022."; - top.titles[i] = "DSETypedName"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0023."; - top.titles[i] = "DSEVALData"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0004.0024."; - top.titles[i] = "DSEValueInfo"; - i++; - - top.authors[i] = "zFLDR xC.5375.0300.0005."; - top.titles[i] = "Values"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0005.0001."; - top.titles[i] = "Event Priorities"; - i++; - - top.authors[i] = "zHTML xD.5375.0300.0005.0002."; - top.titles[i] = "Event Types"; - i++; - - top.authors[i] = "zHTML xC.5375.0300.0006."; - top.titles[i] = "Revision History"; - i++; - - top.authors[i] = "zFLDR xB.5375.0600."; - top.titles[i] = "NDS Technical Overview"; - i++; - - top.authors[i] = "zFLDR xC.5375.0600.0001."; - top.titles[i] = "NDS as the Internet Directory"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0001.0001."; - top.titles[i] = "Requirements for Networks and the Internet"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0001.0002."; - top.titles[i] = "NDS Compliance to X.500 Standard"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0001.0003."; - top.titles[i] = "NDS Compliance with LDAP v3"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0001.0004."; - top.titles[i] = "Directory Access Protocols"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0001.0005."; - top.titles[i] = "Programming Interfaces for NDS"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0001.0006."; - top.titles[i] = "NDS Architecture"; - i++; - - top.authors[i] = "zFLDR xC.5375.0600.0002."; - top.titles[i] = "NDS Objects"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0002.0001."; - top.titles[i] = "NDS Names"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0002.0002."; - top.titles[i] = "Types of Information Stored in NDS"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0002.0003."; - top.titles[i] = "Retrieval of Information from NDS"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0002.0004."; - top.titles[i] = "Tree Walking"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0002.0005."; - top.titles[i] = "NDS Object Management"; - i++; - - top.authors[i] = "zFLDR xC.5375.0600.0003."; - top.titles[i] = "NDS Security"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0003.0001."; - top.titles[i] = "Authentication"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0003.0002."; - top.titles[i] = "Access Control Lists"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0003.0003."; - top.titles[i] = "Inheritance"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0003.0004."; - top.titles[i] = "NetWare File System"; - i++; - - top.authors[i] = "zFLDR xC.5375.0600.0004."; - top.titles[i] = "Partitions and Replicas"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0004.0001."; - top.titles[i] = "Partitioning"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0004.0002."; - top.titles[i] = "Replication"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0004.0003."; - top.titles[i] = "Distributed Reference Management"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0004.0004."; - top.titles[i] = "Partition Operations"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0004.0005."; - top.titles[i] = "Synchronization"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0004.0006."; - top.titles[i] = "Background Processes"; - i++; - - top.authors[i] = "zFLDR xC.5375.0600.0005."; - top.titles[i] = "Bindery Services"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0005.0001."; - top.titles[i] = "NDS Bindery Context"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0005.0002."; - top.titles[i] = "Bindery Context Path"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0005.0003."; - top.titles[i] = "Bindery Context Eclipsing"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0005.0004."; - top.titles[i] = "NDS Bindery Objects"; - i++; - - top.authors[i] = "zFLDR xC.5375.0600.0006."; - top.titles[i] = "NDS Return Values"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0006.0001."; - top.titles[i] = "NDS Return Values from the Operating System"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0006.0002."; - top.titles[i] = "NDS Client Return Values"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0006.0003."; - top.titles[i] = "NDS Agent Return Values"; - i++; - - top.authors[i] = "zFLDR xC.5375.0600.0007."; - top.titles[i] = "Directory Services Trace Utilities"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0007.0001."; - top.titles[i] = "Using the DSTrace NLM"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0007.0002."; - top.titles[i] = "Using Basic SET DSTrace Commands"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0007.0003."; - top.titles[i] = "Starting Background Processes with SET DSTrace"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0007.0004."; - top.titles[i] = "Tuning Background Processes"; - i++; - - top.authors[i] = "zHTML xD.5375.0600.0007.0005."; - top.titles[i] = "Enabling DSTrace Messages with SET DSTrace"; - i++; - - top.authors[i] = "zHTML xC.5375.0600.0008."; - top.titles[i] = "Revision History"; - i++; - - top.authors[i] = "zFLDR xB.5375.0200."; - top.titles[i] = "NDS Core Services"; - i++; - - top.authors[i] = "zFLDR xC.5375.0200.0001."; - top.titles[i] = "Programming Concepts"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0001."; - top.titles[i] = "Context Handles"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0002."; - top.titles[i] = "Buffer Management"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0003."; - top.titles[i] = "Read Requests for Object Information"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0004."; - top.titles[i] = "Search Requests"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0005."; - top.titles[i] = "Developing in a Loosely Consistent Environment"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0006."; - top.titles[i] = "Add Object Requests"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0007."; - top.titles[i] = "NDS Security and Applications"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0008."; - top.titles[i] = "Authentication of Client Applications"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0009."; - top.titles[i] = "Multiple Tree Support"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0010."; - top.titles[i] = "Effective Rights Function"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0011."; - top.titles[i] = "Partition Functions"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0012."; - top.titles[i] = "Replica Functions"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0013."; - top.titles[i] = "Read Requests for Schema Information"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0001.0014."; - top.titles[i] = "Schema Extension Requests"; - i++; - - top.authors[i] = "zFLDR xC.5375.0200.0002."; - top.titles[i] = "Tasks"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0002.0001."; - top.titles[i] = "Context Handle Tasks"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0002.0002."; - top.titles[i] = "Buffer Tasks"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0002.0003."; - top.titles[i] = "Authentication and Connection Tasks"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0002.0004."; - top.titles[i] = "Object Tasks"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0002.0005."; - top.titles[i] = "Partition and Replica Tasks"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0002.0006."; - top.titles[i] = "Schema Tasks"; - i++; - - top.authors[i] = "zFLDR xC.5375.0200.0003."; - top.titles[i] = "Functions"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0001."; - top.titles[i] = "NWDSAbbreviateName"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0002."; - top.titles[i] = "NWDSAbortPartitionOperation"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0003."; - top.titles[i] = "NWDSAddFilterToken"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0004."; - top.titles[i] = "NWDSAddObject"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0005."; - top.titles[i] = "NWDSAddPartition (obsolete---moved from .h file 11/99)"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0006."; - top.titles[i] = "NWDSAddReplica"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0007."; - top.titles[i] = "NWDSAddSecurityEquiv"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0008."; - top.titles[i] = "NWDSAllocBuf"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0009."; - top.titles[i] = "NWDSAllocFilter"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0010."; - top.titles[i] = "NWDSAuditGetObjectID"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0011."; - top.titles[i] = "NWDSAuthenticate"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0012."; - top.titles[i] = "NWDSAuthenticateConn"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0013."; - top.titles[i] = "NWDSAuthenticateConnEx"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0014."; - top.titles[i] = "NWDSBackupObject"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0015."; - top.titles[i] = "NWDSBeginClassItem"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0016."; - top.titles[i] = "NWDSCanDSAuthenticate"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0017."; - top.titles[i] = "NWDSCanonicalizeName"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0018."; - top.titles[i] = "NWDSChangeObjectPassword"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0019."; - top.titles[i] = "NWDSChangeReplicaType"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0020."; - top.titles[i] = "NWDSCIStringsMatch"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0021."; - top.titles[i] = "NWDSCloseIteration"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0022."; - top.titles[i] = "NWDSCompare"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0023."; - top.titles[i] = "NWDSComputeAttrValSize"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0024."; - top.titles[i] = "NWDSCreateContext (obsolete---moved from .h file 6/99)"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0025."; - top.titles[i] = "NWDSCreateContextHandle"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0026."; - top.titles[i] = "NWDSDefineAttr"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0027."; - top.titles[i] = "NWDSDefineClass"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0028."; - top.titles[i] = "NWDSDelFilterToken"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0029."; - top.titles[i] = "NWDSDuplicateContext (obsolete 03/99)"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0030."; - top.titles[i] = "NWDSDuplicateContextHandle"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0031."; - top.titles[i] = "NWDSExtSyncList"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0032."; - top.titles[i] = "NWDSExtSyncRead"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0033."; - top.titles[i] = "NWDSExtSyncSearch"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0034."; - top.titles[i] = "NWDSFreeBuf"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0035."; - top.titles[i] = "NWDSFreeContext"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0036."; - top.titles[i] = "NWDSFreeFilter"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0037."; - top.titles[i] = "NWDSGenerateObjectKeyPair"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0038."; - top.titles[i] = "NWDSGetAttrCount"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0039."; - top.titles[i] = "NWDSGetAttrDef"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0040."; - top.titles[i] = "NWDSGetAttrName"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0041."; - top.titles[i] = "NWDSGetAttrVal"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0042."; - top.titles[i] = "NWDSGetAttrValFlags"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0043."; - top.titles[i] = "NWDSGetAttrValModTime"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0044."; - top.titles[i] = "NWDSGetBinderyContext"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0045."; - top.titles[i] = "NWDSGetClassDef"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0046."; - top.titles[i] = "NWDSGetClassDefCount"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0047."; - top.titles[i] = "NWDSGetClassItem"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0048."; - top.titles[i] = "NWDSGetClassItemCount"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0049."; - top.titles[i] = "NWDSGetContext"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0050."; - top.titles[i] = "NWDSGetCountByClassAndName"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0051."; - top.titles[i] = "NWDSGetCurrentUser"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0052."; - top.titles[i] = "NWDSGetDefNameContext"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0053."; - top.titles[i] = "NWDSGetDSIInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0054."; - top.titles[i] = "NWDSGetDSVerInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0055."; - top.titles[i] = "NWDSGetEffectiveRights"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0056."; - top.titles[i] = "NWDSGetMonitoredConnRef"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0057."; - top.titles[i] = "NWDSGetNDSInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0058."; - top.titles[i] = "NWDSGetObjectCount"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0059."; - top.titles[i] = "NWDSGetObjectHostServerAddress"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0060."; - top.titles[i] = "NWDSGetObjectName"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0061."; - top.titles[i] = "NWDSGetObjectNameAndInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0062."; - top.titles[i] = "NWDSGetPartitionExtInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0063."; - top.titles[i] = "NWDSGetPartitionExtInfoPtr"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0064."; - top.titles[i] = "NWDSGetPartitionInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0065."; - top.titles[i] = "NWDSGetPartitionRoot"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0066."; - top.titles[i] = "NWDSGetServerAddresses (obsolete 3/98)"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0067."; - top.titles[i] = "NWDSGetServerAddresses2"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0068."; - top.titles[i] = "NWDSGetServerDN"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0069."; - top.titles[i] = "NWDSGetServerName"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0070."; - top.titles[i] = "NWDSGetSyntaxCount"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0071."; - top.titles[i] = "NWDSGetSyntaxDef"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0072."; - top.titles[i] = "NWDSGetSyntaxID"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0073."; - top.titles[i] = "NWDSInitBuf"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0074."; - top.titles[i] = "NWDSInspectEntry"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0075."; - top.titles[i] = "NWDSJoinPartitions"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0076."; - top.titles[i] = "NWDSList"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0077."; - top.titles[i] = "NWDSListAttrsEffectiveRights"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0078."; - top.titles[i] = "NWDSListByClassAndName"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0079."; - top.titles[i] = "NWDSListContainableClasses"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0080."; - top.titles[i] = "NWDSListContainers"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0081."; - top.titles[i] = "NWDSListPartitions"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0082."; - top.titles[i] = "NWDSListPartitionsExtInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0083."; - top.titles[i] = "NWDSLogin"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0084."; - top.titles[i] = "NWDSLoginAsServer"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0085."; - top.titles[i] = "NWDSLogout"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0086."; - top.titles[i] = "NWDSMapIDToName"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0087."; - top.titles[i] = "NWDSMapNameToID"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0088."; - top.titles[i] = "NWDSModifyClassDef"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0089."; - top.titles[i] = "NWDSModifyDN"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0090."; - top.titles[i] = "NWDSModifyObject"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0091."; - top.titles[i] = "NWDSModifyRDN"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0092."; - top.titles[i] = "NWDSMoveObject"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0093."; - top.titles[i] = "NWDSMutateObject"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0094."; - top.titles[i] = "NWDSOpenConnToNDSServer"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0095."; - top.titles[i] = "NWDSOpenMonitoredConn"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0096."; - top.titles[i] = "NWDSOpenStream"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0097."; - top.titles[i] = "NWDSPartitionReceiveAllUpdates"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0098."; - top.titles[i] = "NWDSPartitionSendAllUpdates"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0099."; - top.titles[i] = "NWDSPutAttrName"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0100."; - top.titles[i] = "NWDSPutAttrNameAndVal"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0101."; - top.titles[i] = "NWDSPutAttrVal"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0102."; - top.titles[i] = "NWDSPutChange"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0103."; - top.titles[i] = "NWDSPutChangeAndVal"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0104."; - top.titles[i] = "NWDSPutClassItem"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0105."; - top.titles[i] = "NWDSPutClassName"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0106."; - top.titles[i] = "NWDSPutFilter"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0107."; - top.titles[i] = "NWDSPutSyntaxName"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0108."; - top.titles[i] = "NWDSRead"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0109."; - top.titles[i] = "NWDSReadAttrDef"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0110."; - top.titles[i] = "NWDSReadClassDef"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0111."; - top.titles[i] = "NWDSReadNDSInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0112."; - top.titles[i] = "NWDSReadObjectDSIInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0113."; - top.titles[i] = "NWDSReadObjectInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0114."; - top.titles[i] = "NWDSReadReferences"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0115."; - top.titles[i] = "NWDSReadSyntaxDef"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0116."; - top.titles[i] = "NWDSReadSyntaxes"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0117."; - top.titles[i] = "NWDSReloadDS"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0118."; - top.titles[i] = "NWDSRemoveAllTypes"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0119."; - top.titles[i] = "NWDSRemoveAttrDef"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0120."; - top.titles[i] = "NWDSRemoveClassDef"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0121."; - top.titles[i] = "NWDSRemoveObject"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0122."; - top.titles[i] = "NWDSRemovePartition"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0123."; - top.titles[i] = "NWDSRemoveReplica"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0124."; - top.titles[i] = "NWDSRemSecurityEquiv"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0125."; - top.titles[i] = "NWDSRepairTimeStamps"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0126."; - top.titles[i] = "NWDSReplaceAttrNameAbbrev"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0127."; - top.titles[i] = "NWDSResolveName"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0128."; - top.titles[i] = "NWDSRestoreObject"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0129."; - top.titles[i] = "NWDSReturnBlockOfAvailableTrees"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0130."; - top.titles[i] = "NWDSScanConnsForTrees"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0131."; - top.titles[i] = "NWDSScanForAvailableTrees"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0132."; - top.titles[i] = "NWDSSearch"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0133."; - top.titles[i] = "NWDSSetContext"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0134."; - top.titles[i] = "NWDSSetCurrentUser"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0135."; - top.titles[i] = "NWDSSetDefNameContext"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0136."; - top.titles[i] = "NWDSSetMonitoredConnection"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0137."; - top.titles[i] = "NWDSSplitPartition"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0138."; - top.titles[i] = "NWDSSyncPartition"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0139."; - top.titles[i] = "NWDSSyncReplicaToServer"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0140."; - top.titles[i] = "NWDSSyncSchema"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0141."; - top.titles[i] = "NWDSUnlockConnection"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0142."; - top.titles[i] = "NWDSVerifyObjectPassword"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0143."; - top.titles[i] = "NWDSWhoAmI"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0144."; - top.titles[i] = "NWGetDefaultNameContext"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0145."; - top.titles[i] = "NWGetFileServerUTCTime"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0146."; - top.titles[i] = "NWGetNumConnections"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0147."; - top.titles[i] = "NWGetNWNetVersion"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0148."; - top.titles[i] = "NWGetPreferredConnName"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0149."; - top.titles[i] = "NWIsDSAuthenticated"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0150."; - top.titles[i] = "NWIsDSServer"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0151."; - top.titles[i] = "NWNetInit"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0152."; - top.titles[i] = "NWNetTerm"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0153."; - top.titles[i] = "NWSetDefaultNameContext"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0003.0154."; - top.titles[i] = "NWSetPreferredDSTree"; - i++; - - top.authors[i] = "zFLDR xC.5375.0200.0004."; - top.titles[i] = "Structures"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0001."; - top.titles[i] = "Asn1ID_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0002."; - top.titles[i] = "Attr_Info_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0003."; - top.titles[i] = "Back_Link_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0004."; - top.titles[i] = "Bit_String_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0005."; - top.titles[i] = "Buf_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0006."; - top.titles[i] = "CI_List_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0007."; - top.titles[i] = "Class_Info_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0008."; - top.titles[i] = "EMail_Address_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0009."; - top.titles[i] = "Fax_Number_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0010."; - top.titles[i] = "Filter_Cursor_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0011."; - top.titles[i] = "Filter_Node_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0012."; - top.titles[i] = "Hold_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0013."; - top.titles[i] = "NDSOSVersion_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0014."; - top.titles[i] = "NDSStatsInfo_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0015."; - top.titles[i] = "Net_Address_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0016."; - top.titles[i] = "NWDS_TimeStamp_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0017."; - top.titles[i] = "Object_ACL_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0018."; - top.titles[i] = "Object_Info_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0019."; - top.titles[i] = "Octet_List_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0020."; - top.titles[i] = "Octet_String_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0021."; - top.titles[i] = "Path_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0022."; - top.titles[i] = "Replica_Pointer_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0023."; - top.titles[i] = "Syntax_Info_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0024."; - top.titles[i] = "TimeStamp_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0025."; - top.titles[i] = "Typed_Name_T"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0004.0026."; - top.titles[i] = "Unknown_Attr_T"; - i++; - - top.authors[i] = "zFLDR xC.5375.0200.0005."; - top.titles[i] = "Values"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0001."; - top.titles[i] = "Attribute Constraint Flags"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0002."; - top.titles[i] = "Attribute Value Flags"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0003."; - top.titles[i] = "Buffer Operation Types and Related Functions"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0004."; - top.titles[i] = "Class Flags"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0005."; - top.titles[i] = "Change Types for Modifying Objects"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0006."; - top.titles[i] = "Context Keys and Flags"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0007."; - top.titles[i] = "Default Context Key Values"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0008."; - top.titles[i] = "DCK_FLAGS Bit Values"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0009."; - top.titles[i] = "DCK_NAME_FORM Values"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0010."; - top.titles[i] = "DCK_CONFIDENCE Bit Values"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0011."; - top.titles[i] = "DCK_DSI_FLAGS Values"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0012."; - top.titles[i] = "DSI_ENTRY_FLAGS Values"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0013."; - top.titles[i] = "Filter Tokens"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0014."; - top.titles[i] = "Information Types for Attribute Definitions"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0015."; - top.titles[i] = "Information Types for Class Definitions"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0016."; - top.titles[i] = "Information Types for Search and Read"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0017."; - top.titles[i] = "Name Space Types"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0018."; - top.titles[i] = "NDS Access Control Rights"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0019."; - top.titles[i] = "NDS Ping Flags"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0020."; - top.titles[i] = "DSP Replica Information Flags"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0021."; - top.titles[i] = "Network Address Types"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0022."; - top.titles[i] = "Scope Flags"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0023."; - top.titles[i] = "Replica Types"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0024."; - top.titles[i] = "Replica States"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0025."; - top.titles[i] = "Syntax Matching Flags"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0005.0026."; - top.titles[i] = "Syntax IDs"; - i++; - - top.authors[i] = "zFLDR xC.5375.0200.0006."; - top.titles[i] = "NDS Example Code"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0006.0001."; - top.titles[i] = "Context Handle"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0006.0002."; - top.titles[i] = "Object and Attribute"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0006.0003."; - top.titles[i] = "Browsing and Searching"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0006.0004."; - top.titles[i] = "Batch Modification of Objects and Attributes"; - i++; - - top.authors[i] = "zHTML xD.5375.0200.0006.0005."; - top.titles[i] = "Schema"; - i++; - - top.authors[i] = "zHTML xC.5375.0200.0007."; - top.titles[i] = "Revision History"; - i++; - - top.authors[i] = "zFLDR xB.5375.0500."; - top.titles[i] = "NDS Schema Reference"; - i++; - - top.authors[i] = "zFLDR xC.5375.0500.0001."; - top.titles[i] = "Schema Concepts"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0001.0001."; - top.titles[i] = "Schema Structure"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0001.0002."; - top.titles[i] = "Schema Components"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0001.0003."; - top.titles[i] = "Object Classes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0001.0004."; - top.titles[i] = "Naming Attributes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0001.0005."; - top.titles[i] = "Containment Classes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0001.0006."; - top.titles[i] = "Super Classes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0001.0007."; - top.titles[i] = "Object Class Flags"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0001.0008."; - top.titles[i] = "Mandatory and Optional Attributes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0001.0009."; - top.titles[i] = "Default ACL Templates"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0001.0010."; - top.titles[i] = "Auxiliary Classes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0001.0011."; - top.titles[i] = "Attribute Type Definitions"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0001.0012."; - top.titles[i] = "Attribute Syntax Definitions"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0001.0013."; - top.titles[i] = "Schema Extensions"; - i++; - - top.authors[i] = "zFLDR xC.5375.0500.0002."; - top.titles[i] = "Base Object Class Definitions"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0001."; - top.titles[i] = "AFP Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0002."; - top.titles[i] = "Alias"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0003."; - top.titles[i] = "applicationEntity"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0004."; - top.titles[i] = "applicationProcess"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0005."; - top.titles[i] = "Audit:File Object"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0006."; - top.titles[i] = "Bindery Object"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0007."; - top.titles[i] = "Bindery Queue"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0008."; - top.titles[i] = "certificationAuthority"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0009."; - top.titles[i] = "CommExec"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0010."; - top.titles[i] = "Computer"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0011."; - top.titles[i] = "Country"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0012."; - top.titles[i] = "cRLDistributionPoint"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0013."; - top.titles[i] = "dcObject"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0014."; - top.titles[i] = "Device"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0015."; - top.titles[i] = "Directory Map"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0016."; - top.titles[i] = "domain"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0017."; - top.titles[i] = "dSA"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0018."; - top.titles[i] = "External Entity"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0019."; - top.titles[i] = "Group"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0020."; - top.titles[i] = "LDAP Group"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0021."; - top.titles[i] = "LDAP Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0022."; - top.titles[i] = "List"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0023."; - top.titles[i] = "Locality"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0024."; - top.titles[i] = "MASV:Security Policy"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0025."; - top.titles[i] = "Message Routing Group"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0026."; - top.titles[i] = "Messaging Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0027."; - top.titles[i] = "NCP Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0028."; - top.titles[i] = "ndsLoginProperties"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0029."; - top.titles[i] = "NDSPKI:Certificate Authority"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0030."; - top.titles[i] = "NDSPKI:Key Material"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0031."; - top.titles[i] = "NDSPKI:SD Key Access Partition"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0032."; - top.titles[i] = "NDSPKI:SD Key List"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0033."; - top.titles[i] = "NDSPKI:Trusted Root"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0034."; - top.titles[i] = "NDSPKI:Trusted Root Object"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0035."; - top.titles[i] = "NSCP:groupOfCertificates"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0036."; - top.titles[i] = "NSCP:mailGroup1"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0037."; - top.titles[i] = "NSCP:mailRecipient"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0038."; - top.titles[i] = "NSCP:NetscapeMailServer5"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0039."; - top.titles[i] = "NSCP:NetscapeServer5"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0040."; - top.titles[i] = "NSCP:nginfo3"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0041."; - top.titles[i] = "NSCP:nsLicenseUser"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0042."; - top.titles[i] = "Organization"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0043."; - top.titles[i] = "Organizational Person"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0044."; - top.titles[i] = "Organizational Role"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0045."; - top.titles[i] = "Organizational Unit"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0046."; - top.titles[i] = "Partition"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0047."; - top.titles[i] = "Person"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0048."; - top.titles[i] = "pkiCA"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0049."; - top.titles[i] = "pkiUser"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0050."; - top.titles[i] = "Print Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0051."; - top.titles[i] = "Printer"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0052."; - top.titles[i] = "Profile"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0053."; - top.titles[i] = "Queue"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0054."; - top.titles[i] = "Resource"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0055."; - top.titles[i] = "SAS:Security"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0056."; - top.titles[i] = "SAS:Service"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0057."; - top.titles[i] = "Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0058."; - top.titles[i] = "strongAuthenticationUser"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0059."; - top.titles[i] = "Template"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0060."; - top.titles[i] = "Top"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0061."; - top.titles[i] = "Tree Root"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0062."; - top.titles[i] = "Unknown"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0063."; - top.titles[i] = "User"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0064."; - top.titles[i] = "userSecurityInformation"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0065."; - top.titles[i] = "Volume"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0002.0066."; - top.titles[i] = "WANMAN:LAN Area"; - i++; - - top.authors[i] = "zFLDR xC.5375.0500.0003."; - top.titles[i] = "Novell Object Class Extensions"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0001."; - top.titles[i] = "Entrust:CRLDistributionPoint"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0002."; - top.titles[i] = "inetOrgPerson"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0003."; - top.titles[i] = "NDPS Broker"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0004."; - top.titles[i] = "NDPS Manager"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0005."; - top.titles[i] = "NDPS Printer"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0006."; - top.titles[i] = "NDSCat:Catalog"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0007."; - top.titles[i] = "NDSCat:Master Catalog"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0008."; - top.titles[i] = "NDSCat:Slave Catalog"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0009."; - top.titles[i] = "NetSvc"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0010."; - top.titles[i] = "NLS:License Certificate"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0011."; - top.titles[i] = "NLS:License Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0012."; - top.titles[i] = "NLS:Product Container"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0013."; - top.titles[i] = "NSCP:groupOfUniqueNames5"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0014."; - top.titles[i] = "NSCP:mailGroup5"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0015."; - top.titles[i] = "NSCP:Nginfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0016."; - top.titles[i] = "NSCP:Nginfo2"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0017."; - top.titles[i] = "residentialPerson"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0018."; - top.titles[i] = "SLP Scope Unit"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0019."; - top.titles[i] = "SLP Directory Agent"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0020."; - top.titles[i] = "SLP Service"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0003.0021."; - top.titles[i] = "SMS SMDR Class"; - i++; - - top.authors[i] = "zFLDR xC.5375.0500.0004."; - top.titles[i] = "Graphical View of Object Class Inheritance"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0004.0001."; - top.titles[i] = "Alias and Bindery Object Classes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0004.0002."; - top.titles[i] = "Tree Root, domain, and Unknown"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0004.0003."; - top.titles[i] = "Computer, Country, Device, and Printer"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0004.0004."; - top.titles[i] = "List and Locality"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0004.0005."; - top.titles[i] = "Organizational Role and Partition"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0004.0006."; - top.titles[i] = "ndsLoginProperties, Organization, and Organizational Unit"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0004.0007."; - top.titles[i] = "ndsLoginProperties, Person, Organizational Person, and User"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0004.0008."; - top.titles[i] = "Directory Map, Profile, Queues, Resource, and Volume"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0004.0009."; - top.titles[i] = "Servers (AFP, Messaging, NCP, Print) and CommExec"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0004.0010."; - top.titles[i] = "External Entity, Group, and Message Routing Group"; - i++; - - top.authors[i] = "zFLDR xC.5375.0500.0005."; - top.titles[i] = "Base Attribute Definitions"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0001."; - top.titles[i] = "Aliased Object Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0002."; - top.titles[i] = "Account Balance"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0003."; - top.titles[i] = "ACL"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0004."; - top.titles[i] = "Allow Unlimited Credit"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0005."; - top.titles[i] = "associatedName"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0006."; - top.titles[i] = "attributeCertificate"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0007."; - top.titles[i] = "Audit:A Encryption Key"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0008."; - top.titles[i] = "Audit:B Encryption Key"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0009."; - top.titles[i] = "Audit:Contents"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0010."; - top.titles[i] = "Audit:Current Encryption Key"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0011."; - top.titles[i] = "Audit:File Link"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0012."; - top.titles[i] = "Audit:Link List"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0013."; - top.titles[i] = "Audit:Path"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0014."; - top.titles[i] = "Audit:Policy"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0015."; - top.titles[i] = "Audit:Type"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0016."; - top.titles[i] = "authorityRevocationList"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0017."; - top.titles[i] = "Authority Revocation"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0018."; - top.titles[i] = "AuxClass Object Class Backup"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0019."; - top.titles[i] = "Auxiliary Class Flag"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0020."; - top.titles[i] = "Back Link"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0021."; - top.titles[i] = "Bindery Object Restriction"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0022."; - top.titles[i] = "Bindery Property"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0023."; - top.titles[i] = "Bindery Restriction Level"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0024."; - top.titles[i] = "Bindery Type"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0025."; - top.titles[i] = "businessCategory"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0026."; - top.titles[i] = ""; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0027."; - top.titles[i] = "cACertificate"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0028."; - top.titles[i] = "CA Private Key"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0029."; - top.titles[i] = "CA Public Key"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0030."; - top.titles[i] = "Cartridge"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0031."; - top.titles[i] = "certificateRevocationList"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0032."; - top.titles[i] = "Certificate Revocation"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0033."; - top.titles[i] = "Certificate Validity Interval"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0034."; - top.titles[i] = "crossCertificatePair"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0035."; - top.titles[i] = ""; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0036."; - top.titles[i] = "Convergence"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0037."; - top.titles[i] = "Cross Certificate Pair"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0038."; - top.titles[i] = "dc"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0039."; - top.titles[i] = "Default Queue"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0040."; - top.titles[i] = "deltaRevocationList"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0041."; - top.titles[i] = "departmentNumber"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0042."; - top.titles[i] = "Description"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0043."; - top.titles[i] = "destinationIndicator"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0044."; - top.titles[i] = "Detect Intruder"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0045."; - top.titles[i] = "Device"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0046."; - top.titles[i] = "dmdName"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0047."; - top.titles[i] = "dn"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0048."; - top.titles[i] = "dnQualifier"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0049."; - top.titles[i] = "DS Revision"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0050."; - top.titles[i] = "EMail Address"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0051."; - top.titles[i] = "employeeType"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0052."; - top.titles[i] = "enhancedSearchGuide"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0053."; - top.titles[i] = "Equivalent To Me"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0054."; - top.titles[i] = "External Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0055."; - top.titles[i] = "External Synchronizer"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0056."; - top.titles[i] = "Facsimile Telephone Number"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0057."; - top.titles[i] = "Full Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0058."; - top.titles[i] = "Generational Qualifier"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0059."; - top.titles[i] = "generationQualifier"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0060."; - top.titles[i] = ""; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0061."; - top.titles[i] = "Given Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0062."; - top.titles[i] = ""; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0063."; - top.titles[i] = "GUID"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0064."; - top.titles[i] = "High Convergence Sync Interval"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0065."; - top.titles[i] = "Higher Privileges"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0066."; - top.titles[i] = "Home Directory"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0067."; - top.titles[i] = "Home Directory Rights"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0068."; - top.titles[i] = "homePhone"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0069."; - top.titles[i] = "homePostalAddress"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0070."; - top.titles[i] = "houseIdentifier"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0071."; - top.titles[i] = "Host Device"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0072."; - top.titles[i] = "Host Resource Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0073."; - top.titles[i] = "Host Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0074."; - top.titles[i] = "Inherited ACL"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0075."; - top.titles[i] = "Initials"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0076."; - top.titles[i] = "internationaliSDNNumber"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0077."; - top.titles[i] = "Internet EMail Address"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0078."; - top.titles[i] = "Intruder Attempt Reset Interval"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0079."; - top.titles[i] = "Intruder Lockout Reset Interval"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0080."; - top.titles[i] = "knowledgeInformation"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0081."; - top.titles[i] = ""; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0082."; - top.titles[i] = "Language"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0083."; - top.titles[i] = "Last Login Time"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0084."; - top.titles[i] = "Last Referenced Time"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0085."; - top.titles[i] = "LDAP ACL v11"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0086."; - top.titles[i] = "LDAP Allow Clear Text Password"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0087."; - top.titles[i] = "LDAP Anonymous Identity"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0088."; - top.titles[i] = "LDAP Attribute Map v11"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0089."; - top.titles[i] = "LDAP Backup Log Filename"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0090."; - top.titles[i] = "LDAP Class Map v11"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0091."; - top.titles[i] = "LDAP Enable SSL"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0092."; - top.titles[i] = "LDAP Enable TCP"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0093."; - top.titles[i] = "LDAP Enable UDP"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0094."; - top.titles[i] = "LDAP Group"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0095."; - top.titles[i] = "LDAP Host Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0096."; - top.titles[i] = "LDAP Log Filename"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0097."; - top.titles[i] = "LDAP Log Level"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0098."; - top.titles[i] = "LDAP Log Size Limit"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0099."; - top.titles[i] = "LDAP Referral"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0100."; - top.titles[i] = "LDAP Screen Level"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0101."; - top.titles[i] = "LDAP Search Size Limit"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0102."; - top.titles[i] = "LDAP Search Time Limit"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0103."; - top.titles[i] = "LDAP Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0104."; - top.titles[i] = "LDAP Server Bind Limit"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0105."; - top.titles[i] = "LDAP Server Idle Timeout"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0106."; - top.titles[i] = "LDAP Server List"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0107."; - top.titles[i] = "LDAP SSL Port"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0108."; - top.titles[i] = "LDAP Suffix"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0109."; - top.titles[i] = "LDAP TCP Port"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0110."; - top.titles[i] = "LDAP UDP Port"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0111."; - top.titles[i] = "LDAP:bindCatalog"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0112."; - top.titles[i] = "LDAP:bindCatalogUsage"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0113."; - top.titles[i] = "LDAP:keyMaterialName"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0114."; - top.titles[i] = "LDAP:otherReferralUsage"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0115."; - top.titles[i] = "LDAP:searchCatalog"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0116."; - top.titles[i] = "LDAP:searchCatalogUsage"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0117."; - top.titles[i] = "LDAP:searchReferralUsage"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0118."; - top.titles[i] = "Locked By Intruder"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0119."; - top.titles[i] = "Lockout After Detection"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0120."; - top.titles[i] = "Login Allowed Time Map"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0121."; - top.titles[i] = "Login Disabled"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0122."; - top.titles[i] = "Login Expiration Time"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0123."; - top.titles[i] = "Login Grace Limit"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0124."; - top.titles[i] = "Login Grace Remaining"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0125."; - top.titles[i] = "Login Intruder Address"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0126."; - top.titles[i] = "Login Intruder Attempts"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0127."; - top.titles[i] = "Login Intruder Limit"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0128."; - top.titles[i] = "Login Intruder Reset Time"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0129."; - top.titles[i] = "Login Maximum Simultaneous"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0130."; - top.titles[i] = "Login Script"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0131."; - top.titles[i] = "Login Time"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0132."; - top.titles[i] = "Low Convergence Reset Time"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0133."; - top.titles[i] = "Low Convergence Sync Interval"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0134."; - top.titles[i] = "Mailbox ID"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0135."; - top.titles[i] = "Mailbox Location"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0136."; - top.titles[i] = "manager"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0137."; - top.titles[i] = "masvAuthorizedRange"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0138."; - top.titles[i] = "masvDefaultRange"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0139."; - top.titles[i] = "masvDomainPolicy"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0140."; - top.titles[i] = "masvLabel"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0141."; - top.titles[i] = "masvProposedLabel"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0142."; - top.titles[i] = "Member"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0143."; - top.titles[i] = "Members Of Template"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0144."; - top.titles[i] = "Memory"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0145."; - top.titles[i] = "Message Routing Group"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0146."; - top.titles[i] = "Message Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0147."; - top.titles[i] = "Messaging Database Location"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0148."; - top.titles[i] = "Messaging Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0149."; - top.titles[i] = ""; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0150."; - top.titles[i] = "Minimum Account Balance"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0151."; - top.titles[i] = "mobile"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0152."; - top.titles[i] = "NDSPKI:Certificate Chain"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0153."; - top.titles[i] = "NDSPKI:Given Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0154."; - top.titles[i] = "NDSPKI:Key File"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0155."; - top.titles[i] = "NDSPKI:Key Material DN"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0156."; - top.titles[i] = "NDSPKI:Keystore"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0157."; - top.titles[i] = "NDSPKI:Not After"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0158."; - top.titles[i] = "NDSPKI:Not Before"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0159."; - top.titles[i] = "NDSPKI:Parent CA"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0160."; - top.titles[i] = "NDSPKI:Parent CA DN"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0161."; - top.titles[i] = "NDSPKI:Private Key"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0162."; - top.titles[i] = "NDSPKI:Public Key"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0163."; - top.titles[i] = "NDSPKI:Public Key Certificate"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0164."; - top.titles[i] = "NDSPKI:SD Key Cert"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0165."; - top.titles[i] = "NDSPKI:SD Key ID"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0166."; - top.titles[i] = "NDSPKI:SD Key Server DN"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0167."; - top.titles[i] = "NDSPKI:SD Key Struct"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0168."; - top.titles[i] = "NDSPKI:Subject Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0169."; - top.titles[i] = "NDSPKI:Tree CA DN"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0170."; - top.titles[i] = "NDSPKI:Trusted Root Certificate"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0171."; - top.titles[i] = "NDSPKI:userCertificateInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0172."; - top.titles[i] = "Network Address"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0173."; - top.titles[i] = "Network Address Restriction"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0174."; - top.titles[i] = "New Object's DS Rights"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0175."; - top.titles[i] = "New Object's FS Rights"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0176."; - top.titles[i] = "New Object's Self Rights"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0177."; - top.titles[i] = "NNS Domain"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0178."; - top.titles[i] = "Notify"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0179."; - top.titles[i] = "NSCP:administratorContactInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0180."; - top.titles[i] = "NSCP:adminURL"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0181."; - top.titles[i] = "NSCP:AmailAccessDomain"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0182."; - top.titles[i] = "NSCP:AmailAlternateAddress"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0183."; - top.titles[i] = "NSCP:AmailAutoReplyMode"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0184."; - top.titles[i] = "NSCP:AmailAutoReplyText"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0185."; - top.titles[i] = "NSCP:AmailDeliveryOption"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0186."; - top.titles[i] = "NSCP:AmailForwardingAddress"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0187."; - top.titles[i] = "NSCP:AmailHost"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0188."; - top.titles[i] = "NSCP:AmailMessageStore"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0189."; - top.titles[i] = "NSCP:AmailProgramDeliveryInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0190."; - top.titles[i] = "NSCP:AmailQuota"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0191."; - top.titles[i] = "NSCP:AnsLicenseEndTime"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0192."; - top.titles[i] = "NSCP:AnsLicensedFor"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0193."; - top.titles[i] = "NSCP:AnsLicenseStartTime"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0194."; - top.titles[i] = "NSCP:employeeNumber"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0195."; - top.titles[i] = "NSCP:installationTimeStamp"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0196."; - top.titles[i] = "NSCP:mailRoutingAddress"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0197."; - top.titles[i] = "NSCP:memberCertificateDesc"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0198."; - top.titles[i] = "NSCP:mgrpRFC822mailmember"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0199."; - top.titles[i] = "NSCP:ngcomponentCIS"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0200."; - top.titles[i] = "NSCP:nsaclrole"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0201."; - top.titles[i] = "NSCP:nscreator"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0202."; - top.titles[i] = "NSCP:nsflags"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0203."; - top.titles[i] = "NSCP:nsnewsACL"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0204."; - top.titles[i] = "NSCP:nsprettyname"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0205."; - top.titles[i] = "NSCP:serverHostName"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0206."; - top.titles[i] = "NSCP:serverProductName"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0207."; - top.titles[i] = "NSCP:serverRoot"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0208."; - top.titles[i] = "NSCP:serverVersionNumber"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0209."; - top.titles[i] = "NSCP:subtreeACI"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0210."; - top.titles[i] = ""; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0211."; - top.titles[i] = "Obituary"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0212."; - top.titles[i] = "Obituary Notify"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0213."; - top.titles[i] = "Object Class"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0214."; - top.titles[i] = "Operator"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0215."; - top.titles[i] = "Other GUID"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0216."; - top.titles[i] = ""; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0217."; - top.titles[i] = "Owner"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0218."; - top.titles[i] = "Page Description Language"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0219."; - top.titles[i] = "pager"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0220."; - top.titles[i] = "Partition Control"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0221."; - top.titles[i] = "Partition Creation Time"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0222."; - top.titles[i] = "Partition Status"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0223."; - top.titles[i] = "Password Allow Change"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0224."; - top.titles[i] = "Password Expiration Interval"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0225."; - top.titles[i] = "Password Expiration Time"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0226."; - top.titles[i] = "Password Management"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0227."; - top.titles[i] = "Password Minimum Length"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0228."; - top.titles[i] = "Password Required"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0229."; - top.titles[i] = "Password Unique Required"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0230."; - top.titles[i] = "Passwords Used"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0231."; - top.titles[i] = "Path"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0232."; - top.titles[i] = "Permanent Config Parms"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0233."; - top.titles[i] = "Physical Delivery Office Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0234."; - top.titles[i] = "Postal Address"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0235."; - top.titles[i] = "Postal Code"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0236."; - top.titles[i] = "Postal Office Box"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0237."; - top.titles[i] = "Postmaster"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0238."; - top.titles[i] = "preferredDeliveryMethod"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0239."; - top.titles[i] = "presentationAddress"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0240."; - top.titles[i] = "Print Job Configuration"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0241."; - top.titles[i] = "Print Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0242."; - top.titles[i] = "Printer"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0243."; - top.titles[i] = "Printer Configuration"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0244."; - top.titles[i] = "Printer Control"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0245."; - top.titles[i] = "Private Key"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0246."; - top.titles[i] = "Profile"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0247."; - top.titles[i] = "Profile Membership"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0248."; - top.titles[i] = "protocolInformation"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0249."; - top.titles[i] = "Public Key"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0250."; - top.titles[i] = "Purge Vector"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0251."; - top.titles[i] = "Queue"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0252."; - top.titles[i] = "Queue Directory"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0253."; - top.titles[i] = "Received Up To"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0254."; - top.titles[i] = "Reference"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0255."; - top.titles[i] = "registeredAddress"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0256."; - top.titles[i] = "Replica"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0257."; - top.titles[i] = "Replica Up To"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0258."; - top.titles[i] = "Resource"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0259."; - top.titles[i] = "Revision"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0260."; - top.titles[i] = "Role Occupant"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0261."; - top.titles[i] = "roomNumber"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0262."; - top.titles[i] = "Run Setup Script"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0263."; - top.titles[i] = ""; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0264."; - top.titles[i] = ""; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0265."; - top.titles[i] = "SAP Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0266."; - top.titles[i] = "SAS:Security DN"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0267."; - top.titles[i] = "SAS:Service DN"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0268."; - top.titles[i] = "searchGuide"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0269."; - top.titles[i] = "searchSizeLimit"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0270."; - top.titles[i] = "searchTimeLimit"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0271."; - top.titles[i] = "Security Equals"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0272."; - top.titles[i] = "Security Flags"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0273."; - top.titles[i] = "See Also"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0274."; - top.titles[i] = "Serial Number"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0275."; - top.titles[i] = "Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0276."; - top.titles[i] = "Server Holds"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0277."; - top.titles[i] = "Set Password After Create"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0278."; - top.titles[i] = "Setup Script"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0279."; - top.titles[i] = "Status"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0280."; - top.titles[i] = "supportedAlgorithms"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0281."; - top.titles[i] = "supportedApplicationContext"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0282."; - top.titles[i] = "Supported Connections"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0283."; - top.titles[i] = "Supported Gateway"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0284."; - top.titles[i] = "Supported Services"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0285."; - top.titles[i] = "Supported Typefaces"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0286."; - top.titles[i] = "Surname"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0287."; - top.titles[i] = "Synchronization Tolerance"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0288."; - top.titles[i] = "Synchronized Up To"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0289."; - top.titles[i] = ""; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0290."; - top.titles[i] = "Telephone Number"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0291."; - top.titles[i] = "telexNumber"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0292."; - top.titles[i] = "telexTerminalIdentifier"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0293."; - top.titles[i] = "Timezone"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0294."; - top.titles[i] = "Title"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0295."; - top.titles[i] = "Transitive Vector"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0296."; - top.titles[i] = "Trustees Of New Object"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0297."; - top.titles[i] = "Type Creator Map"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0298."; - top.titles[i] = ""; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0299."; - top.titles[i] = "uniqueID"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0300."; - top.titles[i] = "Unknown"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0301."; - top.titles[i] = "Unknown Auxiliary Class"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0302."; - top.titles[i] = "Unknown Base Class"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0303."; - top.titles[i] = "Used By"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0304."; - top.titles[i] = "User"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0305."; - top.titles[i] = "userCertificate"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0306."; - top.titles[i] = "userPassword"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0307."; - top.titles[i] = "Uses"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0308."; - top.titles[i] = "Version"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0309."; - top.titles[i] = "Volume"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0310."; - top.titles[i] = "Volume Space Restrictions"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0311."; - top.titles[i] = "WANMAN:Cost"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0312."; - top.titles[i] = "WANMAN:Default Cost"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0313."; - top.titles[i] = "WANMAN:LAN Area Membership"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0314."; - top.titles[i] = "WANMAN:WAN Policy"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0315."; - top.titles[i] = "x121Address"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0005.0316."; - top.titles[i] = "x500UniqueIdentifier"; - i++; - - top.authors[i] = "zFLDR xC.5375.0500.0006."; - top.titles[i] = "Novell Attribute Extensions"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0001."; - top.titles[i] = "audio"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0002."; - top.titles[i] = "carLicense"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0003."; - top.titles[i] = "Client Install Candidate"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0004."; - top.titles[i] = "Color Supported"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0005."; - top.titles[i] = "Database Dir Path"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0006."; - top.titles[i] = "Database Volume Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0007."; - top.titles[i] = "Datapool Location"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0008."; - top.titles[i] = "Datapool Locations"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0009."; - top.titles[i] = "Delivery Methods Installed"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0010."; - top.titles[i] = "displayName"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0011."; - top.titles[i] = "Employee ID"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0012."; - top.titles[i] = "Entrust:AttributeCertificate"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0013."; - top.titles[i] = "Entrust:User"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0014."; - top.titles[i] = "GW API Gateway Directory Path"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0015."; - top.titles[i] = "GW API Gateway Directory Volume"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0016."; - top.titles[i] = "IPP URI"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0017."; - top.titles[i] = "IPP URI Security Scheme"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0018."; - top.titles[i] = "jpegPhoto"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0019."; - top.titles[i] = "labeledUri"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0020."; - top.titles[i] = "LDAP Class Map"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0021."; - top.titles[i] = "ldapPhoto"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0022."; - top.titles[i] = "LDAPUserCertificate"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0023."; - top.titles[i] = "LDAP:ARL"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0024."; - top.titles[i] = "LDAP:caCertificate"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0025."; - top.titles[i] = "LDAP:CRL"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0026."; - top.titles[i] = "LDAP:crossCertificatePair"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0027."; - top.titles[i] = "MASV:Authorized Range"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0028."; - top.titles[i] = "MASV:Default Range"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0029."; - top.titles[i] = "MASV:Domain Policy"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0030."; - top.titles[i] = "MASV:Label"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0031."; - top.titles[i] = "MASV:Proposed Label"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0032."; - top.titles[i] = "Maximum Speed"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0033."; - top.titles[i] = "Maximum Speed Units"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0034."; - top.titles[i] = "MHS Send Directory Path"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0035."; - top.titles[i] = "MHS Send Directory Volume"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0036."; - top.titles[i] = "NDPS Accountant Role"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0037."; - top.titles[i] = "NDPS Control Flags"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0038."; - top.titles[i] = "NDPS Database Saved Timestamp"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0039."; - top.titles[i] = "NDPS Database Saved Data Image"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0040."; - top.titles[i] = "NDPS Database Saved Index Image"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0041."; - top.titles[i] = "NDPS Default Printer"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0042."; - top.titles[i] = "NDPS Default Public Printer"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0043."; - top.titles[i] = "NDPS Job Configuration"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0044."; - top.titles[i] = "NDPS Manager Status"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0045."; - top.titles[i] = "NDPS Operator Role"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0046."; - top.titles[i] = "NDPS Printer Install List"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0047."; - top.titles[i] = "NDPS Printer Install Timestamp"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0048."; - top.titles[i] = "NDPS Printer Queue List"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0049."; - top.titles[i] = "NDPS Printer Siblings"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0050."; - top.titles[i] = "NDPS Public Printer Install List"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0051."; - top.titles[i] = "NDPS Replace All Client Printers"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0052."; - top.titles[i] = "NDPS SMTP Server"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0053."; - top.titles[i] = "NDPS User Role"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0054."; - top.titles[i] = "NDSCat:Actual All Attributes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0055."; - top.titles[i] = "NDSCat:Actual Attribute Count"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0056."; - top.titles[i] = "NDSCat:Actual Attributes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0057."; - top.titles[i] = "NDSCat:Actual Base Object"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0058."; - top.titles[i] = "NDSCat:Actual Catalog Size"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0059."; - top.titles[i] = "NDSCat:Actual End Time"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0060."; - top.titles[i] = "NDSCat:Actual Filter"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0061."; - top.titles[i] = "NDSCat:Actual Object Count"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0062."; - top.titles[i] = "NDSCat:Actual Return Code"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0063."; - top.titles[i] = "NDSCat:Actual Scope"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0064."; - top.titles[i] = "NDSCat:Actual Search Aliases"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0065."; - top.titles[i] = "NDSCat:Actual Start Time"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0066."; - top.titles[i] = "NDSCat:Actual Value Count"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0067."; - top.titles[i] = "NDSCat:All Attributes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0068."; - top.titles[i] = "NDSCat:AttrDefTbl"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0069."; - top.titles[i] = "NDSCat:Attributes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0070."; - top.titles[i] = "NDSCat:Auto Dredge"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0071."; - top.titles[i] = "NDSCat:Base Object"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0072."; - top.titles[i] = "NDSCat:CatalogDB"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0073."; - top.titles[i] = "NDSCat:Catalog List"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0074."; - top.titles[i] = "NDSCat:Dredge Interval"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0075."; - top.titles[i] = "NDSCat:Filter"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0076."; - top.titles[i] = "NDSCat:IndexDefTbl"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0077."; - top.titles[i] = "NDSCat:Indexes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0078."; - top.titles[i] = "NDSCat:Label"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0079."; - top.titles[i] = "NDSCat:Log"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0080."; - top.titles[i] = "NDSCat:Master Catalog"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0081."; - top.titles[i] = "NDSCat:Max Log Size"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0082."; - top.titles[i] = "NDSCat:Max Retries"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0083."; - top.titles[i] = "NDSCat:Max Threads"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0084."; - top.titles[i] = "NDSCat:Retry Interval"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0085."; - top.titles[i] = "NDSCat:Scope"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0086."; - top.titles[i] = "NDSCat:Search Aliases"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0087."; - top.titles[i] = "NDSCat:Slave Catalog List"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0088."; - top.titles[i] = "NDSCat:Start Time"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0089."; - top.titles[i] = "NDSCat:Synch Interval"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0090."; - top.titles[i] = "NLS:Common Certificate"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0091."; - top.titles[i] = "NLS:Current Installed"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0092."; - top.titles[i] = "NLS:Current Peak Installed"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0093."; - top.titles[i] = "NLS:Current Peak Used"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0094."; - top.titles[i] = "NLS:Current Used"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0095."; - top.titles[i] = "NLS:Hourly Data Size"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0096."; - top.titles[i] = "NLS:License Database"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0097."; - top.titles[i] = "NLS:License ID"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0098."; - top.titles[i] = "NLS:License Service Provider"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0099."; - top.titles[i] = "NLS:LSP Revision"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0100."; - top.titles[i] = "NLS:Owner"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0101."; - top.titles[i] = "NLS:Peak Installed Data"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0102."; - top.titles[i] = "NLS:Peak Used Data"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0103."; - top.titles[i] = "NLS:Product"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0104."; - top.titles[i] = "NLS:Publisher"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0105."; - top.titles[i] = "NLS:Revision"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0106."; - top.titles[i] = "NLS:Search Type"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0107."; - top.titles[i] = "NLS:Summary Update Time"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0108."; - top.titles[i] = "NLS:Summary Version"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0109."; - top.titles[i] = "NLS:Transaction Database"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0110."; - top.titles[i] = "NLS:Transaction Log Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0111."; - top.titles[i] = "NLS:Transaction Log Size"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0112."; - top.titles[i] = "NLS:Version"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0113."; - top.titles[i] = "Notification Consumers"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0114."; - top.titles[i] = "Notification Profile"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0115."; - top.titles[i] = "Notification Service Enabled"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0116."; - top.titles[i] = "Notification Srvc Net Addr"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0117."; - top.titles[i] = "Notification Srvc Net Address"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0118."; - top.titles[i] = "NRD:Registry Data"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0119."; - top.titles[i] = "NRD:Registry Index"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0120."; - top.titles[i] = "NSCP:mailAccessDomain"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0121."; - top.titles[i] = "NSCP:mailAlternateAddress"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0122."; - top.titles[i] = "NSCP:mailAutoReplyMode"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0123."; - top.titles[i] = "NSCP:mailAutoReplyText"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0124."; - top.titles[i] = "NSCP:mailDeliveryOption"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0125."; - top.titles[i] = "NSCP:mailForwardingAddress"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0126."; - top.titles[i] = "NSCP:mailHost"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0127."; - top.titles[i] = "NSCP:mailMessageStore"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0128."; - top.titles[i] = "NSCP:mailProgramDeliveryInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0129."; - top.titles[i] = "NSCP:mailQuota"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0130."; - top.titles[i] = "NSCP:ngComponent"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0131."; - top.titles[i] = "NSCP:nsLicenseEndTime"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0132."; - top.titles[i] = "NSCP:nsLicensedFor"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0133."; - top.titles[i] = "NSCP:nsLicenseStartTime"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0134."; - top.titles[i] = "Page Description Languages"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0135."; - top.titles[i] = "preferredLanguage"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0136."; - top.titles[i] = "Primary Notification Service"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0137."; - top.titles[i] = "Primary Resource Service"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0138."; - top.titles[i] = "Printer Agent Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0139."; - top.titles[i] = "Printer Manufacturer"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0140."; - top.titles[i] = "Printer Mechanism Types"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0141."; - top.titles[i] = "Printer Model"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0142."; - top.titles[i] = "Printer Status"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0143."; - top.titles[i] = "Printer to PA ID Mappings"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0144."; - top.titles[i] = "PSM Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0145."; - top.titles[i] = "Registry Advertising Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0146."; - top.titles[i] = "Registry Service Enabled"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0147."; - top.titles[i] = "Registry Srvc Net Addr"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0148."; - top.titles[i] = "Registry Srvc Net Address"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0149."; - top.titles[i] = "Resolution"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0150."; - top.titles[i] = "Resource Mgmt Srvc Net Addr"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0151."; - top.titles[i] = "Resource Mgmt Srvc Net Address"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0152."; - top.titles[i] = "Resource Mgmt Service Enabled"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0153."; - top.titles[i] = "Resource Mgr Database Path"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0154."; - top.titles[i] = "Resource Mgr Database Volume"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0155."; - top.titles[i] = "secretary"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0156."; - top.titles[i] = "Sides Supported"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0157."; - top.titles[i] = "SLP Attribute"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0158."; - top.titles[i] = "SLP Cache Limit"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0159."; - top.titles[i] = "SLP DA Back Link"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0160."; - top.titles[i] = "SLP Directory Agent DN"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0161."; - top.titles[i] = "SLP Language"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0162."; - top.titles[i] = "SLP Lifetime"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0163."; - top.titles[i] = "SLP Scope Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0164."; - top.titles[i] = "SLP Scope Unit DN"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0165."; - top.titles[i] = "SLP Start Purge Hour"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0166."; - top.titles[i] = "SLP Status"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0167."; - top.titles[i] = "SLP SU Back Link"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0168."; - top.titles[i] = "SLP SU Type"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0169."; - top.titles[i] = "SLP Type"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0170."; - top.titles[i] = "SLP URL"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0171."; - top.titles[i] = "SMS Protocol Address"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0172."; - top.titles[i] = "SMS Registered Service"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0173."; - top.titles[i] = "SU"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0174."; - top.titles[i] = "SvcInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0175."; - top.titles[i] = "SvcType"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0176."; - top.titles[i] = "SvcTypeID"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0006.0177."; - top.titles[i] = "userSMIMECertificate"; - i++; - - top.authors[i] = "zFLDR xC.5375.0500.0007."; - top.titles[i] = "LDAP Operational Attributes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0007.0001."; - top.titles[i] = "createTimeStamp"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0007.0002."; - top.titles[i] = "creatorsName"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0007.0003."; - top.titles[i] = "entryFlags"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0007.0004."; - top.titles[i] = "federationBoundary"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0007.0005."; - top.titles[i] = "localEntryID"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0007.0006."; - top.titles[i] = "modifiersName"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0007.0007."; - top.titles[i] = "modifyTimeStamp"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0007.0008."; - top.titles[i] = "structuralObjectClass"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0007.0009."; - top.titles[i] = "subordinateCount"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0007.0010."; - top.titles[i] = "subschemaSubentry"; - i++; - - top.authors[i] = "zFLDR xC.5375.0500.0008."; - top.titles[i] = "Attribute Syntax Definitions"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0001."; - top.titles[i] = "Back Link"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0002."; - top.titles[i] = "Boolean"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0003."; - top.titles[i] = "Case Exact String"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0004."; - top.titles[i] = "Case Ignore List"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0005."; - top.titles[i] = "Case Ignore String"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0006."; - top.titles[i] = "Class Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0007."; - top.titles[i] = "Counter"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0008."; - top.titles[i] = "Distinguished Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0009."; - top.titles[i] = "EMail Address"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0010."; - top.titles[i] = "Facsimile Telephone Number"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0011."; - top.titles[i] = "Hold"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0012."; - top.titles[i] = "Integer"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0013."; - top.titles[i] = "Interval"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0014."; - top.titles[i] = "Net Address"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0015."; - top.titles[i] = "Numeric String"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0016."; - top.titles[i] = "Object ACL"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0017."; - top.titles[i] = "Octet List"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0018."; - top.titles[i] = "Octet String"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0019."; - top.titles[i] = "Path"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0020."; - top.titles[i] = "Postal Address"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0021."; - top.titles[i] = "Printable String"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0022."; - top.titles[i] = "Replica Pointer"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0023."; - top.titles[i] = "Stream"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0024."; - top.titles[i] = "Telephone Number"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0025."; - top.titles[i] = "Time"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0026."; - top.titles[i] = "Timestamp"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0027."; - top.titles[i] = "Typed Name"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0008.0028."; - top.titles[i] = "Unknown"; - i++; - - top.authors[i] = "zFLDR xC.5375.0500.0009."; - top.titles[i] = "Index of Classes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0009.0001."; - top.titles[i] = "A through B"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0009.0002."; - top.titles[i] = "C through D"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0009.0003."; - top.titles[i] = "E through K"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0009.0004."; - top.titles[i] = "L through M"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0009.0005."; - top.titles[i] = "N"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0009.0006."; - top.titles[i] = "O"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0009.0007."; - top.titles[i] = "P through R"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0009.0008."; - top.titles[i] = "S"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0009.0009."; - top.titles[i] = "T through Z"; - i++; - - top.authors[i] = "zFLDR xC.5375.0500.0010."; - top.titles[i] = "Index of Attributes"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0001."; - top.titles[i] = "A"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0002."; - top.titles[i] = "B"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0003."; - top.titles[i] = "C"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0004."; - top.titles[i] = "D"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0005."; - top.titles[i] = "E"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0006."; - top.titles[i] = "F through G"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0007."; - top.titles[i] = "H"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0008."; - top.titles[i] = "I through K"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0009."; - top.titles[i] = "L"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0010."; - top.titles[i] = "M"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0011."; - top.titles[i] = "N"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0012."; - top.titles[i] = "O"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0013."; - top.titles[i] = "P"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0014."; - top.titles[i] = "Q"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0015."; - top.titles[i] = "R"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0016."; - top.titles[i] = "S"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0017."; - top.titles[i] = "T"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0018."; - top.titles[i] = "U"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0010.0019."; - top.titles[i] = "V through Z"; - i++; - - top.authors[i] = "zFLDR xC.5375.0500.0011."; - top.titles[i] = "Index of ASN.1 IDs"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0011.0001."; - top.titles[i] = "0"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0011.0002."; - top.titles[i] = "1"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0011.0003."; - top.titles[i] = "2 through 2.4"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0011.0004."; - top.titles[i] = "2.5 through 2.9"; - i++; - - top.authors[i] = "zFLDR xC.5375.0500.0012."; - top.titles[i] = "Index of LDAP Names"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0001."; - top.titles[i] = "A through B"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0002."; - top.titles[i] = "C"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0003."; - top.titles[i] = "D"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0004."; - top.titles[i] = "E through F"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0005."; - top.titles[i] = "G"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0006."; - top.titles[i] = "H"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0007."; - top.titles[i] = "I through K"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0008."; - top.titles[i] = "L"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0009."; - top.titles[i] = "M"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0010."; - top.titles[i] = "N"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0011."; - top.titles[i] = "O"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0012."; - top.titles[i] = "P"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0013."; - top.titles[i] = "Q through R"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0014."; - top.titles[i] = "S"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0015."; - top.titles[i] = "T"; - i++; - - top.authors[i] = "zHTML xD.5375.0500.0012.0016."; - top.titles[i] = "U through Z"; - i++; - - top.authors[i] = "zHTML xC.5375.0500.0013."; - top.titles[i] = "Revision History"; - i++; - - top.authors[i] = "zFLDR xB.5375.0400."; - top.titles[i] = "NDS Iterator Services"; - i++; - - top.authors[i] = "zFLDR xC.5375.0400.0001."; - top.titles[i] = "Concepts"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0001.0001."; - top.titles[i] = "Iterator Objects"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0001.0002."; - top.titles[i] = "Creation of an Iterator Object"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0001.0003."; - top.titles[i] = "Iterator Indexes"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0001.0004."; - top.titles[i] = "Positions of an Iterator Object"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0001.0005."; - top.titles[i] = "Current Position Movement with Retrieval Functions"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0001.0006."; - top.titles[i] = "Retrieval of Data"; - i++; - - top.authors[i] = "zFLDR xC.5375.0400.0002."; - top.titles[i] = "Tasks"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0002.0001."; - top.titles[i] = "Creating a Search Iterator Object"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0002.0002."; - top.titles[i] = "Retrieving and Unpacking Object and Attribute Name Data"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0002.0003."; - top.titles[i] = "Retrieving and Unpacking Object, Attribute, and Value Data"; - i++; - - top.authors[i] = "zFLDR xC.5375.0400.0003."; - top.titles[i] = "Functions"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0001."; - top.titles[i] = "NWDSItrAtEOF"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0002."; - top.titles[i] = "NWDSItrAtFirst"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0003."; - top.titles[i] = "NWDSItrClone"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0004."; - top.titles[i] = "NWDSItrCount"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0005."; - top.titles[i] = "NWDSItrCreateList"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0006."; - top.titles[i] = "NWDSItrCreateSearch"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0007."; - top.titles[i] = "NWDSItrDestroy"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0008."; - top.titles[i] = "NWDSItrGetCurrent"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0009."; - top.titles[i] = "NWDSItrGetInfo"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0010."; - top.titles[i] = "NWDSItrGetNext"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0011."; - top.titles[i] = "NWDSItrGetPosition"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0012."; - top.titles[i] = "NWDSItrGetPrev"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0013."; - top.titles[i] = "NWDSItrSetPosition"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0014."; - top.titles[i] = "NWDSItrSetPositionFromIterator"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0015."; - top.titles[i] = "NWDSItrSkip"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0003.0016."; - top.titles[i] = "NWDSItrTypeDown"; - i++; - - top.authors[i] = "zFLDR xC.5375.0400.0004."; - top.titles[i] = "NDS Iterator Example Code"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0004.0001."; - top.titles[i] = "Cloning an Iterator Object: Example"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0004.0002."; - top.titles[i] = "Counting with NDS Iterators: Example"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0004.0003."; - top.titles[i] = "Creating and Using a List Iterator: Example"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0004.0004."; - top.titles[i] = "Creating a Search Iterator and Displaying the Results: Example"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0004.0005."; - top.titles[i] = "Getting Iterator Information: Example"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0004.0006."; - top.titles[i] = "Getting and Setting the Iterator's Position: Example"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0004.0007."; - top.titles[i] = "Listing in Reverse Order: Example"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0004.0008."; - top.titles[i] = "Positioning the Iterator with Typedown: Example"; - i++; - - top.authors[i] = "zHTML xD.5375.0400.0004.0009."; - top.titles[i] = "Skipping Objects in the List: Example"; - i++; - - top.authors[i] = "zHTML xC.5375.0400.0005."; - top.titles[i] = "Revision History"; - i++; - - -// Morten's JavaScript Tree Menu -// written by Morten Wang <morten@treemenu.com> (c) 1998-2000 -// This is version 2.2.6, dated 2000-03-30 - -// The script is freely distributable -// It may be used (and modified) as you wish, but retain this message -// For more information about the menu visit its home page -// http://www.treemenu.com/ - -/****************************************************************************** -* Define the MenuItem object. * -******************************************************************************/ - -function MTMenuItem(text, url, target,nsearchID, icon) { - this.text = text; - this.url = url ? url : ""; - this.target = target ? target : ""; - this.icon = icon ? icon : ""; - this.nsearchID = nsearchID; - - this.number = MTMSubNumber++; - this.parent = null; - this.submenu = null; - this.expanded = false; - this.selected = false; - this.childSelected = false; - - this.MTMakeSubmenu = MTMakeSubmenu; - -} - -function MTMakeSubmenu(menu) { - this.submenu = menu; - for (var i = 0; i < menu.items.length; i++) - { - menu.items[i].parent = this; - } -} - - - -function getChildrenChecked(item, selected) -{ - if (item.submenu != null) - { - for (var x = 0; x < item.submenu.items.length; x++) - { - item.submenu.items[x].selected = selected; - item.submenu.items[x].childSelected = false; - MarkChildren(item.submenu.items[x],selected); - } - } -} - -/****************************************************************************** -* Define the Menu object. * -******************************************************************************/ - -function MTMenu() { - this.items = new Array(); - this.MTMAddItem = MTMAddItem; -} - -function MTMAddItem(item) { - this.items[this.items.length] = item; -} - -/****************************************************************************** -* Define the icon list, addIcon function and MTMIcon item. * -******************************************************************************/ - -function IconList() { - this.items = new Array(); - this.addIcon = addIcon; -} - -function addIcon(item) { - this.items[this.items.length] = item; -} - -function MTMIcon(iconfile, match, type) { - this.file = iconfile; - this.match = match; - this.type = type; -} - -/****************************************************************************** -* Global variables. Not to be altered unless you know what you're doing. * -* User-configurable options are at the end of this document. * -******************************************************************************/ - -var MTMLoaded = false; -var MTMLevel; -var MTMBar = new Array(); -var MTMIndices = new Array(); -var MTMBrowser = null; -var MTMNN3 = false; -var MTMNN4 = false; -var MTMIE4 = false; -var MTMUseStyle = true; - -/* - * (For a standalone JS shell test, we will simply set these as follows:) - */ -MTMBrowser = true; -MTMNN4 = true; - - -var MTMClickedItem = false; -var MTMExpansion = false; - -var MTMSubNumber = 1; -var MTMTrackedItem = false; -var MTMTrack = false; - -var MTMPreHREF = ""; -if(MTMIE4 || MTMNN3) { - MTMPreHREF += ""; // document.location.href.substring(0, document.location.href.lastIndexOf("/") +1); -} - -var MTMFirstRun = true; -var MTMCurrentTime = 0; // for checking timeout. -var MTMUpdating = false; -var MTMWinSize, MTMyval; -var MTMOutputString = ""; - -/****************************************************************************** -* Code that picks up frame names of frames in the parent frameset. * -******************************************************************************/ - - -/****************************************************************************** -* Dummy function for sub-menus without URLs * -* Thanks to Michel Plungjan for the advice. :) * -******************************************************************************/ - -function myVoid() { ; } - -/****************************************************************************** -* Functions to draw the menu. * -******************************************************************************/ - -function MTMSubAction(SubItem, ReturnValue) { - - SubItem.expanded = (SubItem.expanded) ? false : true; - if(SubItem.expanded) { - MTMExpansion = true; - } - - MTMClickedItem = SubItem.number; - - if(MTMTrackedItem && MTMTrackedItem != SubItem.number) { - MTMTrackedItem = false; - } - - if(!ReturnValue) { - setTimeout("MTMDisplayMenu()", 10); - } - - return ReturnValue; -} - - -function MarkChildren(item, selected) -{ - if (item.submenu != null) - { - for (var x = 0; x < item.submenu.items.length; x++) - { - item.submenu.items[x].selected = selected; - item.submenu.items[x].childSelected = false; - MarkChildren(item.submenu.items[x],selected); - } - } - -} - -function isAllChildrenSelected(item) -{ - if (item.submenu != null) - { - for (var x = 0; x < item.submenu.items.length; x++) - { - if (!item.submenu.items[x].selected) - { - return false; - } - } - } - return true; -} - -function isSomeChildrenSelected(item) -{ - var retValue = false; - - if (item.submenu != null) - { - for (var x = 0; x < item.submenu.items.length; x++) - { - if (item.submenu.items[x].selected || item.submenu.items[x].childSelected) - { - retValue = true; - } - } - } - - return retValue; -} - -function ToggleSelected(item, ReturnValue) { - - item.selected = (item.selected) ? false : true; - item.childSelected = false; - - var currentNode = item; - - while (currentNode.parent) - { - currentNode.parent.selected = isAllChildrenSelected(currentNode.parent); - currentNode.parent.childSelected = isSomeChildrenSelected(currentNode.parent); - currentNode = currentNode.parent; - } - - MarkChildren(item,item.selected); - - if(!ReturnValue) { - setTimeout("MTMDisplayMenu()", 10); - } - - return ReturnValue; -} - - -function MTMStartMenu() { - MTMLoaded = true; - if(MTMFirstRun) { - MTMCurrentTime++; - if(MTMCurrentTime == MTMTimeOut) { // call MTMDisplayMenu - setTimeout("MTMDisplayMenu()",10); - } else { - setTimeout("MTMStartMenu()",100); - } - } -} - -function MTMDisplayMenu() { - if(MTMBrowser && !MTMUpdating) { - MTMUpdating = true; - MTMFirstRun = false; - - if(MTMTrack) { MTMTrackedItem = MTMTrackExpand(menu); } - - if(MTMExpansion && MTMSubsAutoClose) { MTMCloseSubs(menu); } - - MTMLevel = 0; - MTMDoc = parent.frames[MTMenuFrame].document - MTMDoc.open("text/html", "replace"); - MTMOutputString = '<html><head>'; - if(MTMLinkedSS) { - MTMOutputString += '<link rel="stylesheet" type="text/css" href="' + MTMPreHREF + MTMSSHREF + '">'; - } else if(MTMUseStyle) { - MTMOutputString += '<style type="text/css">body {color:' + MTMTextColor + ';background:'; - MTMOutputString += (MTMBackground == "") ? MTMBGColor : MTMakeBackImage(MTMBackground); - MTMOutputString += ';} #root {color:' + MTMRootColor + ';background:' + ((MTMBackground == "") ? MTMBGColor : 'transparent') + ';font-family:' + MTMRootFont + ';font-size:' + MTMRootCSSize + ';} '; - MTMOutputString += 'a {font-family:' + MTMenuFont + ';letter-spacing:-0.05em;font-weight:bold;font-size:' + MTMenuCSSize + ';text-decoration:none;color:' + MTMLinkColor + ';background:' + MTMakeBackground() + ';} '; - MTMOutputString += MTMakeA('pseudo', 'hover', MTMAhoverColor); - MTMOutputString += MTMakeA('class', 'tracked', MTMTrackColor); - MTMOutputString += MTMakeA('class', 'subexpanded', MTMSubExpandColor); - MTMOutputString += MTMakeA('class', 'subclosed', MTMSubClosedColor) + '</style>'; - } - - MTMOutputString += '</head><body '; - if(MTMBackground != "") { - MTMOutputString += 'background="' + MTMPreHREF + MTMenuImageDirectory + MTMBackground + '" '; - } - MTMOutputString += 'bgcolor="' + MTMBGColor + '" text="' + MTMTextColor + '" link="' + MTMLinkColor + '" vlink="' + MTMLinkColor + '" alink="' + MTMLinkColor + '">'; - - MTMOutputString += '<table border="0" cellpadding="0" cellspacing="0" width="' + MTMTableWidth + '">'; - MTMOutputString += '<tr valign="top"><td nowrap>'; //REMOVED ROOT ICON <img src="' + MTMPreHREF + MTMenuImageDirectory + MTMRootIcon + '" align="left" border="0" vspace="0" hspace="0">'; - if(MTMUseStyle) { - MTMOutputString += ''; //REMOVED ROOT CAPTION <span id="root"> ' + MTMenuText + '</span>'; - } else { - MTMOutputString += ''; //REMOVED ROOT CAPTION <font size="' + MTMRootFontSize + '" face="' + MTMRootFont + '" color="' + MTMRootColor + '">' + MTMenuText + '</font>'; - } - MTMDoc.writeln(MTMOutputString + '</td></tr>'); - - MTMListItems(menu); - MTMDoc.writeln('</table>'); - - MTMDoc.writeln('</body></html>'); - MTMDoc.close(); - - if((MTMClickedItem || MTMTrackedItem) && (MTMNN4 || MTMIE4) && !MTMFirstRun) { - MTMItemName = "sub" + (MTMClickedItem ? MTMClickedItem : MTMTrackedItem); - if(document.layers && parent.frames[MTMenuFrame].scrollbars) { - MTMyval = parent.frames[MTMenuFrame].document.anchors[MTMItemName].y; - MTMWinSize = parent.frames[MTMenuFrame].innerHeight; - } else { - MTMyval = MTMGetPos(parent.frames[MTMenuFrame].document.all[MTMItemName]); - MTMWinSize = parent.frames[MTMenuFrame].document.body.offsetHeight; - } - if(MTMyval > (MTMWinSize - 60)) { - parent.frames[MTMenuFrame].scrollBy(0, parseInt(MTMyval - (MTMWinSize * 1/3))); - } - } - - MTMClickedItem = false; - MTMExpansion = false; - MTMTrack = false; - } -MTMUpdating = false; -} - -function MTMListItems(menu) { - var i, isLast; - for (i = 0; i < menu.items.length; i++) { - MTMIndices[MTMLevel] = i; - isLast = (i == menu.items.length -1); - MTMDisplayItem(menu.items[i], isLast); - - if (menu.items[i].submenu && menu.items[i].expanded) { - MTMBar[MTMLevel] = (isLast) ? false : true; - MTMLevel++; - MTMListItems(menu.items[i].submenu); - MTMLevel--; - } else { - MTMBar[MTMLevel] = false; - } - } - -} - -function MTMDisplayItem(item, last) { - var i, img, more; - - var MTMfrm = "parent.frames['code']"; - var MTMref = '.menu.items[' + MTMIndices[0] + ']'; - - if(item.submenu) { - var MTMouseOverText; - - var MTMClickCmd; - var MTMDblClickCmd = false; - - - if(MTMLevel > 0) { - for(i = 1; i <= MTMLevel; i++) { - MTMref += ".submenu.items[" + MTMIndices[i] + "]"; - } - } - - if(!MTMEmulateWE && !item.expanded && (item.url != "")) { - MTMClickCmd = "return " + MTMfrm + ".MTMSubAction(" + MTMfrm + MTMref + ",true);"; - } else { - MTMClickCmd = "return " + MTMfrm + ".MTMSubAction(" + MTMfrm + MTMref + ",false);"; - } - - if(item.url == "") { - MTMouseOverText = (item.text.indexOf("'") != -1) ? MTMEscapeQuotes(item.text) : item.text; - } else { - MTMouseOverText = "Expand/Collapse"; - } - } - - MTMOutputString = '<tr valign="top"><td nowrap>'; - if(MTMLevel > 0) { - for (i = 0; i < MTMLevel; i++) { - MTMOutputString += (MTMBar[i]) ? MTMakeImage("menu_bar.gif") : MTMakeImage("menu_pixel.gif"); - } - } - - more = false; - if(item.submenu) { - if(MTMSubsGetPlus || MTMEmulateWE) { - more = true; - } else { - for (i = 0; i < item.submenu.items.length; i++) { - if (item.submenu.items[i].submenu) { - more = true; - } - } - } - } - if(!more) { - img = (last) ? "menu_corner.gif" : "menu_tee.gif"; - } else { - if(item.expanded) { - img = (last) ? "menu_corner_minus.gif" : "menu_tee_minus.gif"; - } else { - img = (last) ? "menu_corner_plus.gif" : "menu_tee_plus.gif"; - } - if(item.url == "" || item.expanded || MTMEmulateWE) { - MTMOutputString += MTMakeVoid(item, MTMClickCmd, MTMouseOverText); - } else { - MTMOutputString += MTMakeLink(item, true) + ' onclick="' + MTMClickCmd + '">'; - } - } - MTMOutputString += MTMakeImage(img); -///////////////////////////////////////// - -var MTMCheckRef = '.menu.items[' + MTMIndices[0] + ']'; -if(MTMLevel > 0) { - for(i = 1; i <= MTMLevel; i++) { - MTMCheckRef += ".submenu.items[" + MTMIndices[i] + "]"; - } - } - -MTMOutputString += MTMakeVoid(item, "return " + MTMfrm + ".ToggleSelected(" + MTMfrm + MTMCheckRef + ",false);", "Checked Status") ; -var checkedImage = item.selected ? "checked.gif" : "uchecked.gif"; -if (!item.selected) -{ - checkedImage = item.childSelected ? "gchecked.gif" : "uchecked.gif"; -} -MTMOutputString += MTMakeImage(checkedImage); -MTMOutputString += '</a>'; -///////////////////////////////////////////////// - - - if(item.submenu) { - if(MTMEmulateWE && item.url != "") - { - MTMOutputString += '</a>' + MTMakeLink(item, false) + '>'; - } - - img = (item.expanded) ? "menu_folder_open.gif" : "menu_folder_closed.gif"; - - if(!more) { - if(item.url == "" || item.expanded) { - MTMOutputString += MTMakeVoid(item, MTMClickCmd, MTMouseOverText); - } else { - MTMOutputString += MTMakeLink(item, true) + ' onclick="' + MTMClickCmd + '">'; - } - } - MTMOutputString += MTMakeImage(img); - - } else { - MTMOutputString += MTMakeLink(item, true) + '>'; - img = (item.icon != "") ? item.icon : MTMFetchIcon(item.url); - MTMOutputString += MTMakeImage(img); - } - - if(item.submenu && (item.url != "") && (item.expanded && !MTMEmulateWE)) { - MTMOutputString += '</a>' + MTMakeLink(item, false) + '>'; - } - - if(MTMNN3 && !MTMLinkedSS) { - var stringColor; - if(item.submenu && (item.url == "") && (item.number == MTMClickedItem)) { - stringColor = (item.expanded) ? MTMSubExpandColor : MTMSubClosedColor; - } else if(MTMTrackedItem && MTMTrackedItem == item.number) { - stringColor = MTMTrackColor; - } else { - stringColor = MTMLinkColor; - } - MTMOutputString += '<font color="' + stringColor + '" size="' + MTMenuFontSize + '" face="' + MTMenuFont + '">'; - } - MTMOutputString += ' ' + item.text + ((MTMNN3 && !MTMLinkedSS) ? '</font>' : '') + '</a>' ; - MTMDoc.writeln(MTMOutputString + '</td></tr>'); -} - -function MTMEscapeQuotes(myString) { - var newString = ""; - var cur_pos = myString.indexOf("'"); - var prev_pos = 0; - while (cur_pos != -1) { - if(cur_pos == 0) { - newString += "\\"; - } else if(myString.charAt(cur_pos-1) != "\\") { - newString += myString.substring(prev_pos, cur_pos) + "\\"; - } else if(myString.charAt(cur_pos-1) == "\\") { - newString += myString.substring(prev_pos, cur_pos); - } - prev_pos = cur_pos++; - cur_pos = myString.indexOf("'", cur_pos); - } - return(newString + myString.substring(prev_pos, myString.length)); -} - -function MTMTrackExpand(thisMenu) { - var i, targetPath; - var foundNumber = false; - for(i = 0; i < thisMenu.items.length; i++) { - if(thisMenu.items[i].url != "" && MTMTrackTarget(thisMenu.items[i].target)) { - 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; - - if(targetPath.lastIndexOf(thisMenu.items[i].url) != -1 && (targetPath.lastIndexOf(thisMenu.items[i].url) + thisMenu.items[i].url.length) == targetPath.length) { - return(thisMenu.items[i].number); - } - } - if(thisMenu.items[i].submenu) { - foundNumber = MTMTrackExpand(thisMenu.items[i].submenu); - if(foundNumber) { - if(!thisMenu.items[i].expanded) { - thisMenu.items[i].expanded = true; - if(!MTMClickedItem) { MTMClickedItem = thisMenu.items[i].number; } - MTMExpansion = true; - } - return(foundNumber); - } - } - } -return(foundNumber); -} - -function MTMCloseSubs(thisMenu) { - var i, j; - var foundMatch = false; - for(i = 0; i < thisMenu.items.length; i++) { - if(thisMenu.items[i].submenu && thisMenu.items[i].expanded) { - if(thisMenu.items[i].number == MTMClickedItem) { - foundMatch = true; - for(j = 0; j < thisMenu.items[i].submenu.items.length; j++) { - if(thisMenu.items[i].submenu.items[j].expanded) { - thisMenu.items[i].submenu.items[j].expanded = false; - } - } - } else { - if(foundMatch) { - thisMenu.items[i].expanded = false; - } else { - foundMatch = MTMCloseSubs(thisMenu.items[i].submenu); - if(!foundMatch) { - thisMenu.items[i].expanded = false; - } - } - } - } - } -return(foundMatch); -} - -function MTMFetchIcon(testString) { - var i; - for(i = 0; i < MTMIconList.items.length; i++) { - if((MTMIconList.items[i].type == 'any') && (testString.indexOf(MTMIconList.items[i].match) != -1)) { - return(MTMIconList.items[i].file); - } else if((MTMIconList.items[i].type == 'pre') && (testString.indexOf(MTMIconList.items[i].match) == 0)) { - return(MTMIconList.items[i].file); - } else if((MTMIconList.items[i].type == 'post') && (testString.indexOf(MTMIconList.items[i].match) != -1)) { - if((testString.lastIndexOf(MTMIconList.items[i].match) + MTMIconList.items[i].match.length) == testString.length) { - return(MTMIconList.items[i].file); - } - } - } -return("menu_link_default.gif"); -} - -function MTMGetPos(myObj) { - return(myObj.offsetTop + ((myObj.offsetParent) ? MTMGetPos(myObj.offsetParent) : 0)); -} - -function MTMCheckURL(myURL) { - var tempString = ""; - 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)) { - tempString += myURL; - } else { - tempString += MTMPreHREF + myURL; - } -return(tempString); -} - -function MTMakeVoid(thisItem, thisCmd, thisText) { - var tempString = ""; - 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;"'; - if(thisItem.number == MTMClickedItem) { - var tempClass; - tempClass = thisItem.expanded ? "subexpanded" : "subclosed"; - tempString += ' class="' + tempClass + '"'; - } - return(tempString + '>'); -} - -function MTMakeLink(thisItem, addName) { - var tempString = '<a'; - - if(MTMTrackedItem && MTMTrackedItem == thisItem.number) { - tempString += ' class="tracked"' - } - if(addName) { - tempString += ' name="sub' + thisItem.number + '"'; - } - tempString += ' href="' + MTMCheckURL(thisItem.url) + '"'; - if(thisItem.target != "") { - tempString += ' target="' + thisItem.target + '"'; - } -return tempString; -} - -function MTMakeImage(thisImage) { - return('<img src="' + MTMPreHREF + MTMenuImageDirectory + thisImage + '" align="left" border="0" vspace="0" hspace="0" width="18" height="18">'); -} - -function MTMakeBackImage(thisImage) { - var tempString = 'transparent url("' + ((MTMPreHREF == "") ? "" : MTMPreHREF); - tempString += MTMenuImageDirectory + thisImage + '")' - return(tempString); -} - -function MTMakeA(thisType, thisText, thisColor) { - var tempString = ""; - tempString += 'a' + ((thisType == "pseudo") ? ':' : '.'); - return(tempString + thisText + '{color:' + thisColor + ';background:' + MTMakeBackground() + ';}'); -} - -function MTMakeBackground() { - return((MTMBackground == "") ? MTMBGColor : 'transparent'); -} - -function MTMTrackTarget(thisTarget) { - if(thisTarget.charAt(0) == "_") { - return false; - } else { - for(i = 0; i < MTMFrameNames.length; i++) { - if(thisTarget == MTMFrameNames[i]) { - return true; - } - } - } - return false; -} - - - - -/****************************************************************************** -* User-configurable options. * -******************************************************************************/ - -// Menu table width, either a pixel-value (number) or a percentage value. -var MTMTableWidth = "100%"; - -// Name of the frame where the menu is to appear. -var MTMenuFrame = "tocmain"; - -// variable for determining whether a sub-menu always gets a plus-sign -// regardless of whether it holds another sub-menu or not -var MTMSubsGetPlus = true; - - -// variable that defines whether the menu emulates the behaviour of -// Windows Explorer -var MTMEmulateWE = true; - -// Directory of menu images/icons -var MTMenuImageDirectory = "/ndk/doc/docui2k/menu-images/"; - -// Variables for controlling colors in the menu document. -// Regular BODY atttributes as in HTML documents. -var MTMBGColor = "#cc0000"; -var MTMBackground = ""; -var MTMTextColor = "white"; - -// color for all menu items -var MTMLinkColor = "#ffffcc"; - -// Hover color, when the mouse is over a menu link -var MTMAhoverColor = "#FF9933"; - -// Foreground color for the tracking & clicked submenu item -var MTMTrackColor ="#FF9933"; -var MTMSubExpandColor = "#ffffcc"; -var MTMSubClosedColor = "#ffffcc"; - -// All options regarding the root text and it's icon -var MTMRootIcon = "menu_new_root.gif"; -var MTMenuText = "Site contents:"; -var MTMRootColor = "white"; -var MTMRootFont = "Verdana"; -var MTMRootCSSize = "84%"; -var MTMRootFontSize = "-1"; - -// Font for menu items. -var MTMenuFont = "Verdana"; -var MTMenuCSSize = "74%"; -var MTMenuFontSize = "-1"; - -// Variables for style sheet usage -// 'true' means use a linked style sheet. -var MTMLinkedSS = false; -var MTMSSHREF = "style/menu.css"; - -// Whether you want an open sub-menu to close automagically -// when another sub-menu is opened. 'true' means auto-close -var MTMSubsAutoClose = false; - -// This variable controls how long it will take for the menu -// to appear if the tracking code in the content frame has -// failed to display the menu. Number if in tenths of a second -// (1/10) so 10 means "wait 1 second". -var MTMTimeOut = 25; - -/****************************************************************************** -* User-configurable list of icons. * -******************************************************************************/ - -var MTMIconList = null; -MTMIconList = new IconList(); -// examples: -//MTMIconList.addIcon(new MTMIcon("menu_link_external.gif", "http://", "pre")); -//MTMIconList.addIcon(new MTMIcon("menu_link_pdf.gif", ".pdf", "post")); - -/****************************************************************************** -* User-configurable menu. * -******************************************************************************/ - - -// navigation link is an object used to store the extracted information from -// the search request. The stored information will be used to build the -// navigation tree. - function navigationLink(title,URL,level,elementIndex,levelIndex,parentIndex,author) - { - var returnArray = new Array(); - returnArray.title = title; - returnArray.URL = URL; - returnArray.level = level; - returnArray.hasChild = false; - returnArray.elementIndex = elementIndex; - returnArray.parentIndex = parentIndex; - returnArray.levelIndex = levelIndex; - returnArray.author = author; - - return returnArray; - } - -// Variables used for tracking state as the search iterates through the list -// of documents returned. -var index = 0; -var currentLevel = 0; -var levelParents = new Array(); -var levelIndexes = new Array(); -var navigationTree = new Array(); -var treeNodes = new Array(); -var levelIndex = 0; -top.printList = ""; -top.printCount = 0; - -// asign the menu handle to the created tree -var menu = null; - - -function getNextChecked(item) -{ - // case that root of tree is selected - if ( item.parent == null && item.selected) - { - for (var i = 0 ; i < top.authors.length; i++) - { - var re = /\s$/; - - if (top.titles[i].replace(re,"") == item.text.replace(re,"")) - { - top.printList += (top.authors[i].length + 3) + "_" + top.authors[i].replace(/\s/g,"+") + "+en"; - top.printCount ++; - } - } - } - else if (item.submenu != null) - { - for (var x = 0; x < item.submenu.items.length; x++) - { - if (item.submenu.items[x].selected) - { - var name = item.submenu.items[x].text; - for (var i = 0 ; i < top.authors.length; i++) - { - var re = /\s$/; - if (top.titles[i].replace(re,"") == name.replace(re,"")) - { - top.printList += (top.authors[i].length + 3) + "_" + top.authors[i].replace(/\s/g,"+") + "+en"; - top.printCount ++; - } - } - - } - else - { - getNextChecked(item.submenu.items[x]); - } - } - } - -} - -// Get a URL to pass checked topics to the Print Servlet - - - -function getPrintUrl(menu) -{ - top.printList = ""; - top.printCount = 0; - - getNextChecked(menu.items[0]); - top.printList = top.printCount + "_" + top.printList; - - return top.printList; -} - -function setLevels() -{ - - // Tracking the parent of the next node. - levelParents[currentLevel + 1] = index; - - // levelIndex is the child index under a branch - if (levelIndexes[currentLevel] == null) - { - levelIndexes[currentLevel] = 0; - } - else - { - levelIndexes[currentLevel] = levelIndexes[currentLevel] + 1; - levelIndexes[currentLevel + 1] = -1; - } -} - -function buildTree() -{ - -// Determine which nodes have children and assign the correct property -for (var i = 0; i < navigationTree.length-1; i++) -{ - // see if the current node has chilren - var thisLevel = navigationTree[i]["level"]; - var nextLevel = navigationTree[i+1]["level"]; - - if (nextLevel > thisLevel) - { - navigationTree[i]["hasChild"] = true; - } - else - { - navigationTree[i]["hasChild"] = false; - } -} - - -// create tree object nodes. -for( var j = 0; j < navigationTree.length; j++) -{ - treeNodes[j] = null; - treeNodes[j] = new MTMenu(); -} - - -// add all items to nodes - -// NOTE, index to add to is the parent index + 1 for node tree offset of root=0 -for( var j3 = 0; j3 < navigationTree.length; j3++) -{ - if (navigationTree[j3]["parentIndex"] == null) - { - var nsearchID = navigationTree[j3]["author"]; - treeNodes[0].MTMAddItem(new MTMenuItem(navigationTree[j3]["title"], navigationTree[j3]["URL"].replace(/http...developer.novell.com.ndk/gi,"/ndk") , "content_frame", nsearchID)); - } - else - { - var nsearchID = navigationTree[j3]["author"]; - 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)); - } -} - -// create submenu structure -// NOTE: add 1 to parent nodes for root = 0 offset. -for( var j4 = 0; j4 < navigationTree.length; j4++) -{ - if (navigationTree[j4]["hasChild"]) - { - var pindex = null; - if (navigationTree[j4]["parentIndex"] == null) - { - - pindex = 0; - } - else - { - pindex = navigationTree[j4]["parentIndex"]+1; - } - - var lindex = navigationTree[j4]["levelIndex"]; - // document.write('treeNodes[' + pindex +'].items['+ lindex +'].MTMakeSubmenu(treeNodes['+(j4+1)+']);<br>'); - - treeNodes[pindex].items[lindex].MTMakeSubmenu(treeNodes[j4+1]); - } -} - - menu = treeNodes[0]; - -//expand the second item to display the sub contents on first display -if (menu.items[0] != null ) -{ - menu.items[0].expanded = true; - -} - - - -} - - - -currentLevel++; - -setLevels(); -var navElement = navigationLink("NDS Libraries for C ","http://developer.novell.com/ndk/doc/ndslib/treetitl.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("NDS Backup Services ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/hevgtl7k.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Functions ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/h7qwv271.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("NDSBackupServerData ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk5.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSFreeNameList ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk12.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSGetReplicaPartitionNames ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk19.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSIsOnlyServerInTree ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk26.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSSYSVolumeRecovery ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk33.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSVerifyServerInfo ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk40.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Structures ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/hqp7vveq.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("NAMEID_TYPE ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/sdk48.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Values ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/hmmmal7s.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("NDS Reason Flags ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/h3r99io5.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDS Server Flags ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/hnlckbki.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Revision History ","http://developer.novell.com/ndk/doc/ndslib/dsbk_enu/data/a5i29ah.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("NDS Event Services ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hmwiqbwd.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Concepts ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hj3udfo7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("NDS Event Introduction ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hmgeu8a1.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDS Event Functions ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hxwcemsz.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDS Event Priorities ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hux0tdup.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDS Event Types ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/h741eryw.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Global Network Monitoring ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/h9alatk4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Tasks ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/huypg52u.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Monitoring NDS Events ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hhkihe7f.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Functions ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/h7qwv271.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("NWDSEConvertEntryName ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk28.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSEGetLocalAttrID ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk33.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSEGetLocalAttrName ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk39.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSEGetLocalClassID ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk45.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSEGetLocalClassName ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk51.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSEGetLocalEntryID ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk57.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSEGetLocalEntryName ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk63.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSERegisterForEvent ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk69.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSERegisterForEventWithResult ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk75.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSEUnRegisterForEvent ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk81.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Structures ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hqp7vveq.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("DSEACL ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk88.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEBackLink ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk92.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEBinderyObjectInfo ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk96.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEBitString ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk100.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEChangeConnState ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk104.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSECIList ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk108.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEDebugInfo ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk112.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEEmailAddress ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk116.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEEntryInfo ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk120.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEEntryInfo2 ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk124.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEEventData ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk128.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEFaxNumber ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk132.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEHold ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk135.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEModuleState ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk139.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSENetAddress ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk143.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEOctetList ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk147.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEPath ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk151.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEReplicaPointer ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk155.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSESEVInfo ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk159.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSETimeStamp ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk163.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSETraceInfo ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk167.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSETypedName ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk172.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEVALData ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk176.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DSEValueInfo ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/sdk179.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Values ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hmmmal7s.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Event Priorities ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hlerfllh.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Event Types ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/hiz5y84y.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Revision History ","http://developer.novell.com/ndk/doc/ndslib/dsev_enu/data/a6hw6zr.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("NDS Technical Overview ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h6tvg4z7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Directory Access Protocols ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/a2b6k5x.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDS Architecture ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h6mny7fl.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("NDS Objects ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hp4dslw5.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("NDS Names ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h0yh1byj.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Tree Walking ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h2xhaphc.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDS Object Management ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h3mq2rf0.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("NDS Security ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hl8x1zxc.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Authentication ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hp901s8a.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Access Control Lists ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hr8sqtoi.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Inheritance ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hh9881ul.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NetWare File System ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h64btfhk.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Partitions and Replicas ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hmq60r6h.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Partitioning ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hqx5hvrp.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Replication ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hj5l8npv.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Distributed Reference Management ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hzap47de.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Partition Operations ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hgbpk7x9.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Synchronization ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hsiplgn4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Background Processes ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hz2kcp2e.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Bindery Services ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hwug6ytv.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("NDS Bindery Context ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h8dwby8o.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Bindery Context Path ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/h6y3yva6.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Bindery Context Eclipsing ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hwcqk80m.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDS Bindery Objects ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hq4w9le6.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("NDS Return Values ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hbjry4gt.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Tuning Background Processes ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/hhv9cqpk.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Revision History ","http://developer.novell.com/ndk/doc/ndslib/dsov_enu/data/a5i29ah.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("NDS Core Services ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h2y7hdit.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Programming Concepts ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h2x9gqr9.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Context Handles ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/huynzi7a.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Buffer Management ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h9xiygoj.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Search Requests ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h11es6ae.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Add Object Requests ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hqjws9hi.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Multiple Tree Support ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hu5a8flo.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Effective Rights Function ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/he06edkq.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Partition Functions ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/ha7fzu9h.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Replica Functions ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hpmsr4w7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Schema Extension Requests ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hrgy5k6e.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Tasks ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/huypg52u.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Context Handle Tasks ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hw34ixeu.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Buffer Tasks ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hb1nkqk4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Object Tasks ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hddp9m9i.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Schema Tasks ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hp85l75p.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Functions ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h7qwv271.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("NWDSAbbreviateName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk135.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSAbortPartitionOperation ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk144.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSAddFilterToken ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk153.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSAddObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk162.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSAddPartition (obsolete---moved from .h file 11/99) ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk171.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSAddReplica ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk180.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSAddSecurityEquiv ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk189.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSAllocBuf ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk198.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSAllocFilter ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk207.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSAuditGetObjectID ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk216.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSAuthenticate ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk225.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSAuthenticateConn ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk234.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSAuthenticateConnEx ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a3fvxoz.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSBackupObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk243.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSBeginClassItem ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk252.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSCanDSAuthenticate ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk261.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSCanonicalizeName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk270.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSChangeObjectPassword ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk279.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSChangeReplicaType ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk288.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSCIStringsMatch ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk297.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSCloseIteration ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk305.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSCompare ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk314.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSComputeAttrValSize ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk360.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSCreateContext (obsolete---moved from .h file 6/99) ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk369.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSCreateContextHandle ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk371.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSDefineAttr ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk382.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSDefineClass ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk391.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSDelFilterToken ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk402.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSDuplicateContextHandle ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk423.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSExtSyncList ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk434.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSExtSyncRead ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk443.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSExtSyncSearch ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk455.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSFreeBuf ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk465.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSFreeContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk474.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSFreeFilter ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk491.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGenerateObjectKeyPair ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk501.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetAttrCount ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk511.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetAttrDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk521.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetAttrName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk530.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetAttrVal ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk540.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetAttrValFlags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk550.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetAttrValModTime ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk558.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetBinderyContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk566.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetClassDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk603.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetClassDefCount ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk691.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetClassItem ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk769.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetClassItemCount ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk838.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk919.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetCountByClassAndName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk972.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetCurrentUser ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1031.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetDefNameContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1041.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetDSIInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1117.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetDSVerInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1209.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetEffectiveRights ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1274.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetMonitoredConnRef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1346.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetNDSInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1425.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetObjectCount ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1528.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetObjectHostServerAddress ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1604.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetObjectName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1640.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetObjectNameAndInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1700.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetPartitionExtInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1781.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetPartitionExtInfoPtr ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1830.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetPartitionInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk1938.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetPartitionRoot ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2001.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetServerAddresses2 ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2030.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetServerDN ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2039.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetServerName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2047.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetSyntaxCount ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2056.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetSyntaxDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2065.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSGetSyntaxID ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2074.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSInitBuf ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2082.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSInspectEntry ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2091.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSJoinPartitions ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2099.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSList ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2108.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSListAttrsEffectiveRights ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2117.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSListByClassAndName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2126.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSListContainableClasses ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2135.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSListContainers ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2144.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSListPartitions ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2153.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSListPartitionsExtInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2162.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSLogin ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2171.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSLoginAsServer ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2180.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSLogout ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2187.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSMapIDToName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2196.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSMapNameToID ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2205.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSModifyClassDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2214.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSModifyDN ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2223.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSModifyObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2232.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSModifyRDN ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2241.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSMoveObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2250.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSMutateObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a37nkf6.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSOpenConnToNDSServer ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2259.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSOpenMonitoredConn ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2268.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSOpenStream ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2277.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSPartitionReceiveAllUpdates ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2285.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSPartitionSendAllUpdates ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2294.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSPutAttrName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2303.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSPutAttrNameAndVal ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2312.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSPutAttrVal ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2321.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSPutChange ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2330.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSPutChangeAndVal ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2339.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSPutClassItem ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2348.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSPutClassName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2357.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSPutFilter ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2364.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSPutSyntaxName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2373.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSRead ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2380.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSReadAttrDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2389.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSReadClassDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2398.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSReadNDSInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2407.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSReadObjectDSIInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2416.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSReadObjectInfo ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2425.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSReadReferences ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2434.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSReadSyntaxDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2443.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSReadSyntaxes ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2451.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSReloadDS ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2459.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSRemoveAllTypes ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2467.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSRemoveAttrDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2475.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSRemoveClassDef ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2484.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSRemoveObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2493.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSRemovePartition ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2501.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSRemoveReplica ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2510.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSRemSecurityEquiv ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2519.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSRepairTimeStamps ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2528.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSReplaceAttrNameAbbrev ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2536.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSResolveName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2544.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSRestoreObject ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2553.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSReturnBlockOfAvailableTrees ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2562.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSScanConnsForTrees ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2573.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSScanForAvailableTrees ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2582.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSSearch ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2591.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSSetContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2600.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSSetCurrentUser ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2609.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSSetDefNameContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2615.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSSetMonitoredConnection ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2624.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSSplitPartition ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2633.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSSyncPartition ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2642.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSSyncReplicaToServer ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2651.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSSyncSchema ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2660.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSUnlockConnection ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2669.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSVerifyObjectPassword ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2678.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSWhoAmI ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2687.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWGetDefaultNameContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2695.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWGetFileServerUTCTime ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2704.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWGetNumConnections ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2712.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWGetNWNetVersion ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2720.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWGetPreferredConnName ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2727.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWIsDSAuthenticated ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2736.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWIsDSServer ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2743.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWNetInit ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2750.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWNetTerm ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2759.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWSetDefaultNameContext ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2767.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWSetPreferredDSTree ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2776.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Structures ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hqp7vveq.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Asn1ID_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2785.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Attr_Info_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2790.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Back_Link_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2795.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Bit_String_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2800.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Buf_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2805.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("CI_List_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2810.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Class_Info_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2815.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("EMail_Address_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2820.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Fax_Number_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2826.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Filter_Cursor_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2831.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Filter_Node_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2836.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Hold_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2841.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSOSVersion_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2846.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSStatsInfo_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2850.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Net_Address_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2855.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDS_TimeStamp_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2860.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Object_ACL_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2865.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Object_Info_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2870.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Octet_List_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2875.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Octet_String_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2880.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Path_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2885.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Replica_Pointer_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2890.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Syntax_Info_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2895.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("TimeStamp_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2900.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Typed_Name_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2906.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Unknown_Attr_T ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/sdk2911.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Values ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hmmmal7s.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Attribute Constraint Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hudjk3k4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Attribute Value Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h6anqw6h.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Class Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hpj620k3.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Filter Tokens ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h487zxy3.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Name Space Types ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hs6qj0yl.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDS Ping Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hf0fdqhd.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Network Address Types ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hniuyp90.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Scope Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h6wfyyfk.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Replica Types ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/he290q86.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Replica States ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/h9br9yt1.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Syntax Matching Flags ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hd8fn0rm.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Syntax IDs ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hn1dsa7y.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("NDS Example Code ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/hb05g04v.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Context Handle ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a2sofgc.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Object and Attribute ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a2snp6e.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Browsing and Searching ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a2snu78.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Schema ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a2snqyd.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Revision History ","http://developer.novell.com/ndk/doc/ndslib/nds__enu/data/a5i29ah.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("NDS Schema Reference ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h4q1mn1i.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Schema Concepts ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h282spjh.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Schema Structure ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hpmkggmh.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Schema Components ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hvt5bdoi.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Object Classes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hbna398k.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Naming Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h9vf1k0r.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Containment Classes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hh1izaro.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Super Classes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hmdjysrx.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Object Class Flags ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h6rvyaky.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Default ACL Templates ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hr9sm1l0.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Auxiliary Classes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hlh5m1af.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Attribute Type Definitions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hotadinr.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Attribute Syntax Definitions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h2m59phc.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Schema Extensions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/he5mef3b.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("AFP Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk75.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Alias ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk83.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("applicationEntity ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk91.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("applicationProcess ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk99.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Audit:File Object ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk107.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Bindery Object ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk115.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Bindery Queue ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk123.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("certificationAuthority ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk131.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("CommExec ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk139.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Computer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk147.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Country ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk155.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("cRLDistributionPoint ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk163.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("dcObject ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk171.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Device ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk179.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Directory Map ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk187.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("domain ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk195.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("dSA ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk203.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("External Entity ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk219.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Group ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk227.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Group ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a38rj6z.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk243.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk251.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Locality ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk259.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("MASV:Security Policy ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk267.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Message Routing Group ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk275.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Messaging Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk283.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NCP Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk291.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("ndsLoginProperties ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk347.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:Certificate Authority ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk355.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:Key Material ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk363.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:Trusted Root ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2okvbk.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:groupOfCertificates ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk421.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailGroup1 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk445.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailRecipient ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk466.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:NetscapeMailServer5 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk474.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:NetscapeServer5 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk482.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:nginfo3 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk510.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:nsLicenseUser ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk518.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Organization ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk530.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Organizational Person ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk541.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Organizational Role ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk550.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Organizational Unit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk561.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Partition ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk570.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Person ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk578.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("pkiCA ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk586.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("pkiUser ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk594.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Print Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk602.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Printer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk610.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Profile ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk618.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Queue ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk626.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Resource ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk634.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SAS:Security ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk642.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SAS:Service ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk650.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk658.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("strongAuthenticationUser ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk698.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Template ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk706.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Top ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk714.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Tree Root ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk722.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Unknown ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk730.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("User ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk738.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("userSecurityInformation ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk746.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Volume ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk754.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("WANMAN:LAN Area ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk762.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Entrust:CRLDistributionPoint ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk211.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("inetOrgPerson ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk235.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDPS Broker ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk299.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDPS Manager ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk307.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDPS Printer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk315.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Catalog ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk323.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Master Catalog ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk331.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Slave Catalog ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk339.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NetSvc ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk379.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:License Certificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk386.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:License Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk394.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:Product Container ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk412.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:groupOfUniqueNames5 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk432.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailGroup5 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk454.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:Nginfo ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk491.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:Nginfo2 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk502.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("residentialPerson ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3omhcl.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SLP Scope Unit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk666.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SLP Directory Agent ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk674.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SLP Service ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk682.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SMS SMDR Class ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk690.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("List and Locality ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h48ynbap.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Base Attribute Definitions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/hf9qbbni.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Aliased Object Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk782.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Account Balance ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk788.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("ACL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk794.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Allow Unlimited Credit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk800.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("associatedName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a7bbra4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("attributeCertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk806.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Audit:Contents ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk824.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Audit:File Link ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk836.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Audit:Link List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk842.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Audit:Path ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk848.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Audit:Policy ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk854.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Audit:Type ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk860.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("authorityRevocationList ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk866.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Authority Revocation ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk872.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Auxiliary Class Flag ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk884.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Back Link ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk890.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Bindery Object Restriction ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk896.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Bindery Property ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk902.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Bindery Restriction Level ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk908.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Bindery Type ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk914.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("businessCategory ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk920.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk932.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("cACertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk938.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("CA Private Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk944.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("CA Public Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk950.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Cartridge ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk956.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("certificateRevocationList ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk962.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Certificate Revocation ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk968.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Certificate Validity Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk974.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("crossCertificatePair ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk926.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk986.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Convergence ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk998.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Cross Certificate Pair ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1004.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("dc ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1034.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Default Queue ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1040.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("deltaRevocationList ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1052.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("departmentNumber ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3on5am.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Description ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1058.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("destinationIndicator ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1064.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Detect Intruder ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1070.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Device ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1076.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("dmdName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1082.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("dn ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1088.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("dnQualifier ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1094.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("DS Revision ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1100.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("EMail Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1106.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("employeeType ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3on9iy.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("enhancedSearchGuide ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1120.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Equivalent To Me ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1138.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("External Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1144.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("External Synchronizer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1150.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Facsimile Telephone Number ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1156.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Full Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1162.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Generational Qualifier ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1168.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("generationQualifier ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1174.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1180.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Given Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1186.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1192.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("GUID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1198.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Higher Privileges ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1222.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Home Directory ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1228.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Home Directory Rights ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1234.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("homePhone ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3onbgn.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("homePostalAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3ondem.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("houseIdentifier ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1258.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Host Device ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1240.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Host Resource Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1246.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Host Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1252.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Inherited ACL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1264.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Initials ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1270.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("internationaliSDNNumber ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1276.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Internet EMail Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1282.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("knowledgeInformation ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1312.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1318.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Language ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1324.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Last Login Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1330.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Last Referenced Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1336.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP ACL v11 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1342.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Anonymous Identity ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1354.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Enable SSL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1384.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Enable TCP ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1390.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Enable UDP ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1396.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Group ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1402.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Host Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1408.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Log Filename ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1414.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Log Level ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1420.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Referral ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1432.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Screen Level ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1438.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1456.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Server List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1474.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP SSL Port ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1480.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Suffix ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1486.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP TCP Port ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1492.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP UDP Port ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1498.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP:bindCatalog ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1516.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP:bindCatalogUsage ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1522.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP:keyMaterialName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1546.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP:otherReferralUsage ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1552.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP:searchCatalog ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1558.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP:searchCatalogUsage ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1564.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP:searchReferralUsage ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1570.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Locked By Intruder ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1576.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Lockout After Detection ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1582.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Login Disabled ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1594.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Login Expiration Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1600.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Login Grace Limit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1606.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Login Grace Remaining ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1612.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Login Intruder Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1618.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Login Intruder Attempts ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1624.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Login Intruder Limit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1630.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Login Maximum Simultaneous ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1642.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Login Script ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1648.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Login Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1654.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Mailbox ID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1672.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Mailbox Location ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1678.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("manager ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3onljj.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("masvAuthorizedRange ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1684.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("masvDefaultRange ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1690.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("masvDomainPolicy ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1696.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("masvLabel ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1702.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("masvProposedLabel ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1708.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Member ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1726.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Members Of Template ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1732.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Memory ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1738.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Message Routing Group ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1744.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Message Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1750.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Messaging Database Location ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1756.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Messaging Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1762.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1768.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Minimum Account Balance ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1786.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("mobile ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3oojmc.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:Certificate Chain ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4104.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:Given Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4110.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:Key File ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4116.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:Keystore ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2oknqe.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:Not After ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2oknpk.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:Not Before ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2oknpe.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:Parent CA ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4128.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:Private Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4140.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:Public Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4146.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:Subject Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4158.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSPKI:userCertificateInfo ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2oknp2.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Network Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4170.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Network Address Restriction ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4176.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NNS Domain ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4338.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Notify ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4374.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:administratorContactInfo ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4392.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:adminURL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4398.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:AmailAccessDomain ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4404.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:AmailAlternateAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4410.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:AmailAutoReplyMode ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4416.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:AmailAutoReplyText ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4422.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:AmailDeliveryOption ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4428.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:AmailForwardingAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4434.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:AmailHost ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4440.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:AmailMessageStore ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4446.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:AmailProgramDeliveryInfo ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4452.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:AmailQuota ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4458.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:AnsLicenseEndTime ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4464.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:AnsLicensedFor ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4470.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:AnsLicenseStartTime ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4476.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:employeeNumber ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4482.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:installationTimeStamp ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4488.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailRoutingAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a2ixy4e.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:memberCertificateDesc ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4554.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mgrpRFC822mailmember ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4560.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:ngcomponentCIS ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4572.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:nsaclrole ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4578.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:nscreator ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4584.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:nsflags ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4590.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:nsnewsACL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4614.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:nsprettyname ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4620.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:serverHostName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4626.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:serverProductName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4632.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:serverRoot ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4638.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:serverVersionNumber ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4644.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:subtreeACI ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4650.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4656.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Obituary ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4662.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Obituary Notify ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4668.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Object Class ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4674.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Operator ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4680.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Other GUID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4686.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4692.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Owner ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4698.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Page Description Language ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4704.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("pager ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3oojmj.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Partition Control ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4716.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Partition Creation Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4722.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Partition Status ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4728.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Password Allow Change ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4734.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Password Expiration Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4740.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Password Expiration Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4746.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Password Management ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4752.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Password Minimum Length ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4758.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Password Required ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4764.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Password Unique Required ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4770.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Passwords Used ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4776.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Path ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4782.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Permanent Config Parms ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4788.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Postal Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4800.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Postal Code ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4806.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Postal Office Box ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4812.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Postmaster ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4818.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("preferredDeliveryMethod ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4824.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("presentationAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4830.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Print Job Configuration ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4848.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Print Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4854.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Printer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4860.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Printer Configuration ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4872.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Printer Control ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4878.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Private Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4914.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Profile ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4920.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Profile Membership ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4926.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("protocolInformation ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4932.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Public Key ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4944.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Purge Vector ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4950.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Queue ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4956.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Queue Directory ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4962.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Received Up To ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4968.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Reference ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4974.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("registeredAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4980.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Replica ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5010.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Replica Up To ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5016.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Resource ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5028.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Revision ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5064.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Role Occupant ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5070.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("roomNumber ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5076.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Run Setup Script ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5082.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5088.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5094.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SAP Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5100.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SAS:Security DN ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5106.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SAS:Service DN ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5112.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("searchGuide ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5118.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("searchSizeLimit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5124.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("searchTimeLimit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5130.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Security Equals ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5136.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Security Flags ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5142.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("See Also ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5148.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Serial Number ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5154.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5160.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Server Holds ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5166.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Setup Script ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5178.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Status ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5286.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("supportedAlgorithms ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5298.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("supportedApplicationContext ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5304.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Supported Connections ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5310.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Supported Gateway ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5316.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Supported Services ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5322.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Supported Typefaces ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5328.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Surname ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5334.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Synchronization Tolerance ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5358.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Synchronized Up To ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5364.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5370.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Telephone Number ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5376.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("telexNumber ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5382.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("telexTerminalIdentifier ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5388.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Timezone ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5394.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Title ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5400.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Transitive Vector ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5406.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Type Creator Map ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5418.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink(" ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5424.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("uniqueID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5430.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Unknown ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5436.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Unknown Auxiliary Class ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5442.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Unknown Base Class ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5448.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Used By ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5454.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("User ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5460.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("userCertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5466.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("userPassword ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6m1fnz.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Uses ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5472.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Version ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5478.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Volume ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5484.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Volume Space Restrictions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5490.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("WANMAN:Cost ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5496.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("WANMAN:Default Cost ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5502.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("WANMAN:WAN Policy ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5514.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("x121Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5520.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("x500UniqueIdentifier ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5526.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Novell Attribute Extensions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3fh5xp.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("audio ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3omwno.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("carLicense ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3on4e7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Client Install Candidate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk980.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Color Supported ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk992.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Database Dir Path ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1010.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Database Volume Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1016.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Datapool Location ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1022.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Datapool Locations ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1028.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Delivery Methods Installed ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1046.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("displayName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3oorbo.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Employee ID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1114.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Entrust:AttributeCertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1126.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Entrust:User ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1132.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("IPP URI ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1300.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("jpegPhoto ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3onfdu.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("labeledUri ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3onkke.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP Class Map ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1372.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("ldapPhoto ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3op8zp.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAPUserCertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1504.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP:ARL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1510.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP:caCertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1528.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP:CRL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1534.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("LDAP:crossCertificatePair ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1540.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("MASV:Authorized Range ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a9j2co5.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("MASV:Default Range ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a9j2cob.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("MASV:Domain Policy ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a9j2coh.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("MASV:Label ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a9j2con.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("MASV:Proposed Label ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a9j2cot.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Maximum Speed ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1714.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Maximum Speed Units ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1720.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDPS Accountant Role ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1792.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDPS Control Flags ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1798.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDPS Default Printer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1822.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDPS Job Configuration ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1834.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDPS Manager Status ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1840.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDPS Operator Role ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1846.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDPS Printer Siblings ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1870.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDPS SMTP Server ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1888.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDPS User Role ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1894.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Actual Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1912.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Actual Filter ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1936.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Actual Scope ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1954.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:All Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1978.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:AttrDefTbl ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1984.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1990.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Auto Dredge ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk1996.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Base Object ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk2002.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:CatalogDB ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk2008.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Catalog List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk2014.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Dredge Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4008.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Filter ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4014.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:IndexDefTbl ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4020.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Indexes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4026.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Label ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4032.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Log ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4038.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Master Catalog ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4044.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Max Retries ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4056.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Max Threads ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4062.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Retry Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4068.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Scope ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4074.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Search Aliases ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4080.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Start Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4092.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NDSCat:Synch Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4098.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:Common Certificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4200.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:Current Installed ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4206.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:Current Used ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4224.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:License Database ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4236.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:License ID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4242.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:LSP Revision ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4254.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:Owner ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4260.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:Product ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4278.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:Publisher ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4284.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:Revision ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4290.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:Search Type ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4296.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:Summary Version ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4308.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:Transaction Database ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4314.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NLS:Version ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4332.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Notification Consumers ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4344.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Notification Profile ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4350.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Notification Service Enabled ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4356.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NRD:Registry Data ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4380.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NRD:Registry Index ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4386.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailAccessDomain ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4494.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailAlternateAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4500.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailAutoReplyMode ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4506.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailAutoReplyText ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4512.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailDeliveryOption ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4518.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailForwardingAddress ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4524.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailHost ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4530.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailMessageStore ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4536.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailProgramDeliveryInfo ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4542.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:mailQuota ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4548.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:ngComponent ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4566.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:nsLicenseEndTime ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4596.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:nsLicensedFor ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4602.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NSCP:nsLicenseStartTime ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4608.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Page Description Languages ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4710.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("preferredLanguage ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3oon3t.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Primary Notification Service ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4836.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Primary Resource Service ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4842.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Printer Agent Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4866.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Printer Manufacturer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4884.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Printer Mechanism Types ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4890.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Printer Model ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4896.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Printer Status ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4902.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("PSM Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4938.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Registry Advertising Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4986.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Registry Service Enabled ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk4992.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Resolution ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5022.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("secretary ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3oon40.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Sides Supported ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5184.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SLP Attribute ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5190.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SLP Cache Limit ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5196.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SLP Language ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5214.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SLP Lifetime ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5220.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SLP Scope Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5226.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SLP Status ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5244.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SLP SU Type ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5256.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SLP Type ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5262.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SLP URL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5268.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SMS Protocol Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5274.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SMS Registered Service ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5280.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SU ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5292.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SvcInfo ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5340.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SvcType ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5346.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("SvcTypeID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5352.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("userSMIMECertificate ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a3oorbh.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("LDAP Operational Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a7lnqjy.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("createTimeStamp ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fur3q.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("creatorsName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fur3f.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("entryFlags ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fuxcp.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("federationBoundary ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fzxsm.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("localEntryID ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fzcam.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("modifiersName ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fur3j.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("modifyTimeStamp ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fur3x.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("structuralObjectClass ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fuxcb.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("subordinateCount ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fuxci.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("subschemaSubentry ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a6fuxc4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Attribute Syntax Definitions ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/h55cqjqs.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Back Link ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5533.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Boolean ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5540.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Case Exact String ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5547.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Case Ignore List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5554.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Case Ignore String ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5561.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Class Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5568.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Counter ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5575.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Distinguished Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5582.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("EMail Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5589.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Facsimile Telephone Number ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5596.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Hold ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5603.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Integer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5610.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Interval ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5617.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Net Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5624.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Numeric String ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5631.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Object ACL ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5638.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Octet List ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5645.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Octet String ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5652.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Path ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5659.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Postal Address ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5666.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Printable String ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5673.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Replica Pointer ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5680.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Stream ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5687.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Telephone Number ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5694.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Time ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5701.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Timestamp ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5708.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Typed Name ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5715.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Unknown ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/sdk5722.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Index of Classes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx1.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("A through B ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx2.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("C through D ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx3.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("E through K ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx4.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("L through M ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx5.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("N ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx6.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("O ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("P through R ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx8.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("S ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx9.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("T through Z ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx10.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Index of Attributes ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx11.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("A ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx12.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("B ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx13.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("C ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx14.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("D ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx15.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("E ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx16.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("F through G ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx17.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("H ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx18.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("I through K ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx19.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("L ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx20.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("M ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx21.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("N ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx22.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("O ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx23.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("P ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx24.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Q ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx25.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("R ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx26.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("S ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx27.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("T ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx28.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("U ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx29.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("V through Z ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx30.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("0 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx32.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("1 ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx33.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("A through B ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx37.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("C ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx38.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("D ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx39.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("E through F ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx40.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("G ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx41.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("H ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx42.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("I through K ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx43.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("L ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx44.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("M ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx45.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("N ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx46.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("O ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx47.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("P ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx48.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Q through R ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx49.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("S ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx50.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("T ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx51.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("U through Z ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/schidx52.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Revision History ","http://developer.novell.com/ndk/doc/ndslib/schm_enu/data/a5i29ah.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("NDS Iterator Services ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hnv8aaj7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Concepts ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hj3udfo7.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("Iterator Objects ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hwiuqovp.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Iterator Indexes ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hqngpqag.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("Retrieval of Data ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/hy7j1t07.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Tasks ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/huypg52u.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Functions ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/h7qwv271.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -var navElement = navigationLink("NWDSItrAtEOF ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk29.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrAtFirst ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk36.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrClone ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk43.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrCount ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk50.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrCreateList ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk57.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrCreateSearch ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk64.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrDestroy ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk71.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrGetCurrent ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk77.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrGetInfo ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk84.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrGetNext ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk91.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrGetPosition ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk98.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrGetPrev ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk105.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrSetPosition ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk112.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrSetPositionFromIterator ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk119.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrSkip ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk126.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -var navElement = navigationLink("NWDSItrTypeDown ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/sdk133.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -currentLevel++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -setLevels(); -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],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -setLevels(); -var navElement = navigationLink("Revision History ","http://developer.novell.com/ndk/doc/ndslib/skds_enu/data/a5i29ah.html",currentLevel,index,levelIndexes[currentLevel],levelParents[currentLevel],""); -navigationTree[index] = navElement; -index++; - -if (currentLevel > 1) currentLevel-- - -if (currentLevel > 1) currentLevel-- - - diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-114491.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-114491.js deleted file mode 100644 index b4470ee..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-114491.js +++ /dev/null @@ -1,101 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2001 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): rokicki@instantis.com, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 10 December 2001 -* SUMMARY: Regression test for bug 114491 -* See http://bugzilla.mozilla.org/show_bug.cgi?id=114491 -* -* Rhino crashed on this code. It should produce a syntax error, not a crash. -* Using the () operator after a function STATEMENT is incorrect syntax. -* Rhino correctly caught the error when there was no |if (true)|. -* With the |if (true)|, however, Rhino crashed - -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 114491; -var summary = 'Regression test for bug 114491'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -status = inSection(1); -actual = 'Program execution did NOT fall into catch-block'; -expect = 'Program execution fell into into catch-block'; -try -{ - var sEval = 'if (true) function f(){}()'; - eval(sEval); -} -catch(e) -{ - actual = expect; -} -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - for (var i = 0; i < UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-114493.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-114493.js deleted file mode 100644 index 41e94b4..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-114493.js +++ /dev/null @@ -1,109 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2001 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): rokicki@instantis.com, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 10 December 2001 -* SUMMARY: Regression test for bug 114493 -* See http://bugzilla.mozilla.org/show_bug.cgi?id=114493 -* -* Rhino crashed on this code. It should produce a syntax error, not a crash. -* Note that "3"[5] === undefined, and Rhino correctly gave an error if you -* tried to use the call operator on |undefined|: -* -* js> undefined(); -* js: TypeError: undefined is not a function. -* -* However, Rhino CRASHED if you tried to do "3"[5](). -* -* Rhino would NOT crash if you tried "3"[0]() or "3"[5]. Only array indices -* that were out of bounds, followed by the call operator, would crash. -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 114493; -var summary = 'Regression test for bug 114493'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; -var sEval = ''; - - -status = inSection(1); -actual = 'Program execution did NOT fall into catch-block'; -expect = 'Program execution fell into into catch-block'; -try -{ - sEval = '"3"[5]()'; - eval(sEval); -} -catch(e) -{ - actual = expect; -} -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - for (var i = 0; i < UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-118849.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-118849.js deleted file mode 100644 index 3d7b89a..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-118849.js +++ /dev/null @@ -1,181 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2001 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 08 Jan 2002 -* SUMMARY: Just testing that we don't crash on this code -* See http://bugzilla.mozilla.org/show_bug.cgi?id=118849 -* -* http://developer.netscape.com:80/docs/manuals/js/core/jsref/function.htm -* The Function constructor: -* Function ([arg1[, arg2[, ... argN]],] functionBody) -* -* Parameters -* arg1, arg2, ... argN -* (Optional) Names to be used by the function as formal argument names. -* Each must be a string that corresponds to a valid JavaScript identifier. -* -* functionBody -* A string containing JS statements comprising the function definition. -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 118849; -var summary = 'Should not crash if we provide Function() with bad arguments' -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; -var cnFAIL_1 = 'LEGAL call to Function() caused an ERROR!!!'; -var cnFAIL_2 = 'ILLEGAL call to Function() FAILED to cause an error'; -var cnSTRING = 'ASDF'; -var cnNUMBER = 123; - - -/***********************************************************/ -/**** THESE ARE LEGITMATE CALLS AND SHOULD ALL SUCCEED ***/ -/***********************************************************/ -status = inSection(1); -actual = cnFAIL_1; // initialize to failure -try -{ - Function(cnSTRING); - Function(cnNUMBER); // cnNUMBER is a valid functionBody - Function(cnSTRING,cnSTRING); - Function(cnSTRING,cnNUMBER); - Function(cnSTRING,cnSTRING,cnNUMBER); - - new Function(cnSTRING); - new Function(cnNUMBER); - new Function(cnSTRING,cnSTRING); - new Function(cnSTRING,cnNUMBER); - new Function(cnSTRING,cnSTRING,cnNUMBER); - - actual = expect; -} -catch(e) -{ -} -addThis(); - - - -/**********************************************************/ -/*** EACH CASE THAT FOLLOWS SHOULD TRIGGER AN ERROR ***/ -/*** (BUT NOT A CRASH) ***/ -/*** NOTE WE NOW USE cnFAIL_2 INSTEAD OF cnFAIL_1 ***/ -/**********************************************************/ -status = inSection(2); -actual = cnFAIL_2; -try -{ - Function(cnNUMBER,cnNUMBER); // cnNUMBER is an invalid JS identifier name -} -catch(e) -{ - actual = expect; -} -addThis(); - - -status = inSection(3); -actual = cnFAIL_2; -try -{ - Function(cnNUMBER,cnSTRING,cnSTRING); -} -catch(e) -{ - actual = expect; -} -addThis(); - - -status = inSection(4); -actual = cnFAIL_2; -try -{ - new Function(cnNUMBER,cnNUMBER); -} -catch(e) -{ - actual = expect; -} -addThis(); - - -status = inSection(5); -actual = cnFAIL_2; -try -{ - new Function(cnNUMBER,cnSTRING,cnSTRING); -} -catch(e) -{ - actual = expect; -} -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - for (var i = 0; i < UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-127557.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-127557.js deleted file mode 100644 index 80b4e29..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-127557.js +++ /dev/null @@ -1,113 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): brendan@mozilla.org -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 06 Mar 2002 -* SUMMARY: Testing cloned function objects -* See http://bugzilla.mozilla.org/show_bug.cgi?id=127557 -* -* Before this bug was fixed, this testcase would error when run: -* -* ReferenceError: h_peer is not defined -* -* The line |g.prototype = new Object| below is essential: this is -* what was confusing the engine in its attempt to look up h_peer -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 127557; -var summary = 'Testing cloned function objects'; -var cnCOMMA = ','; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -function f(x,y) -{ - function h() - { - return h_peer(); - } - function h_peer() - { - return (x + cnCOMMA + y); - } - return h; -} - -status = inSection(1); -var g = clone(f); -g.prototype = new Object; -var h = g(5,6); -actual = h(); -expect = '5,6'; -addThis(); - - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} - diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-131510-001.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-131510-001.js deleted file mode 100644 index aae857f..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-131510-001.js +++ /dev/null @@ -1,68 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 16 Mar 2002 -* SUMMARY: Shouldn't crash if define |var arguments| inside a function -* See http://bugzilla.mozilla.org/show_bug.cgi?id=131510 -* -*/ -//----------------------------------------------------------------------------- -var bug = 131510; -var summary = "Shouldn't crash if define |var arguments| inside a function"; -printBugNumber(bug); -printStatus(summary); - - -function f() {var arguments;} -f(); - - -/* - * Put same example in function scope instead of global scope - */ -function g() { function f() {var arguments;}; f();}; -g(); - - -/* - * Put these examples in eval scope - */ -var s = 'function f() {var arguments;}; f();'; -eval(s); - -s = 'function g() { function f() {var arguments;}; f();}; g();'; -eval(s); - diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-140974.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-140974.js deleted file mode 100644 index a02408a..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-140974.js +++ /dev/null @@ -1,135 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): Martin.Honnen@t-online.de, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 04 May 2002 -* SUMMARY: |if (false) {var x;} should create the variable x -* See http://bugzilla.mozilla.org/show_bug.cgi?id=140974 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 140974; -var TEST_PASSED = 'variable was created'; -var TEST_FAILED = 'variable was NOT created'; -var summary = '|if (false) {var x;}| should create the variable x'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -// -------------- THESE TWO SECTIONS TEST THE VARIABLE X -------------- -status = inSection(1); -actual = TEST_PASSED; -try{ X;} catch(e) {actual = TEST_FAILED} -expect = TEST_PASSED; -addThis(); - -var X; - -status = inSection(2); -actual = TEST_PASSED; -try{ X;} catch(e) {actual = TEST_FAILED} -expect = TEST_PASSED; -addThis(); - - - -// -------------- THESE TWO SECTIONS TEST THE VARIABLE Y -------------- -status = inSection(3); -actual = TEST_PASSED; -try{ Y;} catch(e) {actual = TEST_FAILED} -expect = TEST_PASSED; -addThis(); - -if (false) {var Y;}; - -status = inSection(4); -actual = TEST_PASSED; -try{ Y;} catch(e) {actual = TEST_FAILED} -expect = TEST_PASSED; -addThis(); - - - -// -------------- THESE TWO SECTIONS TEST THE VARIABLE Z -------------- -status = inSection(5); -actual = TEST_PASSED; -try{ Z;} catch(e) {actual = TEST_FAILED} -expect = TEST_PASSED; -addThis(); - -if (false) { for (var Z; false;){} } - -status = inSection(6); -actual = TEST_PASSED; -try{ Z;} catch(e) {actual = TEST_FAILED} -expect = TEST_PASSED; -addThis(); - - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-146596.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-146596.js deleted file mode 100644 index dee3700..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-146596.js +++ /dev/null @@ -1,154 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): jim-patterson@ncf.ca, brendan@mozilla.org, -* pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 18 Jun 2002 -* SUMMARY: Shouldn't crash when catch parameter is "hidden" by varX -* See http://bugzilla.mozilla.org/show_bug.cgi?id=146596 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 146596; -var summary = "Shouldn't crash when catch parameter is 'hidden' by varX"; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -/* - * Just seeing we don't crash when executing this function - - * This example provided by jim-patterson@ncf.ca - * - * Brendan: "Jim, thanks for the testcase. But note that |var| - * in a JS function makes a function-scoped variable -- JS lacks - * block scope apart from for catch variables within catch blocks. - * - * Therefore the catch variable hides the function-local variable." - */ -function F() -{ - try - { - return "A simple exception"; - } - catch(e) - { - var e = "Another exception"; - } - - return 'XYZ'; -} - -status = inSection(1); -actual = F(); -expect = "A simple exception"; -addThis(); - - - -/* - * Sanity check by Brendan: "This should output - * - * 24 - * 42 - * undefined - * - * and throw no uncaught exception." - * - */ -function f(obj) -{ - var res = []; - - try - { - throw 42; - } - catch(e) - { - with(obj) - { - var e; - res[0] = e; // |with| binds tighter than |catch|; s/b |obj.e| - } - - res[1] = e; // |catch| binds tighter than function scope; s/b 42 - } - - res[2] = e; // |var e| has function scope; s/b visible but contain |undefined| - return res; -} - -status = inSection(2); -actual = f({e:24}); -expect = [24, 42, undefined]; -addThis(); - - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual.toString(); - expectedvalues[UBound] = expect.toString(); - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-152646.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-152646.js deleted file mode 100644 index adb4374..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-152646.js +++ /dev/null @@ -1,121 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com, mstoltz@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 08 July 2002 -* SUMMARY: Testing expressions with large numbers of parentheses -* See http://bugzilla.mozilla.org/show_bug.cgi?id=152646 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 152646; -var summary = 'Testing expressions with large numbers of parentheses'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -/* - * Just seeing that we don't crash when compiling this assignment - - * - * We will form an eval string to set the result-variable |actual|. - * To get a feel for this, suppose N were 3. Then the eval string is - * 'actual = (((0)));' The expected value for this after eval() is 0. - */ -status = inSection(1); - -var sLeft = '(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((('; -sLeft += sLeft; -sLeft += sLeft; -sLeft += sLeft; -sLeft += sLeft; -sLeft += sLeft; - -var sRight = '))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))'; -sRight += sRight; -sRight += sRight; -sRight += sRight; -sRight += sRight; - -var sEval = 'actual = ' + sLeft + '0' + sRight; -try -{ - eval(sEval); -} -catch(e) -{ - /* - * An exception during this eval is OK, as the runtime can throw one - * in response to too deep recursion. We haven't crashed; good! - */ - actual = 0; -} -expect = 0; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-156354.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-156354.js deleted file mode 100644 index 9dbd75f..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-156354.js +++ /dev/null @@ -1,126 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 16 September 2002 -* SUMMARY: Testing propertyIsEnumerable() on non-existent property -* See http://bugzilla.mozilla.org/show_bug.cgi?id=156354 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 156354; -var summary = 'Testing propertyIsEnumerable() on non-existent property'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -status = inSection(1); -actual = this.propertyIsEnumerable('XYZ'); -expect = false; -addThis(); - -status = inSection(2); -actual = this.propertyIsEnumerable(''); -expect = false; -addThis(); - -status = inSection(3); -actual = this.propertyIsEnumerable(undefined); -expect = false; -addThis(); - -status = inSection(4); -actual = this.propertyIsEnumerable(null); -expect = false; -addThis(); - -status = inSection(5); -actual = this.propertyIsEnumerable('\u02b1'); -expect = false; -addThis(); - - -var obj = {prop1:null}; - -status = inSection(6); -actual = obj.propertyIsEnumerable('prop1'); -expect = true; -addThis(); - -status = inSection(7); -actual = obj.propertyIsEnumerable('prop2'); -expect = false; -addThis(); - -// let's try one via eval(), too - -status = inSection(8); -eval("actual = obj.propertyIsEnumerable('prop2')"); -expect = false; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-159334.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-159334.js deleted file mode 100644 index c804d88..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-159334.js +++ /dev/null @@ -1,124 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): igor@icesoft.no, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 31 Oct 2002 -* SUMMARY: Testing script with at least 64K of different string literals -* See http://bugzilla.mozilla.org/show_bug.cgi?id=159334 -* -* Testing that script engine can handle scripts with at least 128K of different -* string literals. The following will evaluate, via eval(), a script like this: -* -* f('0') -* f('1') -* ... -* f('N - 1') -* -* where N is 0x20000 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 159334; -var summary = 'Testing script with at least 128K of different string literals'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -var N = 0x20000; - -// Create big string for eval recursively to avoid N*N behavior -// on string concatenation -var long_eval = buildEval_r(0, N); - -// Run it -var test_sum = 0; -function f(str) { test_sum += Number(str); } -eval(long_eval); - -status = inSection(1); -actual = (test_sum == N * (N - 1) / 2); -expect = true; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function buildEval_r(beginLine, endLine) -{ - var count = endLine - beginLine; - - if (count == 0) - return ""; - - if (count == 1) - return "f('" + beginLine + "')\n"; - - var middle = beginLine + (count >>> 1); - return buildEval_r(beginLine, middle) + buildEval_r(middle, endLine); -} - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-168347.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-168347.js deleted file mode 100644 index 12fa16e..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-168347.js +++ /dev/null @@ -1,215 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): desale@netscape.com, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 13 Sep 2002 -* SUMMARY: Testing F.toString() -* See http://bugzilla.mozilla.org/show_bug.cgi?id=168347 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 168347; -var summary = "Testing F.toString()"; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; -var FtoString = ''; -var sFunc = ''; - -sFunc += 'function F()'; -sFunc += '{'; -sFunc += ' var f = arguments.callee;'; -sFunc += ' f.i = 0;'; -sFunc += ''; -sFunc += ' try'; -sFunc += ' {'; -sFunc += ' f.i = f.i + 1;'; -sFunc += ' print("i = i+1 succeeded \ti = " + f.i);'; -sFunc += ' }'; -sFunc += ' catch(e)'; -sFunc += ' {'; -sFunc += ' print("i = i+1 failed with " + e + "\ti = " + f.i);'; -sFunc += ' }'; -sFunc += ''; -sFunc += ' try'; -sFunc += ' {'; -sFunc += ' ++f.i;'; -sFunc += ' print("++i succeeded \t\ti = " + f.i);'; -sFunc += ' }'; -sFunc += ' catch(e)'; -sFunc += ' {'; -sFunc += ' print("++i failed with " + e + "\ti = " + f.i);'; -sFunc += ' }'; -sFunc += ''; -sFunc += ' try'; -sFunc += ' {'; -sFunc += ' f.i++;'; -sFunc += ' print("i++ succeeded \t\ti = " + f.i);'; -sFunc += ' }'; -sFunc += ' catch(e)'; -sFunc += ' {'; -sFunc += ' print("i++ failed with " + e + "\ti = " + f.i);'; -sFunc += ' }'; -sFunc += ''; -sFunc += ' try'; -sFunc += ' {'; -sFunc += ' --f.i;'; -sFunc += ' print("--i succeeded \t\ti = " + f.i);'; -sFunc += ' }'; -sFunc += ' catch(e)'; -sFunc += ' {'; -sFunc += ' print("--i failed with " + e + "\ti = " + f.i);'; -sFunc += ' }'; -sFunc += ''; -sFunc += ' try'; -sFunc += ' {'; -sFunc += ' f.i--;'; -sFunc += ' print("i-- succeeded \t\ti = " + f.i);'; -sFunc += ' }'; -sFunc += ' catch(e)'; -sFunc += ' {'; -sFunc += ' print("i-- failed with " + e + "\ti = " + f.i);'; -sFunc += ' }'; -sFunc += '}'; - - -/* - * Use sFunc to define the function F. The test - * then rests on comparing F.toString() to sFunc. - */ -eval(sFunc); - - -/* - * There are trivial whitespace differences between F.toString() - * and sFunc. So strip out whitespace before comparing them - - */ -sFunc = stripWhite(sFunc); -FtoString = stripWhite(F.toString()); - - -/* - * Break comparison into sections to make any failures - * easier for the developer to track down - - */ -status = inSection(1); -actual = FtoString.substring(0,100); -expect = sFunc.substring(0,100); -addThis(); - -status = inSection(2); -actual = FtoString.substring(100,200); -expect = sFunc.substring(100,200); -addThis(); - -status = inSection(3); -actual = FtoString.substring(200,300); -expect = sFunc.substring(200,300); -addThis(); - -status = inSection(4); -actual = FtoString.substring(300,400); -expect = sFunc.substring(300,400); -addThis(); - -status = inSection(5); -actual = FtoString.substring(400,500); -expect = sFunc.substring(400,500); -addThis(); - -status = inSection(6); -actual = FtoString.substring(500,600); -expect = sFunc.substring(500,600); -addThis(); - -status = inSection(7); -actual = FtoString.substring(600,700); -expect = sFunc.substring(600,700); -addThis(); - -status = inSection(8); -actual = FtoString.substring(700,800); -expect = sFunc.substring(700,800); -addThis(); - -status = inSection(9); -actual = FtoString.substring(800,900); -expect = sFunc.substring(800,900); -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - -/* - * Remove any whitespace characters; also - * any escaped tabs or escaped newlines. - */ -function stripWhite(str) -{ - var re = /\s|\\t|\\n/g; - return str.replace(re, ''); -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-170193.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-170193.js deleted file mode 100644 index d5841bb..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-170193.js +++ /dev/null @@ -1,106 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): brendan@mozilla.org, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 22 Sep 2002 -* SUMMARY: adding prop after middle-delete of function w duplicate formal args -* See http://bugzilla.mozilla.org/show_bug.cgi?id=170193 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 170193; -var summary = 'adding property after middle-delete of function w duplicate formal args'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - -/* - * This sequence of steps used to cause the SpiderMonkey shell to hang - - */ -function f(a,a,b){} -f.c=42; -f.d=43; -delete f.c; // "middle delete" -f.e=44; - -status = inSection(1); -actual = f.c; -expect = undefined; -addThis(); - -status = inSection(2); -actual = f.d; -expect = 43; -addThis(); - -status = inSection(3); -actual = f.e; -expect = 44; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-172699.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-172699.js deleted file mode 100644 index 3a6be9f..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-172699.js +++ /dev/null @@ -1,94 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): rogerl@netscape.com, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 07 Oct 2002 -* SUMMARY: UTF-8 decoder should not accept overlong sequences -* See http://bugzilla.mozilla.org/show_bug.cgi?id=172699 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 172699; -var summary = 'UTF-8 decoder should not accept overlong sequences'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - -/* - * The patch for http://bugzilla.mozilla.org/show_bug.cgi?id=172699 - * defined this value to be the result of an overlong UTF-8 sequence - - */ -var INVALID_CHAR = 0xFFFD; - - -status = inSection(1); -actual = decodeURI("%C0%AF").charCodeAt(0); -expect = INVALID_CHAR; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-179524.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-179524.js deleted file mode 100644 index 31a7f30..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-179524.js +++ /dev/null @@ -1,363 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 11 Nov 2002 -* SUMMARY: JS shouldn't crash on extraneous args to str.match(), etc. -* See http://bugzilla.mozilla.org/show_bug.cgi?id=179524 -* -* Note that when testing str.replace(), we have to be careful if the first -* argument provided to str.replace() is not a regexp object. ECMA-262 says -* it is NOT converted to one, unlike the case for str.match(), str.search(). -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=83293#c21. This means -* we have to be careful how we test meta-characters in the first argument -* to str.replace(), if that argument is a string - -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 179524; -var summary = "Don't crash on extraneous arguments to str.match(), etc."; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -str = 'ABC abc'; -var re = /z/ig; - -status = inSection(1); -actual = str.match(re); -expect = null; -addThis(); - -status = inSection(2); -actual = str.match(re, 'i'); -expect = null; -addThis(); - -status = inSection(3); -actual = str.match(re, 'g', ''); -expect = null; -addThis(); - -status = inSection(4); -actual = str.match(re, 'z', new Object(), new Date()); -expect = null; -addThis(); - - -/* - * Now try the same thing with str.search() - */ -status = inSection(5); -actual = str.search(re); -expect = -1; -addThis(); - -status = inSection(6); -actual = str.search(re, 'i'); -expect = -1; -addThis(); - -status = inSection(7); -actual = str.search(re, 'g', ''); -expect = -1; -addThis(); - -status = inSection(8); -actual = str.search(re, 'z', new Object(), new Date()); -expect = -1; -addThis(); - - -/* - * Now try the same thing with str.replace() - */ -status = inSection(9); -actual = str.replace(re, 'Z'); -expect = str; -addThis(); - -status = inSection(10); -actual = str.replace(re, 'Z', 'i'); -expect = str; -addThis(); - -status = inSection(11); -actual = str.replace(re, 'Z', 'g', ''); -expect = str; -addThis(); - -status = inSection(12); -actual = str.replace(re, 'Z', 'z', new Object(), new Date()); -expect = str; -addThis(); - - - -/* - * Now test the case where str.match()'s first argument is not a regexp object. - * In that case, JS follows ECMA-262 Ed.3 by converting the 1st argument to a - * regexp object using the argument as a regexp pattern, but then extends ECMA - * by taking any optional 2nd argument to be a regexp flag string (e.g.'ig'). - * - * Reference: http://bugzilla.mozilla.org/show_bug.cgi?id=179524#c10 - */ -status = inSection(13); -actual = str.match('a').toString(); -expect = str.match(/a/).toString(); -addThis(); - -status = inSection(14); -actual = str.match('a', 'i').toString(); -expect = str.match(/a/i).toString(); -addThis(); - -status = inSection(15); -actual = str.match('a', 'ig').toString(); -expect = str.match(/a/ig).toString(); -addThis(); - -status = inSection(16); -actual = str.match('\\s', 'm').toString(); -expect = str.match(/\s/m).toString(); -addThis(); - - -/* - * Now try the previous three cases with extraneous parameters - */ -status = inSection(17); -actual = str.match('a', 'i', 'g').toString(); -expect = str.match(/a/i).toString(); -addThis(); - -status = inSection(18); -actual = str.match('a', 'ig', new Object()).toString(); -expect = str.match(/a/ig).toString(); -addThis(); - -status = inSection(19); -actual = str.match('\\s', 'm', 999).toString(); -expect = str.match(/\s/m).toString(); -addThis(); - - -/* - * Try an invalid second parameter (i.e. an invalid regexp flag) - */ -status = inSection(20); -try -{ - actual = str.match('a', 'z').toString(); - expect = 'SHOULD HAVE FALLEN INTO CATCH-BLOCK!'; - addThis(); -} -catch (e) -{ - actual = e instanceof SyntaxError; - expect = true; - addThis(); -} - - - -/* - * Now test str.search() where the first argument is not a regexp object. - * The same considerations as above apply - - * - * Reference: http://bugzilla.mozilla.org/show_bug.cgi?id=179524#c16 - */ -status = inSection(21); -actual = str.search('a'); -expect = str.search(/a/); -addThis(); - -status = inSection(22); -actual = str.search('a', 'i'); -expect = str.search(/a/i); -addThis(); - -status = inSection(23); -actual = str.search('a', 'ig'); -expect = str.search(/a/ig); -addThis(); - -status = inSection(24); -actual = str.search('\\s', 'm'); -expect = str.search(/\s/m); -addThis(); - - -/* - * Now try the previous three cases with extraneous parameters - */ -status = inSection(25); -actual = str.search('a', 'i', 'g'); -expect = str.search(/a/i); -addThis(); - -status = inSection(26); -actual = str.search('a', 'ig', new Object()); -expect = str.search(/a/ig); -addThis(); - -status = inSection(27); -actual = str.search('\\s', 'm', 999); -expect = str.search(/\s/m); -addThis(); - - -/* - * Try an invalid second parameter (i.e. an invalid regexp flag) - */ -status = inSection(28); -try -{ - actual = str.search('a', 'z'); - expect = 'SHOULD HAVE FALLEN INTO CATCH-BLOCK!'; - addThis(); -} -catch (e) -{ - actual = e instanceof SyntaxError; - expect = true; - addThis(); -} - - - -/* - * Now test str.replace() where the first argument is not a regexp object. - * The same considerations as above apply, EXCEPT for meta-characters. - * See introduction to testcase above. References: - * - * http://bugzilla.mozilla.org/show_bug.cgi?id=179524#c16 - * http://bugzilla.mozilla.org/show_bug.cgi?id=83293#c21 - */ -status = inSection(29); -actual = str.replace('a', 'Z'); -expect = str.replace(/a/, 'Z'); -addThis(); - -status = inSection(30); -actual = str.replace('a', 'Z', 'i'); -expect = str.replace(/a/i, 'Z'); -addThis(); - -status = inSection(31); -actual = str.replace('a', 'Z', 'ig'); -expect = str.replace(/a/ig, 'Z'); -addThis(); - -status = inSection(32); -actual = str.replace('\\s', 'Z', 'm'); //<--- NO!!! No meta-characters 1st arg! -actual = str.replace(' ', 'Z', 'm'); //<--- Have to do this instead -expect = str.replace(/\s/m, 'Z'); -addThis(); - - -/* - * Now try the previous three cases with extraneous parameters - */ -status = inSection(33); -actual = str.replace('a', 'Z', 'i', 'g'); -expect = str.replace(/a/i, 'Z'); -addThis(); - -status = inSection(34); -actual = str.replace('a', 'Z', 'ig', new Object()); -expect = str.replace(/a/ig, 'Z'); -addThis(); - -status = inSection(35); -actual = str.replace('\\s', 'Z', 'm', 999); //<--- NO meta-characters 1st arg! -actual = str.replace(' ', 'Z', 'm', 999); //<--- Have to do this instead -expect = str.replace(/\s/m, 'Z'); -addThis(); - - -/* - * Try an invalid third parameter (i.e. an invalid regexp flag) - */ -status = inSection(36); -try -{ - actual = str.replace('a', 'Z', 'z'); - expect = 'SHOULD HAVE FALLEN INTO CATCH-BLOCK!'; - addThis(); -} -catch (e) -{ - actual = e instanceof SyntaxError; - expect = true; - addThis(); -} - - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-185165.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-185165.js deleted file mode 100644 index 69e0e8d..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-185165.js +++ /dev/null @@ -1,96 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): igor@icesoft.no, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 13 Dec 2002 -* SUMMARY: Decompilation of "\\" should give "\\" -* See http://bugzilla.mozilla.org/show_bug.cgi?id=185165 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 185165; -var summary = 'Decompilation of "\\\\" should give "\\\\"'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -// Check that second decompilation of script gives the same string as first one -var f1 = function() { return "\\"; } -var s1 = f1.toString(); - -var f2; -eval("f2=" + s1); -var s2 = f2.toString(); - -status = inSection(1); -actual = s2; -expect = s1; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-191633.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-191633.js deleted file mode 100644 index 19f7906..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-191633.js +++ /dev/null @@ -1,102 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2003 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): igor@icesoft.no, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 03 February 2003 -* SUMMARY: Testing script with huge number of comments -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=191633 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 191633; -var summary = 'Testing script with huge number of comments'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -status = inSection(1); -actual = false; // initialize to failure -var s = repeat_str("//\n", 40000); // Build a string of 40000 lines of comments -eval(s + "actual = true;"); -expect = true; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function repeat_str(str, repeat_count) -{ - var arr = new Array(repeat_count); - - while (repeat_count != 0) - arr[--repeat_count] = str; - - return str.concat.apply(str, arr); -} - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-191668.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-191668.js deleted file mode 100644 index ff1498c..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-191668.js +++ /dev/null @@ -1,99 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2003 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): igor@icesoft.no, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 03 February 2003 -* SUMMARY: Testing script containing <!- at internal buffer boundary. -* JS parser must look for HTML comment-opener <!--, but mustn't disallow <!- -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=191668 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 191668; -var summary = 'Testing script containing <!- at internal buffer boundary'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - -var N = 512; -var j = 0; -var str = 'if (0<!-0) ++j;'; - -for (var i=0; i!=N; ++i) -{ - eval(str); - str = ' ' + str; -} - -status = inSection(1); -actual = j; -expect = N; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-192414.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-192414.js deleted file mode 100644 index 0b9e1ce..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-192414.js +++ /dev/null @@ -1,117 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2003 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): igor@icesoft.com, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 08 February 2003 -* SUMMARY: Parser recursion should check stack overflow -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=192414 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 192414; -var summary = 'Parser recursion should check stack overflow'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - -/* - * We will form an eval string to set the result-variable |actual|. - * To get a feel for this, suppose N were 3. Then the eval string is - * 'actual = (1&(1&(1&1)));' The expected value after eval() is 1. - */ -status = inSection(1); -var N = 10000; -var left = repeat_str('(1&', N); -var right = repeat_str(')', N); -var str = 'actual = '.concat(left, '1', right, ';'); -try -{ - eval(str); -} -catch (e) -{ - /* - * An exception during this eval is OK, as the runtime can throw one - * in response to too deep recursion. We haven't crashed; good! - */ - actual = 1; -} -expect = 1; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function repeat_str(str, repeat_count) -{ - var arr = new Array(--repeat_count); - while (repeat_count != 0) - arr[--repeat_count] = str; - return str.concat.apply(str, arr); -} - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-192465.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-192465.js deleted file mode 100644 index 188d225..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-192465.js +++ /dev/null @@ -1,152 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2003 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): igor@icesoft.com, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 10 February 2003 -* SUMMARY: Object.toSource() recursion should check stack overflow -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=192465 -* -* MODIFIED: 27 February 2003 -* -* We are adding an early return to this testcase, since it is causing -* big problems on Linux RedHat8! For a discussion of this issue, see -* http://bugzilla.mozilla.org/show_bug.cgi?id=174341#c24 and following. -* -* -* MODIFIED: 20 March 2003 -* -* Removed the early return and changed |N| below from 1000 to 90. -* Note |make_deep_nest(N)| returns an object graph of length N(N+1). -* So the graph has now been reduced from 1,001,000 to 8190. -* -* With this reduction, the bug still manifests on my WinNT and Linux -* boxes (crash due to stack overflow). So the testcase is again of use -* on those boxes. At the same time, Linux RedHat8 boxes can now run -* the test in a reasonable amount of time. -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 192465; -var summary = 'Object.toSource() recursion should check stack overflow'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -/* - * We're just testing that this script will compile and run. - * Set both |actual| and |expect| to a dummy value. - */ -status = inSection(1); -var N = 90; -try -{ - make_deep_nest(N); -} -catch (e) -{ - // An exception is OK, as the runtime can throw one in response to too deep - // recursion. We haven't crashed; good! Continue on to set the dummy values - -} -actual = 1; -expect = 1; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - -/* - * EXAMPLE: - * - * If the global variable |N| is 2, then for |level| == 0, 1, 2, the return - * value of this function will be toSource() of these objects, respectively: - * - * {next:{next:END}} - * {next:{next:{next:{next:END}}}} - * {next:{next:{next:{next:{next:{next:END}}}}}} - * - */ -function make_deep_nest(level) -{ - var head = {}; - var cursor = head; - - for (var i=0; i!=N; ++i) - { - cursor.next = {}; - cursor = cursor.next; - } - - cursor.toSource = function() - { - if (level != 0) - return make_deep_nest(level - 1); - return "END"; - } - - return head.toSource(); -} - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-193418.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-193418.js deleted file mode 100644 index 47110bb..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-193418.js +++ /dev/null @@ -1,99 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2003 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): igor@icesoft.no, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 17 February 2003 -* SUMMARY: Testing empty blocks -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=193418 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 193418; -var summary = 'Testing empty blocks'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -function f() -{ - while (0) - { - { } - } - actual = true; -} - - -status = inSection(1); -f(); // sets |actual| -expect = true; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-203402.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-203402.js deleted file mode 100644 index d668201..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-203402.js +++ /dev/null @@ -1,90 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2003 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): igor@fastmail.fm, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 28 April 2003 -* SUMMARY: Testing the ternary query operator -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=203402 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 203402; -var summary = 'Testing the ternary query operator'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -// This used to crash the Rhino optimized shell - -status = inSection(1); -actual = "" + (1==0) ? "" : ""; -expect = ""; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-203841.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-203841.js deleted file mode 100644 index af35bdb..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-203841.js +++ /dev/null @@ -1,159 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2003 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): briang@tonic.com, igor@fastmail.fm, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 29 April 2003 -* SUMMARY: Testing merged if-clauses -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=203841 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 203841; -var summary = 'Testing merged if-clauses'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -status = inSection(1); -var a = 0; -var b = 0; -var c = 0; -if (a == 5, b == 6) { c = 1; } -actual = c; -expect = 0; -addThis(); - -status = inSection(2); -a = 5; -b = 0; -c = 0; -if (a == 5, b == 6) { c = 1; } -actual = c; -expect = 0; -addThis(); - -status = inSection(3); -a = 5; -b = 6; -c = 0; -if (a == 5, b == 6) { c = 1; } -actual = c; -expect = 1; -addThis(); - -/* - * Now get tricky and use the = operator inside the if-clause - */ -status = inSection(4); -a = 0; -b = 6; -c = 0; -if (a = 5, b == 6) { c = 1; } -actual = c; -expect = 1; -addThis(); - -status = inSection(5); -c = 0; -if (1, 1 == 6) { c = 1; } -actual = c; -expect = 0; -addThis(); - - -/* - * Now some tests involving arrays - */ -var x=[]; - -status = inSection(6); // get element case -c = 0; -if (x[1==2]) { c = 1; } -actual = c; -expect = 0; -addThis(); - -status = inSection(7); // set element case -c = 0; -if (x[1==2]=1) { c = 1; } -actual = c; -expect = 1; -addThis(); - -status = inSection(8); // delete element case -c = 0; -if (delete x[1==2]) { c = 1; } -actual = c; -expect = 1; -addThis(); - - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-204210.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-204210.js deleted file mode 100644 index fae19b3..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-204210.js +++ /dev/null @@ -1,143 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2003 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): briang@tonic.com, igor@fastmail.fm, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 29 April 2003 -* SUMMARY: eval() is not a constructor, but don't crash on |new eval();| -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=204210 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 204210; -var summary = "eval() is not a constructor, but don't crash on |new eval();|"; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - -printBugNumber(bug); -printStatus(summary); - -/* - * Just testing that we don't crash on any of these constructs - - */ - - -/* - * global scope - - */ -try -{ - var x = new eval(); - new eval(); -} -catch(e) -{ -} - - -/* - * function scope - - */ -f(); -function f() -{ - try - { - var x = new eval(); - new eval(); - } - catch(e) - { - } -} - - -/* - * eval scope - - */ -var s = ''; -s += 'try'; -s += '{'; -s += ' var x = new eval();'; -s += ' new eval();'; -s += '}'; -s += 'catch(e)'; -s += '{'; -s += '}'; -eval(s); - - -/* - * some combinations of scope - - */ -s = ''; -s += 'function g()'; -s += '{'; -s += ' try'; -s += ' {'; -s += ' var x = new eval();'; -s += ' new eval();'; -s += ' }'; -s += ' catch(e)'; -s += ' {'; -s += ' }'; -s += '}'; -s += 'g();'; -eval(s); - - -function h() -{ - var s = ''; - s += 'function f()'; - s += '{'; - s += ' try'; - s += ' {'; - s += ' var x = new eval();'; - s += ' new eval();'; - s += ' }'; - s += ' catch(e)'; - s += ' {'; - s += ' }'; - s += '}'; - s += 'f();'; - eval(s); -} -h(); diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-210682.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-210682.js deleted file mode 100644 index 8b915e2..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-210682.js +++ /dev/null @@ -1,96 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2003 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): briang@tonic.com, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 02 July 2003 -* SUMMARY: testing line ending with |continue| and only terminated by a CR -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=210682 -* -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 210682; -var summary = 'testing line ending with |continue| and only terminated by CR'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -for (i=0; i<100; i++) -{ - if (i%2 == 0) continue - this.lasti = i; -} - -status = inSection(1); -actual = lasti; -expect = 99; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-216320.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-216320.js deleted file mode 100644 index e555754..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-216320.js +++ /dev/null @@ -1,1033 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2003 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): brendan@mozilla.org, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 09 September 2003 -* SUMMARY: Just seeing we don't crash on this code -* See http://bugzilla.mozilla.org/show_bug.cgi?id=216320 -* -*/ -//----------------------------------------------------------------------------- -var bug = 216320; -var summary = "Just seeing we don't crash on this code"; - -printBugNumber(bug); -printStatus(summary); - - -/* TESTCASE BEGINS HERE */ -status=0; -ism='NO'; -scf='N'; - -function vol(){ -if(navigator.appName!="Netscape"){ if(!window.navigator.onLine){ alert(pbc0430); return false; } } -return true; } - -function vnid(formfield){ -nid=formfield.value; -if(!nid.match(/^\s*$/)){ -nl=nid.split('/').length; -if(nl!=2&&nl!=3){ -alert(pbc0420); -formfield.focus(); -return false; -}}} - -function vnull(formfield){ -text=formfield.value; -if(text.match(/^\s*$/)){ -alert(pbc0425); -formfield.focus(); -return false; -} -return true; -} - -function vdt(formfield){ -date=formfield.value; -//MM/DD/YYYY -//YYYY/MM/DD -year=date.substring(0,4); -hy1=date.charAt(4); -month=date.substring(5,7); -hy2=date.charAt(7); -day=date.substring(8,10); -today=new Date(); -tdy=today.getDate(); -tmn=today.getMonth()+1; -if(today.getYear()<2000)tyr=today.getYear()+1900; -else tyr=today.getYear(); -if(date.match(/^\s*$/)) {return true; } - -if(hy1!="/"||hy2!="/"){ -alert(pbc0409); -formfield.focus(); -return false; -} -if(month>12||day>31||month<=0||day<=0||(isNaN(month)==true)||(isNaN(day)==true)||(isNaN(year)==true)){ -alert(pbc0409); -formfield.focus(); -return false; -} - -if(((month==1||month==3||month==5||month==7||month==8||month==10||month==12)&&day>31)||(year%4==0&&month==2&&day>29)||(year%4!=0&&month==2&&day>28)||((month==4||month==6||month==9||month==11)&&day>30)){ -alert(pbc0409); -formfield.focus(); -return false; -} -return true; -} - -function vkdt(formfield){ -date=formfield.value; -year=date.substring(0,4); -hy1=date.charAt(4); -month=date.substring(5,7); -hy2=date.charAt(7); -day=date.substring(8,10); -today=new Date(); -tdy=today.getDate(); -tmn=today.getMonth()+1; -if(today.getYear()<2000)tyr=today.getYear()+1900; -else tyr=today.getYear(); -if(date.match(/^\s*$/)){ -alert(pbc0425); -formfield.focus(); -return false; -} -if(hy1!="/"||hy2!="/"){ -alert(pbc0409); -formfield.focus(); -return false; -} - -if(month>12||day>31||month<=0||day<=0||(isNaN(month)==true)||(isNaN(day)==true)||(isNaN(year)==true)){ -alert(pbc0409); -formfield.focus(); -return false; -} - -if(((month==1||month==3||month==5||month==7||month==8||month==10||month==12)&&day>31)||(year%4==0&&month==2&&day>29)||(year%4!=0&&month==2&&day>28)||((month==4||month==6||month==9||month==11)&&day>30)){ -alert(pbc0409); -formfield.focus(); -return false; -} -return true; -} - -function ddif(month1,day1,year1,month2,day2,year2){ -start = new Date(); -start.setYear(year1); -start.setMonth(month1-1); -start.setDate(day1); -start.setMinutes(0); -start.setHours(0); -start.setSeconds(0); -end = new Date(); -end.setYear(year2); -end.setMonth(month2-1); -end.setDate(day2); -end.setMinutes(0); -end.setHours(0); -end.setSeconds(0); -current =(end.getTime() - start.getTime()); -days = Math.floor(current /(1000 * 60 * 60 * 24)); -return(days); -} - -function vsub(form,status,ism,action){ -if(!vol()){ return false; } -if(status<9||status==12){ -band=form.BAND.options[form.BAND.selectedIndex].value; -if(band=="00"){ -alert(pbc0425); -form.BAND.focus(); -return false; -} -} - -if((status>=0&&status<5)||(status==7)||(status>=5&&status<9&&ism=="YES")||(status==12&&ism=="YES")){ -if(!vnull(form.PT)) { return false; } -adt1=form.STD; -adt2=form.END; -stdt=adt1.value; -etdt=adt2.value; -syr=stdt.substring(0,4); -start_hy1=stdt.charAt(4); -smon=stdt.substring(5,7); -start_hy2=stdt.charAt(7); -sdy=stdt.substring(8,10); -eyr=etdt.substring(0,4); -end_hy1=etdt.charAt(4); -emon=etdt.substring(5,7); -end_hy2=etdt.charAt(7); -edy=etdt.substring(8,10); -today=new Date(); -date=today.getDate(); -month=today.getMonth()+1; -if(today.getYear()<2000)year=today.getYear()+1900; else year=today.getYear(); -nextYear=year+1; -if(!vnull(form.STD)){ return false; } -if(!vnull(form.END)){ return false; } -if(start_hy1!="/"||start_hy2!="/"){ -alert(pbc0409); -form.STD.focus(); -return false; -} -if(end_hy1!="/"||end_hy2!="/"){ -alert(pbc0409); -form.END.focus(); -return false; -} -if(smon>12||sdy>31||smon<=0||sdy<=0||(isNaN(smon)==true)||(isNaN(sdy)==true)||(isNaN(syr)==true)){ -alert(pbc0409); -form.STD.focus(); -return false; -} -if(emon>12||edy>31||emon<=0||edy<=0||(isNaN(emon)==true)||(isNaN(edy)==true)||(isNaN(eyr)==true)){ -alert(pbc0409); -form.END.focus(); -return false; -} -if(((smon==1||smon==3||smon==5||smon==7||smon==8||smon==10||smon==12)&&sdy>31)||(syr%4==0&&smon==2&&sdy>29)||(syr%4!=0&&smon==2&&sdy>28)||((smon==4||smon==6||smon==9||smon==11)&&sdy>30)){ -alert(pbc0409); -form.STD.focus(); -return false; -} -if(((emon==1||emon==3||emon==5||emon==7||emon==8||emon==10||emon==12)&&edy>31)||(eyr%4==0&&emon==2&&edy>29)||(eyr%4!=0&&emon==2&&edy>28)||((emon==4||emon==6||emon==9||emon==11)&&edy>30)){ -alert(pbc0409); -form.END.focus(); -return false; -} -if ((eyr==nextYear)&&(syr==year)) { -if ((emon>1)||(edy >31)) { -alert(pbc0401); -form.END.focus(); -return false; -} -} else { - -if ((syr!=eyr)){ -alert(pbc0406); -form.STD.focus(); -return false; -} -if(smon>emon||(smon==emon&&sdy>=edy)){ -alert(pbc0402); -form.STD.focus(); -return false; -} -if((eyr!=year)&&(eyr!=year-1)){ -alert(pbc0405); -form.END.focus(); -return false; -} -} -if(ism=='YES'&&(status==5||status==6||status==12)){ -if(ddif(month,date,year,emon,edy,eyr)>31){ -alert(pbc0421); -form.END.focus(); -return false; -} -} -if((status>2&&status<5)||(status==7)||((status>=5&&status<9||status==12)&&ism=="YES")){ -if(status!=5){ -if(!vdt(form.IRD1)){ -return false; -} -if(!vdt(form.IRD2)){ -return false; -} -if(!vdt(form.IRD3)){ -return false; -} -ird1=form.IRD1.value; -ird2=form.IRD2.value; -ird3=form.IRD3.value; -if(((ird1==ird2)&&(!ird1.match(/^\s*$/)))||((ird1==ird3)&&(!ird1.match(/^\s*$/)))){ -alert(pbc0417); -form.IRD1.focus(); -return false; -} -else if((ird2==ird3)&&(!ird2.match(/^\s*$/))){ -alert(pbc0417); -form.IRD2.focus(); -return false; -} -if(!vdt(form.FRD1)){ return false;} -} -if(status==5){ -if(!vdt(form.IRD1)){return false;} -if(!vdt(form.IRD2)){return false;} -if(!vdt(form.IRD3)){return false;} -ird1=form.IRD1.value; -ird2=form.IRD2.value; -ird3=form.IRD3.value; -if(((ird1==ird2)&&(!ird1.match(/^\s*$/)))||((ird1==ird3)&&(!ird1.match(/^\s*$/)))){ -alert(pbc0417); -form.IRD1.focus(); -return false; -} -else if((ird2==ird3)&&(!ird2.match(/^\s*$/))){ -alert(pbc0417); -form.IRD2.focus(); -return false; -} -if(!vkdt(form.FRD1)){ -return false; -} -} -} -} -if((status>=0&&status<2)||(status==3)||(status==7)||(status>=2&&status<9&&ism=="YES")||(status==12&&ism=="YES")){ -if(!vnull(form.WO)){ -return false; -} -if(!vnull(form.EO)){ -return false; -} -if(!vnull(form.TO)){ -return false; -} -} -if((status==2||status==4)||(status>=5&&status<9&&ism=="YES")||(status==12&&ism=="YES")){ -if(!vnull(form.WR)){return false;} -if(!vnull(form.ER)){return false;} -if(!vnull(form.TR)){return false;} -} -if((status==5||status==6||status==12)&&ism=="YES"){ -if(!vkdt(form.FRD1)){return false;} -frdt=form.FRD1.value; -fryr=frdt.substring(0,4); -frmn=frdt.substring(5,7); -frdy=frdt.substring(8,10); -if(fryr<syr||(fryr==syr&&frmn<smon)||(fryr==syr&&frmn==smon&&frdy<=sdy)){ -alert(pbc0410); -form.FRD1.focus(); -return false; -} -if((status==5||status==6||status==12)&&ism=="YES"){ -isnh=""; -for(i=0; i<form.INH.length; i++){ -if(form.INH[i].checked==true){ isnh=form.INH[i].value; } -} -if(isnh==""){ -alert(pbc0424); -form.INH[1].focus(); -return false; -} -if(isnh=="Y"){ -beh=""; -for(i=0; i<form.NHB.length; i++){ -if(form.NHB[i].checked==true){ beh=form.NHB[i].value; } -} -skl=""; -for(i=0; i<form.NHS.length; i++){ -if(form.NHS[i].checked==true){ skl=form.NHS[i].value; } -} -if(beh==""){ -alert(pbc0408); -form.NHB[0].focus(); -return false; -} -if(skl==""){ -alert(pbc0426); -form.NHS[0].focus(); -return false; -} -if((beh=="N"||skl=="N")&&status!=12){ -if(form.RCD[3].checked==false){ -if(confirm(pbc0455))srdb(form.RCD,"4"); -else { -form.NHB[0].focus(); -return false; -}}}}} -rating=""; -if(status!=12){ for(i=0; i<form.RCD.length; i++){ if(form.RCD[i].checked==true)rating=form.RCD[i].value; } } -else if(status==12){ rating="4"; } -if(rating==""){ -alert(pbc0428); -form.RCD[0].focus(); -return false; -} -if(rating=="4"){ -if(!vkdt(form.SID)){ return false; } -idt=form.SID.value; -iyr=idt.substring(0,4); -imon=idt.substring(5,7); -idy=idt.substring(8,10); -frdt=form.FRD1.value; -fryr=frdt.substring(0,4); -frmn=frdt.substring(5,7); -frdy=frdt.substring(8,10); -if(iyr<eyr||(iyr==eyr&&imon<emon)||(iyr==eyr&&imon==emon&&idy<=edy)){ -alert(pbc0415); -form.SID.focus(); -return false; -} -if(iyr<fryr||(iyr==fryr&&imon<frmn)||(iyr==fryr&&imon==frmn&&idy<=frdy)){ -alert(pbc0427); -form.SID.focus(); -return false; -} -if(ddif(emon,edy,eyr,imon,idy,iyr)<30){ -alert(pbc0416); -form.SID.focus(); -return false; -} -if(ddif(emon,edy,eyr,imon,idy,iyr)>90){ -if(!confirm(pbc0439+" "+pbc0442)){ -form.SID.focus(); -return false; -}}} else { -// MK/06-20-01 = If Rating Not equals to 4 blank out the sustained improve Date -form.SID.value=""; -} -if(!vnull(form.OAT)){ return false; } -if(form.MSRQ.checked==true){ -if(form.NEW_SIGN_MGR_ID.value.match(/^\s*$/)){ -alert(pbc0418); -form.NEW_SIGN_MGR_ID.focus(); -return false; -} -if(vnid(form.NEW_SIGN_MGR_ID)==false){ return false; } -} else { -if(!form.NEW_SIGN_MGR_ID.value.match(/^\s*$/)){ -alert(pbc0422); -form.NEW_SIGN_MGR_ID.focus(); -return false; -} -if ( (form.TOC.value=="YES") && (form.RSRQ.checked==true) ) { -alert(pbc0429); -form.NEW_SEC_LINE_REV_ID.focus(); -return false; -} -} -if(form.RSRQ.checked==true){ -if(form.NEW_SEC_LINE_REV_ID.value.match(/^\s*$/)){ -alert(pbc0418); -form.NEW_SEC_LINE_REV_ID.focus(); -return false; -} -if(vnid(form.NEW_SEC_LINE_REV_ID)==false){ return false; } -} else { -if(!form.NEW_SEC_LINE_REV_ID.value.match(/^\s*$/)) { -alert(pbc0423); -form.NEW_SEC_LINE_REV_ID.focus(); -return false; -} -if ( (form.TOC.value=="YES") && (form.MSRQ.checked==true) ) { -alert(pbc0431); -form.NEW_SEC_LINE_REV_ID.focus(); -return false; -}}} -if(status!=9){ -/**for returned objectives **/ -if(status==3){ -if(conf(pbc0466) == false) return false; -} - -if(ism=='NO'){ -if(status==0||status==1||status==3||status==7){ -if(conf(pbc0456) == false) return false; -} - -if(status==2||status==4||status==8){ -if(conf(pbc0457) == false) return false; -} -} else if(ism=='YES'){ -if(status==0||status==1||status==3||status==7){ -if(conf(pbc0458) == false)return false; -} -if(status==2||status==4||status==8){ -if(conf(pbc0459) == false)return false; -} -if(status==5||status==6){ -if(form.ESRQ.checked==false){ -if(conf(pbc0460) == false)return false; -} else { -if(conf(pbc0461) == false)return false; -}}}} -if(status==9){ -if(ism=='NO'){ -if(conf(pbc0462) == false)return false; -} else if(ism=='YES'){ -if(conf(pbc0463) == false)return false; -} else if(ism=='REVIEWER'){ -if(conf(pbc0464) == false)return false; -}} -sact(action); -if(status>=9&&status<=11){ snul(); } -form.submit(); -return true; -} - -function vsav(form,status,ism,action) { -if(!vol()){ return false; } -adt1=form.STD; -adt2=form.END; -stdt=adt1.value; -etdt=adt2.value; -syr=stdt.substring(0,4); -start_hy1=stdt.charAt(4); -smon=stdt.substring(5,7); -start_hy2=stdt.charAt(7); -sdy=stdt.substring(8,10); -eyr=etdt.substring(0,4); -end_hy1=etdt.charAt(4); -emon=etdt.substring(5,7); -end_hy2=etdt.charAt(7); -edy=etdt.substring(8,10); -today=new Date(); -date=today.getDate(); -month=today.getMonth()+1; -if(today.getYear()<2000) year=today.getYear()+1900; else year=today.getYear(); -nextYear=year+1; -if(!vnull(form.STD)) return false; -if(!vnull(form.END)) return false; -if(start_hy1!="/"||start_hy2!="/"){ -alert(pbc0409); -form.STD.focus(); -return false; -} -if(end_hy1!="/"||end_hy2!="/"){ -alert(pbc0409); -form.END.focus(); -return false; -} -if(smon>12||sdy>31||smon<=0||sdy<=0||(isNaN(smon)==true)||(isNaN(sdy)==true)||(isNaN(syr)==true)){ -alert(pbc0409); -form.STD.focus(); -return false; -} -if(emon>12||edy>31||emon<=0||edy<=0||(isNaN(emon)==true)||(isNaN(edy)==true)||(isNaN(eyr)==true)){ -alert(pbc0409); -form.END.focus(); -return false; -} -if(((smon==1||smon==3||smon==5||smon==7||smon==8||smon==10||smon==12)&&sdy>31)||(syr%4==0&&smon==2&&sdy>29)||(syr%4!=0&&smon==2&&sdy>28)||((smon==4||smon==6||smon==9||smon==11)&&sdy>30)){ -alert(pbc0409); -form.STD.focus(); -return false; -} -if(((emon==1||emon==3||emon==5||emon==7||emon==8||emon==10||emon==12)&&edy>31)||(eyr%4==0&&emon==2&&edy>29)||(eyr%4!=0&&emon==2&&edy>28)||((emon==4||emon==6||emon==9||emon==11)&&edy>30)){ -alert(pbc0409); -form.END.focus(); -return false; -} -if ((eyr==nextYear)&&(syr==year)) { -if ((emon>1)||(edy >31)) { -alert(pbc0401); -form.END.focus(); -return false; -} -} else { -if ((syr<year-1) || (syr>year)) { -alert(pbc0407); -form.STD.focus(); -return false; -} -if((eyr!=year)&&(eyr!=year-1)){ -alert(pbc0405); -form.END.focus(); -return false; -} -if(smon>emon||(smon==emon&&sdy>=edy)){ -alert(pbc0403); -form.STD.focus(); -return false; -} -} -if((status>2&&status<5)||(status>=5&&status<9&&ism=="YES")||(status==12&&ism=="YES")){ -if(!vdt(form.IRD1)){return false;} -if(!vdt(form.IRD2)){return false;} -if(!vdt(form.IRD3)){ return false; } -ird1=form.IRD1.value; -ird2=form.IRD2.value; -ird3=form.IRD3.value; -if(((ird1==ird2)&&(!ird1.match(/^\s*$/)))||((ird1==ird3)&&(!ird1.match(/^\s*$/)))){ -alert(pbc0417); -form.IRD1.focus(); -return false; -} -else if((ird2==ird3)&&(!ird2.match(/^\s*$/))){ -alert(pbc0417); -form.IRD2.focus(); -return false; -} -if(!vdt(form.FRD1)){return false;} -if(ism=="YES"){ -if(!vdt(form.FRD1)){return false;} -} -} -if((status==5||status==6)&&ism=="YES"){ -rating=""; -for(i=0;i<form.RCD.length;i++){ -if(form.RCD[i].checked==true)rating=form.RCD[i].value; -} -isnh=""; -for(i=0; i<form.INH.length; i++){ -if(form.INH[i].checked==true){ -isnh=form.INH[i].value; -} -} -if(isnh=="Y"){ -beh=""; -for(i=0; i<form.NHB.length;i++){ -if(form.NHB[i].checked==true){ -beh=form.NHB[i].value; -} -} -skl=""; -for(i=0; i<form.NHS.length;i++){ -if(form.NHS[i].checked==true){ -skl=form.NHS[i].value; -} -} -if((beh=="N"||skl=="N")&&rating!=""){ -if(form.RCD[3].checked==false){ -if(confirm(pbc0455))srdb(form.RCD,"4"); -else { -form.NHB[0].focus(); -return false; -} -} -} -if(!vdt(form.SID)){ return false;} -} -} -if((status==2||status==4 || status==8 || status==5 || status==6 || status==10)&&ism=='YES') -{ -if(!confirm(pbc0436)){ return false;} -if(form.OBJECTIVE_CHANGED.value=='Y') { - if(confirm(pbc0452+" "+pbc0453+" "+pbc0454)){form.MRQ.value=4; } else { form.MRQ.value=0; } -}else if (( status==5 || status==6 || status==10) && (form.RESULTS_CHANGED.value=='Y')) { - if(confirm(pbc0470+" "+pbc0453+" "+pbc0454)){form.MRQ.value=8; } else { form.MRQ.value=0; } -} -} -sact(action); -if(status>=9&&status<=11){ -snul(); -} -form.submit(); -return true; -} -function cft(formfield){ -nid=formfield.value; -if(nid.match(/^\s*$/)){ -alert(pbc0419); -formfield.focus(); -return false; -} -nl=nid.split('/').length; -if(nl!=2&&nl!=3){ -alert(pbc0420); -formfield.focus(); -return false; -} -return true; -} -function dcf(form,pbcId,cnum,sequence,status,atyp,ver){ -if(!vol()){} -dflg=confirm("\n\n<====================== " + pbc0468 + " ======================>\n\n" + pbc0469 + "\n\n<==================================================================>"); -if(dflg==true) { -form.ATYP.value=atyp; -form.PID.value=pbcId; -form.CNUM.value=cnum; -form.SEQ.value=sequence; -form.ST.value=status; -form.VER.value=ver; -form.submit(); -} - -} - - - -function lop(){ -//if(confirm(pbc0447+" "+pbc0451)){ -sck("timer",""); -sck("PBC_AUTH4",""); -sck("IBM004",""); -this.close(); -//} - -} - -function csrlop(){ - top.location="logoff.jsp"; -} -function lof(){ -csr=gck("IBM004"); -if(csr==null){ top.location="logoff.jsp"; } -else if(csr.charAt(0)==3){ window.location="csrlogoff.jsp"; } -else{ top.location="logoff.jsp"; } -} - -function goToHome(){ - top.location="pbcmain.jsp"; - } - -function docsr(){ -sck("IBM004","1^NONE^1"); -window.location="pbcmain.jsp" -} - -function ccd(){ -if(confirm(pbc0434)){ -if(navigator.appName!="Netscape"){ -if(!window.navigator.onLine){ -window.close(); -} -else { -window.location='pbcmain.jsp'; -} -} -else { -window.location='pbcmain.jsp'; -} -} -} - -function crt(form,action){ -if(!vol()){return false;} -band=form.BAND.options[form.BAND.selectedIndex].value; -if(band=="00"){ -alert(pbc0425); -form.BAND.focus(); -return false; -} -if(!confirm(pbc0450)){return false;} -sact(action); -form.submit(); -return true; -} -function cusat(form,action){ -if(!vol()){return false;} -sact(action); -form.action="unsatreq.jsp"; -form.submit(); -return true; -} -function cfrt(form,ism,action){ -if(!vol()){return false;} -sact(action); -if(ism=="NO"){ -if(confirm(pbc0449+" "+pbc0432)){ -snul(); -form.submit(); -return true; -} -} -if(ism=="REVIEWER"){ -if(confirm(pbc0449+" "+pbc0448)){ -snul(); -form.submit(); -return true; -} -} -if(ism=="YES"){ -if(confirm(pbc0440)){ -snul(); -form.submit(); -return true; -} -} -} - -function cces(form){ -if(form.ESRQ.checked==true){ -if(!confirm(pbc0435+" "+pbc0443))form.ESRQ.checked=false; -else {form.ESRQ.checked=true;} -} -} - -function ccms(form){ -if(form.MSRQ.checked==true){ -if(!confirm(pbc0441+" "+pbc0438+" "+pbc0444+" "+pbc0445))form.MSRQ.checked=false; -else { -form.MSRQ.checked=true; -} -} -} - -function ccrs(form){ -if(form.RSRQ.checked==true){ -if(!confirm(pbc0441+" "+pbc0438+" "+pbc0444+" "+pbc0446))form.RSRQ.checked=false; -else { -form.RSRQ.checked=true; -} -} -} - -function seo(){ -alert(pbc0412+" "+pbc0413+" "+pbc0414); -} -function cows(form,action){ -if(!vol()){ -return false; -} -if(confirm(pbc0437)){ -sact(action); -form.submit(); -return true; -} -} - -function srdb(rdb,value) { -for(i=0; i<rdb.length;i++) { -if(rdb[i].value == value) { -rdb[i].checked = true; -return true; -} -} -return true; -} - -function slop(lbx,value) { -if(lbx.options.length > 0) { -for(i=0;i < lbx.options.length;i++) { -if(lbx.options[i].value == value) { -lbx.options[i].selected = true; -return true; -} -} -} -return true; -} - -function ourl(URL,WIN_NAME){ -if(!vol()){ return; } -var emp_win; -if(document.layers) { -child_screenX=window.screenX+50; -child_width=window.innerWidth-75; -child_height=window.innerHeight-75; -emp_win=window.open(URL,WIN_NAME,"screenX="+ child_screenX +",screenY=75,height="+ child_height +",width="+ child_width +",resizable,status,scrollbars"); -} else{ -child_width = screen.width-160; -child_height = screen.height-200; -emp_win=window.open(URL,WIN_NAME,"height="+ child_height +",width="+ child_width +",resizable=yes,status=no,scrollbars=yes"); -//emp_win.moveTo(110,0); -} -//if (URL.indexOf("pbcsitehelp")==-1) { alert("Opened new window."); } -emp_win.focus(); -} - -function dnh(form){ -form.NHS[0].checked=false; -form.NHS[1].checked=false; -form.NHB[0].checked=false; -form.NHB[1].checked=false; -} - -function cnh(form){ -isnh=""; -for(i=0; i<form.INH.length;i++) -{ -if(form.INH[i].checked==true){isnh=form.INH[i].value; } -} -if(isnh != 'Y'){ -form.NHS[0].checked=false; -form.NHS[1].checked=false; -form.NHB[0].checked=false; -form.NHB[1].checked=false; -return false; -} -else -{ - //if ((form.NHS[0].checked || form.NHS[1].checked) && (form.NHB[0].checked || form.NHB[1].checked)) - if (form.NHS[1].checked || form.NHB[1].checked ) - { - form.RCD[3].checked=true; - return true; - } - return false; -} -} - -function err(errMsg) { -alert(getEncodedText(errMsg)); -} - -function getEncodedText(txtValue) { -if (txtValue.match(/^\s*$/)) return txtValue; -var txtValue1 = txtValue.replace((/"/g),'"'); -var txtValue2 = txtValue1.replace((/>/g),">"); -var txtValue3 = txtValue2.replace((/</g),"<"); -return txtValue3; -} - -function encodeText(txtValue) { -if (txtValue.match(/^\s*$/)) return txtValue; -var txtValue0 = txtValue.replace((/\r\n/g),'&lf;'); -var txtValue1 = txtValue0.replace((/"/g),'"'); -var txtValue2 = txtValue1.replace((/>/g),'>'); -var txtValue3 = txtValue2.replace((/</g),'<'); -return txtValue3; -} - - -function gck(name){ -result = null; -mck = " " + document.cookie + ";"; -srcnm = " " + name + "="; -scok = mck.indexOf(srcnm); -if(scok != -1){ -scok += srcnm.length; -eofck = mck.indexOf(";",scok); -result = unescape(mck.substring(scok,eofck)); -} -return(result); -} - -function sck(name,value){ -ckpth="path=/;domain=.ibm.com"; -document.cookie = name + "=" + value + ";" + ckpth; -} - - -function testForCookie(){ - sck("PBCTest","test"); - if(gck("PBCTest") == "test") { - // alert("Cookie test is good"); - return true; - } - else { - // alert("Cookie test is bad"); - return false; - } - } - - -function prn(form,l_status,l_ism,l_scf,l_locale){ -status = l_status; -ism = l_ism; -scf = l_scf; -pwin=window.open("printvw.jsp?nls="+l_locale + "ISNEWWIN=TRUE","pwin","resizable=yes,width=560,height=400,scrollbars=yes,toolbar,screenX=5,screenY=5"); -} - -function gsno(form){ -unum=form.UNUM.value; -eofsn=unum.length-3; -cnum=unum.substring(0,eofsn); -return(cnum); -} - -function conf(msg){ -return top.confirm(msg); -} - -function sact(action){ -document.PBC_FORM.ATYP.value=action; -} - -function snul(){ -document.PBC_FORM.WO.value=""; -document.PBC_FORM.WR.value=""; -document.PBC_FORM.EO.value=""; -document.PBC_FORM.ER.value=""; -document.PBC_FORM.TO.value=""; -document.PBC_FORM.TR.value=""; -document.PBC_FORM.OAT.value=""; -} - -function gcnum(){ -unum=document.PBC_FORM.UNUM.value; -eofsn=unum.length-3; -cnum=unum.substring(0,eofsn); -return(cnum); -} -function checkForEditPage() { - if(true==checkForm()){ - if(!confirm(pbc0465)) return false; - } - return true; -} - -function checkForm() { - var frms=document.forms["PBC_FORM"]; - if (navigator.appName=="Netscape") { - if (frms==undefined) return false; - if (frms.IS_EDIT==undefined) return false; - } else { - if(frms==null) return false; - if (frms.IS_EDIT==null) return false; - } - return true; -} - - - -function removeAnchor(link){ -link2 = link; -indx = link.indexOf('#'); -while (indx!=-1) -{ -link2 = link.substring(0,indx); -indx=link2.indexOf("#"); - - -} -return link2; -} - -function gotoHREF(link){ -if(document.layers){ -var documentURL = removeAnchor(document.URL); -location.href=documentURL+link; -return true; - -}else{ -var documentURL = removeAnchor(document.URL); -document.URL=documentURL+link; - - -} - - -} - -function init_resize_event(){ -} - -function putVal2ck() -{ -} - -function setValuesFromCookie() -{ -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-31255.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-31255.js deleted file mode 100644 index e978553..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-31255.js +++ /dev/null @@ -1,108 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): igor@icesoft.no, pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 09 November 2002 -* SUMMARY: JS should treat --> as a single-line comment indicator. -* Whitespace may occur before the --> on the same line. -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=31255 -* and http://bugzilla.mozilla.org/show_bug.cgi?id=179366 (Rhino version) -* -* Note: <!--, --> are the HTML multi-line comment opener, closer. -* JS already accepted <!-- as a single-line comment indicator. -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 31255; -var summary = 'JS should treat --> as a single-line comment indicator'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -<!-- HTML comment start is already a single-line JS comment indicator -var x = 1; <!-- until end-of-line - -status = inSection(1); -actual = (x == 1); -expect = true; -addThis(); - ---> HTML comment end is JS comments until end-of-line - --> but only if it follows a possible whitespace after line start - --> so in the following --> should not be treated as comments -if (x-->0) - x = 2; - -status = inSection(2); -actual = (x == 2); -expect = true; -addThis(); - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-39309.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-39309.js deleted file mode 100644 index 9c51ce8..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-39309.js +++ /dev/null @@ -1,105 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2003 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 30 Sep 2003 -* SUMMARY: Testing concatenation of string + number -* See http://bugzilla.mozilla.org/show_bug.cgi?id=39309 -* -*/ -//----------------------------------------------------------------------------- -var UBound = 0; -var bug = 39309; -var summary = 'Testing concatenation of string + number'; -var status = ''; -var statusitems = []; -var actual = ''; -var actualvalues = []; -var expect= ''; -var expectedvalues = []; - - -function f(textProp, len) -{ - var i = 0; - while (++i <= len) - { - var name = textProp + i; - actual = name; - } -} - - -status = inSection(1); -f('text', 1); // sets |actual| -expect = 'text1'; -addThis(); - -status = inSection(2); -f('text', 100); // sets |actual| -expect = 'text100'; -addThis(); - - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc('test'); - printBugNumber(bug); - printStatus(summary); - - for (var i=0; i<UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], statusitems[i]); - } - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-44009.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-44009.js deleted file mode 100644 index 51dde84..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-44009.js +++ /dev/null @@ -1,63 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS -* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or -* implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. All -* Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* Date: 26 Feb 2001 -* See http://bugzilla.mozilla.org/show_bug.cgi?id=44009 -* -* SUMMARY: Testing that we don't crash on obj.toSource() -*/ -//------------------------------------------------------------------------------------------------- -var bug = 44009; -var summary = "Testing that we don't crash on obj.toSource()"; -var obj1 = {}; -var sToSource = ''; -var self = this; //capture a reference to the global JS object - - - - -//------------------------------------------------------------------------------------------------- -test(); -//------------------------------------------------------------------------------------------------- - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - var obj2 = {}; - - // test various objects and scopes - - testThis(self); - testThis(this); - testThis(obj1); - testThis(obj2); - - exitFunc ('test'); -} - - -// We're just testing that we don't crash by doing this - -function testThis(obj) -{ - sToSource = obj.toSource(); - obj.prop = obj; - sToSource = obj.toSource(); -}
\ No newline at end of file diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-57043.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-57043.js deleted file mode 100644 index 39136a9..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-57043.js +++ /dev/null @@ -1,88 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS -* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or -* implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. All -* Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* Date: 03 December 2000 -* -* -* SUMMARY: This test arose from Bugzilla bug 57043: -* "Negative integers as object properties: strange behavior!" -* -* We check that object properties may be indexed by signed -* numeric literals, as in assignments like obj[-1] = 'Hello' -* -* NOTE: it should not matter whether we provide the literal with -* quotes around it or not; e.g. these should be equivalent: -* -* obj[-1] = 'Hello' -* obj['-1'] = 'Hello' -*/ -//------------------------------------------------------------------------------------------------- -var bug = 57043; -var summary = 'Indexing object properties by signed numerical literals -' -var statprefix = 'Adding a property to test object with an index of '; -var statsuffix = ', testing it now -'; -var propprefix = 'This is property '; -var obj = new Object(); -var status = ''; var actual = ''; var expect = ''; var value = ''; - - -// various indices to try - -var index = Array(-5000, -507, -3, -2, -1, 0, 1, 2, 3); - - -//------------------------------------------------------------------------------------------------- -test(); -//------------------------------------------------------------------------------------------------- - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - for (j in index) {testProperty(index[j]);} - - exitFunc ('test'); -} - - -function testProperty(i) -{ - status = getStatus(i); - - // try to assign a property using the given index - - obj[i] = value = (propprefix + i); - - // try to read the property back via the index (as number) - - expect = value; - actual = obj[i]; - reportCompare(expect, actual, status); - - // try to read the property back via the index as string - - expect = value; - actual = obj[String(i)]; - reportCompare(expect, actual, status); -} - - -function getStatus(i) -{ - return (statprefix + i + statsuffix); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-68498-001.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-68498-001.js deleted file mode 100644 index 3fb1764..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-68498-001.js +++ /dev/null @@ -1,56 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS -* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or -* implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. All -* Rights Reserved. -* -* Contributor(s): brendan@mozilla.org, pschwartau@netscape.com -* Date: 15 Feb 2001 -* -* SUMMARY: var self = global JS object, outside any eval, is DontDelete -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=68498 -* See http://bugzilla.mozilla.org/showattachment.cgi?attach_id=25251 -* -* Brendan: -* -* "Demonstrate that variable statement outside any eval creates a -* DontDelete property of the global object" -*/ -//------------------------------------------------------------------------------------------------- -var bug = 68498; -var summary ='Testing that variable statement outside any eval creates' + - ' a DontDelete property of the global object'; - - -// To be pedantic, use a variable named 'self' to capture the global object - -var self = this; -var actual = (delete self); -var expect =false; - - -//------------------------------------------------------------------------------------------------- -test(); -//------------------------------------------------------------------------------------------------- - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - reportCompare(expect, actual, summary); - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-68498-002.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-68498-002.js deleted file mode 100644 index 5f30b0b..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-68498-002.js +++ /dev/null @@ -1,80 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS -* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or -* implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. All -* Rights Reserved. -* -* Contributor(s): brendan@mozilla.org, pschwartau@netscape.com -* Date: 15 Feb 2001 -* -* SUMMARY: create a Deletable local variable using eval -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=68498 -* See http://bugzilla.mozilla.org/showattachment.cgi?attach_id=25251 -* -* Brendan: -* -* "Demonstrate the creation of a Deletable local variable using eval" -*/ -//------------------------------------------------------------------------------------------------- -var bug = 68498; -var summary = 'Creating a Deletable local variable using eval'; -var statprefix = '; currently at expect['; -var statsuffix = '] within test -'; -var actual = [ ]; -var expect = [ ]; - - -// Capture a reference to the global object - -var self = this; - -// This function is the heart of the test - -function f(s) {eval(s); actual[0]=y; return delete y;} - - -// Set the actual-results array. The next line will set actual[0] and actual[1] in one shot -actual[1] = f('var y = 42'); -actual[2] = 'y' in self && y; - -// Set the expected-results array - -expect[0] = 42; -expect[1] = true; -expect[2] = false; - - -//------------------------------------------------------------------------------------------------- -test(); -//------------------------------------------------------------------------------------------------- - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - for (var i in expect) - { - reportCompare(expect[i], actual[i], getStatus(i)); - } - - exitFunc ('test'); -} - - -function getStatus(i) -{ - return (summary + statprefix + i + statsuffix); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-68498-003.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-68498-003.js deleted file mode 100644 index 712207b..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-68498-003.js +++ /dev/null @@ -1,84 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS -* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or -* implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. All -* Rights Reserved. -* -* Contributor(s): brendan@mozilla.org, pschwartau@netscape.com -* Date: 15 Feb 2001 -* -* SUMMARY: calling obj.eval(str) -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=68498 -* See http://bugzilla.mozilla.org/showattachment.cgi?attach_id=25251 -* -* Brendan: -* -* "Backward compatibility: support calling obj.eval(str), which evaluates -* str using obj as the scope chain and variable object." -*/ -//------------------------------------------------------------------------------------------------- -var bug = 68498; -var summary = 'Testing calling obj.eval(str)'; -var statprefix = '; currently at expect['; -var statsuffix = '] within test -'; -var actual = [ ]; -var expect = [ ]; - - -// Capture a reference to the global object - -var self = this; - -// This function is the heart of the test - -function f(s) {self.eval(s); return y;} - - -// Set the actual-results array - -actual[0] = f('var y = 43'); -actual[1] = 'y' in self && y; -actual[2] = delete y; -actual[3] = 'y' in self; - -// Set the expected-results array - -expect[0] = 43; -expect[1] = 43; -expect[2] = true; -expect[3] = false; - - -//------------------------------------------------------------------------------------------------- -test(); -//------------------------------------------------------------------------------------------------- - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - for (var i in expect) - { - reportCompare(expect[i], actual[i], getStatus(i)); - } - - exitFunc ('test'); -} - - -function getStatus(i) -{ - return (summary + statprefix + i + statsuffix); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-68498-004.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-68498-004.js deleted file mode 100644 index 6e60d4d..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-68498-004.js +++ /dev/null @@ -1,112 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS -* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or -* implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. All -* Rights Reserved. -* -* Contributor(s): brendan@mozilla.org, pschwartau@netscape.com -* Date: 15 Feb 2001 -* -* SUMMARY: self.eval(str) inside a function -* NOTE: 'self' is just a variable used to capture the global JS object. -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=68498 -* See http://bugzilla.mozilla.org/showattachment.cgi?attach_id=25251 -* See http://bugzilla.mozilla.org/show_bug.cgi?id=69441 (!!!) -* -* Brendan: -* -* "ECMA-262 Edition 3, 10.1.3 requires a FunctionDeclaration parsed as part -* of a Program by eval to create a property of eval's caller's variable object. -* This test evals in the body of a with statement, whose scope chain *is* -* relevant to the effect of parsing the FunctionDeclaration." -*/ -//------------------------------------------------------------------------------------------------- -var bug = 68498; -var summary = 'Testing self.eval(str) inside a function'; -var statprefix = '; currently at expect['; -var statsuffix = '] within test -'; -var sToEval=''; -var actual=[ ]; -var expect=[ ]; - - -// Capture a reference to the global object - -var self = this; - -// You shouldn't see this global variable's value in any printout - -var x = 'outer'; - -// This function is the heart of the test - -function f(o,s,x) {with(o) eval(s); return z;}; - -// Run-time statements to pass to the eval inside f -sToEval += 'actual[0] = typeof g;' -sToEval += 'function g(){actual[1]=(typeof w == "undefined" || w); return x};' -sToEval += 'actual[2] = w;' -sToEval += 'actual[3] = typeof g;' -sToEval += 'var z=g();' - -// Set the actual-results array. The next line will set actual[0] - actual[4] in one shot -actual[4] = f({w:44}, sToEval, 'inner'); -actual[5] = 'z' in self && z; - - -/* Set the expected-results array. -* -* Sample issue: why do we set expect[4] = 'inner'? Look at actual[4]... -* 1. The return value of f equals z, which is not defined at compile-time -* 2. At run-time (via with(o) eval(s) inside f), z is defined as the return value of g -* 3. At run-time (via with(o) eval(s) inside f), g is defined to return x -* 4. In the scope of with(o), x is undefined -* 5. Farther up the scope chain, x can be located as an argument of f -* 6. The value of this argument at run-time is 'inner' -* 7. Even farther up the scope chain, the name x can be found as a global variable -* 8. The value of this global variable is 'outer', but we should NOT have gone -* this far up the scope chain to find x...therefore we expect 'inner' -*/ -expect[0] = 'function'; -expect[1] = 44; -expect[2] = 44; -expect[3] = 'function'; -expect[4] = 'inner'; -expect[5] = false; - - - -//------------------------------------------------------------------------------------------------ -test(); -//------------------------------------------------------------------------------------------------- - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - for (var i in expect) - { - reportCompare(expect[i], actual[i], getStatus(i)); - } - - exitFunc ('test'); -} - - -function getStatus(i) -{ - return (summary + statprefix + i + statsuffix); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-69607.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-69607.js deleted file mode 100644 index be0ace1..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-69607.js +++ /dev/null @@ -1,53 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS -* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or -* implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. All -* Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* Date: 21 Feb 2001 -* See http://bugzilla.mozilla.org/show_bug.cgi?id=69607 -* -* SUMMARY: testing that we don't crash on trivial JavaScript -* -*/ -//------------------------------------------------------------------------------------------------- -var bug = 69607; -var summary = "Testing that we don't crash on trivial JavaScript"; -var var1; -var var2; -var var3; - -printBugNumber (bug); -printStatus (summary); - -/* - * The crash this bug reported was caused by precisely these lines - * placed in top-level code (i.e. not wrapped inside a function) - -*/ -if(false) -{ - var1 = 0; -} -else -{ - var2 = 0; -} - -if(false) -{ - var3 = 0; -} - diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-71107.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-71107.js deleted file mode 100644 index b6427bf..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-71107.js +++ /dev/null @@ -1,60 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS -* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or -* implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. All -* Rights Reserved. -* -* Contributor(s): shaver@mozilla.org -* Date: 06 Mar 2001 -* -* SUMMARY: Propagate heavyweightness back up the function-nesting -* chain. See http://bugzilla.mozilla.org/show_bug.cgi?id=71107 -* -*/ -//------------------------------------------------------------------------------------------------- -var bug = 71107; -var summary = 'Propagate heavyweightness back up the function-nesting chain...'; - - -//------------------------------------------------------------------------------------------------- -test(); -//------------------------------------------------------------------------------------------------- - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - var actual = outer()()(); //call the return of calling the return of outer() - var expect = 5; - reportCompare(expect, actual, summary); - - exitFunc ('test'); -} - - -function outer () { - var outer_var = 5; - - function inner() { - function way_inner() { - return outer_var; - } - return way_inner; - } - return inner; -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-76054.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-76054.js deleted file mode 100644 index 3d0533d..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-76054.js +++ /dev/null @@ -1,139 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS -* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or -* implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. All -* Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* Date: 16 May 2001 -* -* SUMMARY: Regression test for bug 76054 -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=76054 -* See http://bugzilla.mozilla.org/show_bug.cgi?id=78706 -* All String HTML methods should be LOWER case - -*/ -//------------------------------------------------------------------------------------------------- -var UBound = 0; -var bug = 76054; -var summary = 'Testing that String HTML methods produce all lower-case'; -var statprefix = 'Currently testing String.'; -var status = ''; -var statusitems = [ ]; -var actual = ''; -var actualvalues = [ ]; -var expect= ''; -var expectedvalues = [ ]; -var s = 'xyz'; - -status = 'anchor()'; -actual = s.anchor(); -expect = actual.toLowerCase(); -addThis(); - -status = 'big()'; -actual = s.big(); -expect = actual.toLowerCase(); -addThis(); - -status = 'blink()'; -actual = s.blink(); -expect = actual.toLowerCase(); -addThis(); - -status = 'bold()'; -actual = s.bold(); -expect = actual.toLowerCase(); -addThis(); - -status = 'italics()'; -actual = s.italics(); -expect = actual.toLowerCase(); -addThis(); - -status = 'fixed()'; -actual = s.fixed(); -expect = actual.toLowerCase(); -addThis(); - -status = 'fontcolor()'; -actual = s.fontcolor(); -expect = actual.toLowerCase(); -addThis(); - -status = 'fontsize()'; -actual = s.fontsize(); -expect = actual.toLowerCase(); -addThis(); - -status = 'link()'; -actual = s.link(); -expect = actual.toLowerCase(); -addThis(); - -status = 'small()'; -actual = s.small(); -expect = actual.toLowerCase(); -addThis(); - -status = 'strike()'; -actual = s.strike(); -expect = actual.toLowerCase(); -addThis(); - -status = 'sub()'; -actual = s.sub(); -expect = actual.toLowerCase(); -addThis(); - -status = 'sup()'; -actual = s.sup(); -expect = actual.toLowerCase(); -addThis(); - - -//------------------------------------------------------------------------------------------------- -test(); -//------------------------------------------------------------------------------------------------- - - -function addThis() -{ - statusitems[UBound] = status; - actualvalues[UBound] = actual; - expectedvalues[UBound] = expect; - UBound++; -} - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - for (var i = 0; i < UBound; i++) - { - reportCompare(expectedvalues[i], actualvalues[i], getStatus(i)); - } - - exitFunc ('test'); -} - - -function getStatus(i) -{ - return statprefix + statusitems[i]; -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-80981.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-80981.js deleted file mode 100644 index 75dc052..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-80981.js +++ /dev/null @@ -1,3137 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2001 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): khanson@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 19 Nov 2001 -* SUMMARY: Regression test for bug 80981. -* See http://bugzilla.mozilla.org/show_bug.cgi?id=80981 -* "Need extended jump bytecode to avoid "script too large" errors, etc." -* -* Before this bug was fixed, the script below caused a run-time error because -* its switch statement was too big. After the fix, SpiderMonkey should compile -* this script just fine. The same fix has not been made in Rhino, however, -* so it will continue to error there... -* -* If you ever run this test against an old SpiderMonkey shell to see the bug, -* you should run it interactively: i.e. launch the JS shell manually, and load -* the test manually. Do not run it via the test driver jsDriverl.pl. Why? - -* before the fix for bug 97646, the JS shell would error on this script, but -* would NOT give non-0 exit code. As a result, the test driver couldn't detect -* the error (it looks for non-0 exit codes). -* -*/ -//----------------------------------------------------------------------------- -var i2 = 3011; -var n = new Array (i2); -var err_num = 0; -var i = 0; -var j = 0; -var k = 0; - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - -function test() -{ - b (); - b4 (); - print('Number of errors = ' + err_num); -} - - -function b() -{ - b4 (); - b_after (); - - for (i=0; i<i2; i++) {n[i] = 0;} - i = 0; - - while (k++ <= i2) - { - switch (j = (k*73)%i2) - { - case 0: if (n[0]++ > 0) check ('a string 0'); break; - case 1: if (n[1]++ > 0) check ('a string 1'); break; - case 2: if (n[2]++ > 0) check ('a string 2'); break; - case 3: if (n[3]++ > 0) check ('a string 3'); break; - case 4: if (n[4]++ > 0) check ('a string 4'); break; - case 5: if (n[5]++ > 0) check ('a string 5'); break; - case 6: if (n[6]++ > 0) check ('a string 6'); break; - case 7: if (n[7]++ > 0) check ('a string 7'); break; - case 8: if (n[8]++ > 0) check ('a string 8'); break; - case 9: if (n[9]++ > 0) check ('a string 9'); break; - case 10: if (n[10]++ > 0) check ('a string 10'); break; - case 11: if (n[11]++ > 0) check ('a string 11'); break; - case 12: if (n[12]++ > 0) check ('a string 12'); break; - case 13: if (n[13]++ > 0) check ('a string 13'); break; - case 14: if (n[14]++ > 0) check ('a string 14'); break; - case 15: if (n[15]++ > 0) check ('a string 15'); break; - case 16: if (n[16]++ > 0) check ('a string 16'); break; - case 17: if (n[17]++ > 0) check ('a string 17'); break; - case 18: if (n[18]++ > 0) check ('a string 18'); break; - case 19: if (n[19]++ > 0) check ('a string 19'); break; - case 20: if (n[20]++ > 0) check ('a string 20'); break; - case 21: if (n[21]++ > 0) check ('a string 21'); break; - case 22: if (n[22]++ > 0) check ('a string 22'); break; - case 23: if (n[23]++ > 0) check ('a string 23'); break; - case 24: if (n[24]++ > 0) check ('a string 24'); break; - case 25: if (n[25]++ > 0) check ('a string 25'); break; - case 26: if (n[26]++ > 0) check ('a string 26'); break; - case 27: if (n[27]++ > 0) check ('a string 27'); break; - case 28: if (n[28]++ > 0) check ('a string 28'); break; - case 29: if (n[29]++ > 0) check ('a string 29'); break; - case 30: if (n[30]++ > 0) check ('a string 30'); break; - case 31: if (n[31]++ > 0) check ('a string 31'); break; - case 32: if (n[32]++ > 0) check ('a string 32'); break; - case 33: if (n[33]++ > 0) check ('a string 33'); break; - case 34: if (n[34]++ > 0) check ('a string 34'); break; - case 35: if (n[35]++ > 0) check ('a string 35'); break; - case 36: if (n[36]++ > 0) check ('a string 36'); break; - case 37: if (n[37]++ > 0) check ('a string 37'); break; - case 38: if (n[38]++ > 0) check ('a string 38'); break; - case 39: if (n[39]++ > 0) check ('a string 39'); break; - case 40: if (n[40]++ > 0) check ('a string 40'); break; - case 41: if (n[41]++ > 0) check ('a string 41'); break; - case 42: if (n[42]++ > 0) check ('a string 42'); break; - case 43: if (n[43]++ > 0) check ('a string 43'); break; - case 44: if (n[44]++ > 0) check ('a string 44'); break; - case 45: if (n[45]++ > 0) check ('a string 45'); break; - case 46: if (n[46]++ > 0) check ('a string 46'); break; - case 47: if (n[47]++ > 0) check ('a string 47'); break; - case 48: if (n[48]++ > 0) check ('a string 48'); break; - case 49: if (n[49]++ > 0) check ('a string 49'); break; - case 50: if (n[50]++ > 0) check ('a string 50'); break; - case 51: if (n[51]++ > 0) check ('a string 51'); break; - case 52: if (n[52]++ > 0) check ('a string 52'); break; - case 53: if (n[53]++ > 0) check ('a string 53'); break; - case 54: if (n[54]++ > 0) check ('a string 54'); break; - case 55: if (n[55]++ > 0) check ('a string 55'); break; - case 56: if (n[56]++ > 0) check ('a string 56'); break; - case 57: if (n[57]++ > 0) check ('a string 57'); break; - case 58: if (n[58]++ > 0) check ('a string 58'); break; - case 59: if (n[59]++ > 0) check ('a string 59'); break; - case 60: if (n[60]++ > 0) check ('a string 60'); break; - case 61: if (n[61]++ > 0) check ('a string 61'); break; - case 62: if (n[62]++ > 0) check ('a string 62'); break; - case 63: if (n[63]++ > 0) check ('a string 63'); break; - case 64: if (n[64]++ > 0) check ('a string 64'); break; - case 65: if (n[65]++ > 0) check ('a string 65'); break; - case 66: if (n[66]++ > 0) check ('a string 66'); break; - case 67: if (n[67]++ > 0) check ('a string 67'); break; - case 68: if (n[68]++ > 0) check ('a string 68'); break; - case 69: if (n[69]++ > 0) check ('a string 69'); break; - case 70: if (n[70]++ > 0) check ('a string 70'); break; - case 71: if (n[71]++ > 0) check ('a string 71'); break; - case 72: if (n[72]++ > 0) check ('a string 72'); break; - case 73: if (n[73]++ > 0) check ('a string 73'); break; - case 74: if (n[74]++ > 0) check ('a string 74'); break; - case 75: if (n[75]++ > 0) check ('a string 75'); break; - case 76: if (n[76]++ > 0) check ('a string 76'); break; - case 77: if (n[77]++ > 0) check ('a string 77'); break; - case 78: if (n[78]++ > 0) check ('a string 78'); break; - case 79: if (n[79]++ > 0) check ('a string 79'); break; - case 80: if (n[80]++ > 0) check ('a string 80'); break; - case 81: if (n[81]++ > 0) check ('a string 81'); break; - case 82: if (n[82]++ > 0) check ('a string 82'); break; - case 83: if (n[83]++ > 0) check ('a string 83'); break; - case 84: if (n[84]++ > 0) check ('a string 84'); break; - case 85: if (n[85]++ > 0) check ('a string 85'); break; - case 86: if (n[86]++ > 0) check ('a string 86'); break; - case 87: if (n[87]++ > 0) check ('a string 87'); break; - case 88: if (n[88]++ > 0) check ('a string 88'); break; - case 89: if (n[89]++ > 0) check ('a string 89'); break; - case 90: if (n[90]++ > 0) check ('a string 90'); break; - case 91: if (n[91]++ > 0) check ('a string 91'); break; - case 92: if (n[92]++ > 0) check ('a string 92'); break; - case 93: if (n[93]++ > 0) check ('a string 93'); break; - case 94: if (n[94]++ > 0) check ('a string 94'); break; - case 95: if (n[95]++ > 0) check ('a string 95'); break; - case 96: if (n[96]++ > 0) check ('a string 96'); break; - case 97: if (n[97]++ > 0) check ('a string 97'); break; - case 98: if (n[98]++ > 0) check ('a string 98'); break; - case 99: if (n[99]++ > 0) check ('a string 99'); break; - case 100: if (n[100]++ > 0) check ('a string 100'); break; - case 101: if (n[101]++ > 0) check ('a string 101'); break; - case 102: if (n[102]++ > 0) check ('a string 102'); break; - case 103: if (n[103]++ > 0) check ('a string 103'); break; - case 104: if (n[104]++ > 0) check ('a string 104'); break; - case 105: if (n[105]++ > 0) check ('a string 105'); break; - case 106: if (n[106]++ > 0) check ('a string 106'); break; - case 107: if (n[107]++ > 0) check ('a string 107'); break; - case 108: if (n[108]++ > 0) check ('a string 108'); break; - case 109: if (n[109]++ > 0) check ('a string 109'); break; - case 110: if (n[110]++ > 0) check ('a string 110'); break; - case 111: if (n[111]++ > 0) check ('a string 111'); break; - case 112: if (n[112]++ > 0) check ('a string 112'); break; - case 113: if (n[113]++ > 0) check ('a string 113'); break; - case 114: if (n[114]++ > 0) check ('a string 114'); break; - case 115: if (n[115]++ > 0) check ('a string 115'); break; - case 116: if (n[116]++ > 0) check ('a string 116'); break; - case 117: if (n[117]++ > 0) check ('a string 117'); break; - case 118: if (n[118]++ > 0) check ('a string 118'); break; - case 119: if (n[119]++ > 0) check ('a string 119'); break; - case 120: if (n[120]++ > 0) check ('a string 120'); break; - case 121: if (n[121]++ > 0) check ('a string 121'); break; - case 122: if (n[122]++ > 0) check ('a string 122'); break; - case 123: if (n[123]++ > 0) check ('a string 123'); break; - case 124: if (n[124]++ > 0) check ('a string 124'); break; - case 125: if (n[125]++ > 0) check ('a string 125'); break; - case 126: if (n[126]++ > 0) check ('a string 126'); break; - case 127: if (n[127]++ > 0) check ('a string 127'); break; - case 128: if (n[128]++ > 0) check ('a string 128'); break; - case 129: if (n[129]++ > 0) check ('a string 129'); break; - case 130: if (n[130]++ > 0) check ('a string 130'); break; - case 131: if (n[131]++ > 0) check ('a string 131'); break; - case 132: if (n[132]++ > 0) check ('a string 132'); break; - case 133: if (n[133]++ > 0) check ('a string 133'); break; - case 134: if (n[134]++ > 0) check ('a string 134'); break; - case 135: if (n[135]++ > 0) check ('a string 135'); break; - case 136: if (n[136]++ > 0) check ('a string 136'); break; - case 137: if (n[137]++ > 0) check ('a string 137'); break; - case 138: if (n[138]++ > 0) check ('a string 138'); break; - case 139: if (n[139]++ > 0) check ('a string 139'); break; - case 140: if (n[140]++ > 0) check ('a string 140'); break; - case 141: if (n[141]++ > 0) check ('a string 141'); break; - case 142: if (n[142]++ > 0) check ('a string 142'); break; - case 143: if (n[143]++ > 0) check ('a string 143'); break; - case 144: if (n[144]++ > 0) check ('a string 144'); break; - case 145: if (n[145]++ > 0) check ('a string 145'); break; - case 146: if (n[146]++ > 0) check ('a string 146'); break; - case 147: if (n[147]++ > 0) check ('a string 147'); break; - case 148: if (n[148]++ > 0) check ('a string 148'); break; - case 149: if (n[149]++ > 0) check ('a string 149'); break; - case 150: if (n[150]++ > 0) check ('a string 150'); break; - case 151: if (n[151]++ > 0) check ('a string 151'); break; - case 152: if (n[152]++ > 0) check ('a string 152'); break; - case 153: if (n[153]++ > 0) check ('a string 153'); break; - case 154: if (n[154]++ > 0) check ('a string 154'); break; - case 155: if (n[155]++ > 0) check ('a string 155'); break; - case 156: if (n[156]++ > 0) check ('a string 156'); break; - case 157: if (n[157]++ > 0) check ('a string 157'); break; - case 158: if (n[158]++ > 0) check ('a string 158'); break; - case 159: if (n[159]++ > 0) check ('a string 159'); break; - case 160: if (n[160]++ > 0) check ('a string 160'); break; - case 161: if (n[161]++ > 0) check ('a string 161'); break; - case 162: if (n[162]++ > 0) check ('a string 162'); break; - case 163: if (n[163]++ > 0) check ('a string 163'); break; - case 164: if (n[164]++ > 0) check ('a string 164'); break; - case 165: if (n[165]++ > 0) check ('a string 165'); break; - case 166: if (n[166]++ > 0) check ('a string 166'); break; - case 167: if (n[167]++ > 0) check ('a string 167'); break; - case 168: if (n[168]++ > 0) check ('a string 168'); break; - case 169: if (n[169]++ > 0) check ('a string 169'); break; - case 170: if (n[170]++ > 0) check ('a string 170'); break; - case 171: if (n[171]++ > 0) check ('a string 171'); break; - case 172: if (n[172]++ > 0) check ('a string 172'); break; - case 173: if (n[173]++ > 0) check ('a string 173'); break; - case 174: if (n[174]++ > 0) check ('a string 174'); break; - case 175: if (n[175]++ > 0) check ('a string 175'); break; - case 176: if (n[176]++ > 0) check ('a string 176'); break; - case 177: if (n[177]++ > 0) check ('a string 177'); break; - case 178: if (n[178]++ > 0) check ('a string 178'); break; - case 179: if (n[179]++ > 0) check ('a string 179'); break; - case 180: if (n[180]++ > 0) check ('a string 180'); break; - case 181: if (n[181]++ > 0) check ('a string 181'); break; - case 182: if (n[182]++ > 0) check ('a string 182'); break; - case 183: if (n[183]++ > 0) check ('a string 183'); break; - case 184: if (n[184]++ > 0) check ('a string 184'); break; - case 185: if (n[185]++ > 0) check ('a string 185'); break; - case 186: if (n[186]++ > 0) check ('a string 186'); break; - case 187: if (n[187]++ > 0) check ('a string 187'); break; - case 188: if (n[188]++ > 0) check ('a string 188'); break; - case 189: if (n[189]++ > 0) check ('a string 189'); break; - case 190: if (n[190]++ > 0) check ('a string 190'); break; - case 191: if (n[191]++ > 0) check ('a string 191'); break; - case 192: if (n[192]++ > 0) check ('a string 192'); break; - case 193: if (n[193]++ > 0) check ('a string 193'); break; - case 194: if (n[194]++ > 0) check ('a string 194'); break; - case 195: if (n[195]++ > 0) check ('a string 195'); break; - case 196: if (n[196]++ > 0) check ('a string 196'); break; - case 197: if (n[197]++ > 0) check ('a string 197'); break; - case 198: if (n[198]++ > 0) check ('a string 198'); break; - case 199: if (n[199]++ > 0) check ('a string 199'); break; - case 200: if (n[200]++ > 0) check ('a string 200'); break; - case 201: if (n[201]++ > 0) check ('a string 201'); break; - case 202: if (n[202]++ > 0) check ('a string 202'); break; - case 203: if (n[203]++ > 0) check ('a string 203'); break; - case 204: if (n[204]++ > 0) check ('a string 204'); break; - case 205: if (n[205]++ > 0) check ('a string 205'); break; - case 206: if (n[206]++ > 0) check ('a string 206'); break; - case 207: if (n[207]++ > 0) check ('a string 207'); break; - case 208: if (n[208]++ > 0) check ('a string 208'); break; - case 209: if (n[209]++ > 0) check ('a string 209'); break; - case 210: if (n[210]++ > 0) check ('a string 210'); break; - case 211: if (n[211]++ > 0) check ('a string 211'); break; - case 212: if (n[212]++ > 0) check ('a string 212'); break; - case 213: if (n[213]++ > 0) check ('a string 213'); break; - case 214: if (n[214]++ > 0) check ('a string 214'); break; - case 215: if (n[215]++ > 0) check ('a string 215'); break; - case 216: if (n[216]++ > 0) check ('a string 216'); break; - case 217: if (n[217]++ > 0) check ('a string 217'); break; - case 218: if (n[218]++ > 0) check ('a string 218'); break; - case 219: if (n[219]++ > 0) check ('a string 219'); break; - case 220: if (n[220]++ > 0) check ('a string 220'); break; - case 221: if (n[221]++ > 0) check ('a string 221'); break; - case 222: if (n[222]++ > 0) check ('a string 222'); break; - case 223: if (n[223]++ > 0) check ('a string 223'); break; - case 224: if (n[224]++ > 0) check ('a string 224'); break; - case 225: if (n[225]++ > 0) check ('a string 225'); break; - case 226: if (n[226]++ > 0) check ('a string 226'); break; - case 227: if (n[227]++ > 0) check ('a string 227'); break; - case 228: if (n[228]++ > 0) check ('a string 228'); break; - case 229: if (n[229]++ > 0) check ('a string 229'); break; - case 230: if (n[230]++ > 0) check ('a string 230'); break; - case 231: if (n[231]++ > 0) check ('a string 231'); break; - case 232: if (n[232]++ > 0) check ('a string 232'); break; - case 233: if (n[233]++ > 0) check ('a string 233'); break; - case 234: if (n[234]++ > 0) check ('a string 234'); break; - case 235: if (n[235]++ > 0) check ('a string 235'); break; - case 236: if (n[236]++ > 0) check ('a string 236'); break; - case 237: if (n[237]++ > 0) check ('a string 237'); break; - case 238: if (n[238]++ > 0) check ('a string 238'); break; - case 239: if (n[239]++ > 0) check ('a string 239'); break; - case 240: if (n[240]++ > 0) check ('a string 240'); break; - case 241: if (n[241]++ > 0) check ('a string 241'); break; - case 242: if (n[242]++ > 0) check ('a string 242'); break; - case 243: if (n[243]++ > 0) check ('a string 243'); break; - case 244: if (n[244]++ > 0) check ('a string 244'); break; - case 245: if (n[245]++ > 0) check ('a string 245'); break; - case 246: if (n[246]++ > 0) check ('a string 246'); break; - case 247: if (n[247]++ > 0) check ('a string 247'); break; - case 248: if (n[248]++ > 0) check ('a string 248'); break; - case 249: if (n[249]++ > 0) check ('a string 249'); break; - case 250: if (n[250]++ > 0) check ('a string 250'); break; - case 251: if (n[251]++ > 0) check ('a string 251'); break; - case 252: if (n[252]++ > 0) check ('a string 252'); break; - case 253: if (n[253]++ > 0) check ('a string 253'); break; - case 254: if (n[254]++ > 0) check ('a string 254'); break; - case 255: if (n[255]++ > 0) check ('a string 255'); break; - case 256: if (n[256]++ > 0) check ('a string 256'); break; - case 257: if (n[257]++ > 0) check ('a string 257'); break; - case 258: if (n[258]++ > 0) check ('a string 258'); break; - case 259: if (n[259]++ > 0) check ('a string 259'); break; - case 260: if (n[260]++ > 0) check ('a string 260'); break; - case 261: if (n[261]++ > 0) check ('a string 261'); break; - case 262: if (n[262]++ > 0) check ('a string 262'); break; - case 263: if (n[263]++ > 0) check ('a string 263'); break; - case 264: if (n[264]++ > 0) check ('a string 264'); break; - case 265: if (n[265]++ > 0) check ('a string 265'); break; - case 266: if (n[266]++ > 0) check ('a string 266'); break; - case 267: if (n[267]++ > 0) check ('a string 267'); break; - case 268: if (n[268]++ > 0) check ('a string 268'); break; - case 269: if (n[269]++ > 0) check ('a string 269'); break; - case 270: if (n[270]++ > 0) check ('a string 270'); break; - case 271: if (n[271]++ > 0) check ('a string 271'); break; - case 272: if (n[272]++ > 0) check ('a string 272'); break; - case 273: if (n[273]++ > 0) check ('a string 273'); break; - case 274: if (n[274]++ > 0) check ('a string 274'); break; - case 275: if (n[275]++ > 0) check ('a string 275'); break; - case 276: if (n[276]++ > 0) check ('a string 276'); break; - case 277: if (n[277]++ > 0) check ('a string 277'); break; - case 278: if (n[278]++ > 0) check ('a string 278'); break; - case 279: if (n[279]++ > 0) check ('a string 279'); break; - case 280: if (n[280]++ > 0) check ('a string 280'); break; - case 281: if (n[281]++ > 0) check ('a string 281'); break; - case 282: if (n[282]++ > 0) check ('a string 282'); break; - case 283: if (n[283]++ > 0) check ('a string 283'); break; - case 284: if (n[284]++ > 0) check ('a string 284'); break; - case 285: if (n[285]++ > 0) check ('a string 285'); break; - case 286: if (n[286]++ > 0) check ('a string 286'); break; - case 287: if (n[287]++ > 0) check ('a string 287'); break; - case 288: if (n[288]++ > 0) check ('a string 288'); break; - case 289: if (n[289]++ > 0) check ('a string 289'); break; - case 290: if (n[290]++ > 0) check ('a string 290'); break; - case 291: if (n[291]++ > 0) check ('a string 291'); break; - case 292: if (n[292]++ > 0) check ('a string 292'); break; - case 293: if (n[293]++ > 0) check ('a string 293'); break; - case 294: if (n[294]++ > 0) check ('a string 294'); break; - case 295: if (n[295]++ > 0) check ('a string 295'); break; - case 296: if (n[296]++ > 0) check ('a string 296'); break; - case 297: if (n[297]++ > 0) check ('a string 297'); break; - case 298: if (n[298]++ > 0) check ('a string 298'); break; - case 299: if (n[299]++ > 0) check ('a string 299'); break; - case 300: if (n[300]++ > 0) check ('a string 300'); break; - case 301: if (n[301]++ > 0) check ('a string 301'); break; - case 302: if (n[302]++ > 0) check ('a string 302'); break; - case 303: if (n[303]++ > 0) check ('a string 303'); break; - case 304: if (n[304]++ > 0) check ('a string 304'); break; - case 305: if (n[305]++ > 0) check ('a string 305'); break; - case 306: if (n[306]++ > 0) check ('a string 306'); break; - case 307: if (n[307]++ > 0) check ('a string 307'); break; - case 308: if (n[308]++ > 0) check ('a string 308'); break; - case 309: if (n[309]++ > 0) check ('a string 309'); break; - case 310: if (n[310]++ > 0) check ('a string 310'); break; - case 311: if (n[311]++ > 0) check ('a string 311'); break; - case 312: if (n[312]++ > 0) check ('a string 312'); break; - case 313: if (n[313]++ > 0) check ('a string 313'); break; - case 314: if (n[314]++ > 0) check ('a string 314'); break; - case 315: if (n[315]++ > 0) check ('a string 315'); break; - case 316: if (n[316]++ > 0) check ('a string 316'); break; - case 317: if (n[317]++ > 0) check ('a string 317'); break; - case 318: if (n[318]++ > 0) check ('a string 318'); break; - case 319: if (n[319]++ > 0) check ('a string 319'); break; - case 320: if (n[320]++ > 0) check ('a string 320'); break; - case 321: if (n[321]++ > 0) check ('a string 321'); break; - case 322: if (n[322]++ > 0) check ('a string 322'); break; - case 323: if (n[323]++ > 0) check ('a string 323'); break; - case 324: if (n[324]++ > 0) check ('a string 324'); break; - case 325: if (n[325]++ > 0) check ('a string 325'); break; - case 326: if (n[326]++ > 0) check ('a string 326'); break; - case 327: if (n[327]++ > 0) check ('a string 327'); break; - case 328: if (n[328]++ > 0) check ('a string 328'); break; - case 329: if (n[329]++ > 0) check ('a string 329'); break; - case 330: if (n[330]++ > 0) check ('a string 330'); break; - case 331: if (n[331]++ > 0) check ('a string 331'); break; - case 332: if (n[332]++ > 0) check ('a string 332'); break; - case 333: if (n[333]++ > 0) check ('a string 333'); break; - case 334: if (n[334]++ > 0) check ('a string 334'); break; - case 335: if (n[335]++ > 0) check ('a string 335'); break; - case 336: if (n[336]++ > 0) check ('a string 336'); break; - case 337: if (n[337]++ > 0) check ('a string 337'); break; - case 338: if (n[338]++ > 0) check ('a string 338'); break; - case 339: if (n[339]++ > 0) check ('a string 339'); break; - case 340: if (n[340]++ > 0) check ('a string 340'); break; - case 341: if (n[341]++ > 0) check ('a string 341'); break; - case 342: if (n[342]++ > 0) check ('a string 342'); break; - case 343: if (n[343]++ > 0) check ('a string 343'); break; - case 344: if (n[344]++ > 0) check ('a string 344'); break; - case 345: if (n[345]++ > 0) check ('a string 345'); break; - case 346: if (n[346]++ > 0) check ('a string 346'); break; - case 347: if (n[347]++ > 0) check ('a string 347'); break; - case 348: if (n[348]++ > 0) check ('a string 348'); break; - case 349: if (n[349]++ > 0) check ('a string 349'); break; - case 350: if (n[350]++ > 0) check ('a string 350'); break; - case 351: if (n[351]++ > 0) check ('a string 351'); break; - case 352: if (n[352]++ > 0) check ('a string 352'); break; - case 353: if (n[353]++ > 0) check ('a string 353'); break; - case 354: if (n[354]++ > 0) check ('a string 354'); break; - case 355: if (n[355]++ > 0) check ('a string 355'); break; - case 356: if (n[356]++ > 0) check ('a string 356'); break; - case 357: if (n[357]++ > 0) check ('a string 357'); break; - case 358: if (n[358]++ > 0) check ('a string 358'); break; - case 359: if (n[359]++ > 0) check ('a string 359'); break; - case 360: if (n[360]++ > 0) check ('a string 360'); break; - case 361: if (n[361]++ > 0) check ('a string 361'); break; - case 362: if (n[362]++ > 0) check ('a string 362'); break; - case 363: if (n[363]++ > 0) check ('a string 363'); break; - case 364: if (n[364]++ > 0) check ('a string 364'); break; - case 365: if (n[365]++ > 0) check ('a string 365'); break; - case 366: if (n[366]++ > 0) check ('a string 366'); break; - case 367: if (n[367]++ > 0) check ('a string 367'); break; - case 368: if (n[368]++ > 0) check ('a string 368'); break; - case 369: if (n[369]++ > 0) check ('a string 369'); break; - case 370: if (n[370]++ > 0) check ('a string 370'); break; - case 371: if (n[371]++ > 0) check ('a string 371'); break; - case 372: if (n[372]++ > 0) check ('a string 372'); break; - case 373: if (n[373]++ > 0) check ('a string 373'); break; - case 374: if (n[374]++ > 0) check ('a string 374'); break; - case 375: if (n[375]++ > 0) check ('a string 375'); break; - case 376: if (n[376]++ > 0) check ('a string 376'); break; - case 377: if (n[377]++ > 0) check ('a string 377'); break; - case 378: if (n[378]++ > 0) check ('a string 378'); break; - case 379: if (n[379]++ > 0) check ('a string 379'); break; - case 380: if (n[380]++ > 0) check ('a string 380'); break; - case 381: if (n[381]++ > 0) check ('a string 381'); break; - case 382: if (n[382]++ > 0) check ('a string 382'); break; - case 383: if (n[383]++ > 0) check ('a string 383'); break; - case 384: if (n[384]++ > 0) check ('a string 384'); break; - case 385: if (n[385]++ > 0) check ('a string 385'); break; - case 386: if (n[386]++ > 0) check ('a string 386'); break; - case 387: if (n[387]++ > 0) check ('a string 387'); break; - case 388: if (n[388]++ > 0) check ('a string 388'); break; - case 389: if (n[389]++ > 0) check ('a string 389'); break; - case 390: if (n[390]++ > 0) check ('a string 390'); break; - case 391: if (n[391]++ > 0) check ('a string 391'); break; - case 392: if (n[392]++ > 0) check ('a string 392'); break; - case 393: if (n[393]++ > 0) check ('a string 393'); break; - case 394: if (n[394]++ > 0) check ('a string 394'); break; - case 395: if (n[395]++ > 0) check ('a string 395'); break; - case 396: if (n[396]++ > 0) check ('a string 396'); break; - case 397: if (n[397]++ > 0) check ('a string 397'); break; - case 398: if (n[398]++ > 0) check ('a string 398'); break; - case 399: if (n[399]++ > 0) check ('a string 399'); break; - case 400: if (n[400]++ > 0) check ('a string 400'); break; - case 401: if (n[401]++ > 0) check ('a string 401'); break; - case 402: if (n[402]++ > 0) check ('a string 402'); break; - case 403: if (n[403]++ > 0) check ('a string 403'); break; - case 404: if (n[404]++ > 0) check ('a string 404'); break; - case 405: if (n[405]++ > 0) check ('a string 405'); break; - case 406: if (n[406]++ > 0) check ('a string 406'); break; - case 407: if (n[407]++ > 0) check ('a string 407'); break; - case 408: if (n[408]++ > 0) check ('a string 408'); break; - case 409: if (n[409]++ > 0) check ('a string 409'); break; - case 410: if (n[410]++ > 0) check ('a string 410'); break; - case 411: if (n[411]++ > 0) check ('a string 411'); break; - case 412: if (n[412]++ > 0) check ('a string 412'); break; - case 413: if (n[413]++ > 0) check ('a string 413'); break; - case 414: if (n[414]++ > 0) check ('a string 414'); break; - case 415: if (n[415]++ > 0) check ('a string 415'); break; - case 416: if (n[416]++ > 0) check ('a string 416'); break; - case 417: if (n[417]++ > 0) check ('a string 417'); break; - case 418: if (n[418]++ > 0) check ('a string 418'); break; - case 419: if (n[419]++ > 0) check ('a string 419'); break; - case 420: if (n[420]++ > 0) check ('a string 420'); break; - case 421: if (n[421]++ > 0) check ('a string 421'); break; - case 422: if (n[422]++ > 0) check ('a string 422'); break; - case 423: if (n[423]++ > 0) check ('a string 423'); break; - case 424: if (n[424]++ > 0) check ('a string 424'); break; - case 425: if (n[425]++ > 0) check ('a string 425'); break; - case 426: if (n[426]++ > 0) check ('a string 426'); break; - case 427: if (n[427]++ > 0) check ('a string 427'); break; - case 428: if (n[428]++ > 0) check ('a string 428'); break; - case 429: if (n[429]++ > 0) check ('a string 429'); break; - case 430: if (n[430]++ > 0) check ('a string 430'); break; - case 431: if (n[431]++ > 0) check ('a string 431'); break; - case 432: if (n[432]++ > 0) check ('a string 432'); break; - case 433: if (n[433]++ > 0) check ('a string 433'); break; - case 434: if (n[434]++ > 0) check ('a string 434'); break; - case 435: if (n[435]++ > 0) check ('a string 435'); break; - case 436: if (n[436]++ > 0) check ('a string 436'); break; - case 437: if (n[437]++ > 0) check ('a string 437'); break; - case 438: if (n[438]++ > 0) check ('a string 438'); break; - case 439: if (n[439]++ > 0) check ('a string 439'); break; - case 440: if (n[440]++ > 0) check ('a string 440'); break; - case 441: if (n[441]++ > 0) check ('a string 441'); break; - case 442: if (n[442]++ > 0) check ('a string 442'); break; - case 443: if (n[443]++ > 0) check ('a string 443'); break; - case 444: if (n[444]++ > 0) check ('a string 444'); break; - case 445: if (n[445]++ > 0) check ('a string 445'); break; - case 446: if (n[446]++ > 0) check ('a string 446'); break; - case 447: if (n[447]++ > 0) check ('a string 447'); break; - case 448: if (n[448]++ > 0) check ('a string 448'); break; - case 449: if (n[449]++ > 0) check ('a string 449'); break; - case 450: if (n[450]++ > 0) check ('a string 450'); break; - case 451: if (n[451]++ > 0) check ('a string 451'); break; - case 452: if (n[452]++ > 0) check ('a string 452'); break; - case 453: if (n[453]++ > 0) check ('a string 453'); break; - case 454: if (n[454]++ > 0) check ('a string 454'); break; - case 455: if (n[455]++ > 0) check ('a string 455'); break; - case 456: if (n[456]++ > 0) check ('a string 456'); break; - case 457: if (n[457]++ > 0) check ('a string 457'); break; - case 458: if (n[458]++ > 0) check ('a string 458'); break; - case 459: if (n[459]++ > 0) check ('a string 459'); break; - case 460: if (n[460]++ > 0) check ('a string 460'); break; - case 461: if (n[461]++ > 0) check ('a string 461'); break; - case 462: if (n[462]++ > 0) check ('a string 462'); break; - case 463: if (n[463]++ > 0) check ('a string 463'); break; - case 464: if (n[464]++ > 0) check ('a string 464'); break; - case 465: if (n[465]++ > 0) check ('a string 465'); break; - case 466: if (n[466]++ > 0) check ('a string 466'); break; - case 467: if (n[467]++ > 0) check ('a string 467'); break; - case 468: if (n[468]++ > 0) check ('a string 468'); break; - case 469: if (n[469]++ > 0) check ('a string 469'); break; - case 470: if (n[470]++ > 0) check ('a string 470'); break; - case 471: if (n[471]++ > 0) check ('a string 471'); break; - case 472: if (n[472]++ > 0) check ('a string 472'); break; - case 473: if (n[473]++ > 0) check ('a string 473'); break; - case 474: if (n[474]++ > 0) check ('a string 474'); break; - case 475: if (n[475]++ > 0) check ('a string 475'); break; - case 476: if (n[476]++ > 0) check ('a string 476'); break; - case 477: if (n[477]++ > 0) check ('a string 477'); break; - case 478: if (n[478]++ > 0) check ('a string 478'); break; - case 479: if (n[479]++ > 0) check ('a string 479'); break; - case 480: if (n[480]++ > 0) check ('a string 480'); break; - case 481: if (n[481]++ > 0) check ('a string 481'); break; - case 482: if (n[482]++ > 0) check ('a string 482'); break; - case 483: if (n[483]++ > 0) check ('a string 483'); break; - case 484: if (n[484]++ > 0) check ('a string 484'); break; - case 485: if (n[485]++ > 0) check ('a string 485'); break; - case 486: if (n[486]++ > 0) check ('a string 486'); break; - case 487: if (n[487]++ > 0) check ('a string 487'); break; - case 488: if (n[488]++ > 0) check ('a string 488'); break; - case 489: if (n[489]++ > 0) check ('a string 489'); break; - case 490: if (n[490]++ > 0) check ('a string 490'); break; - case 491: if (n[491]++ > 0) check ('a string 491'); break; - case 492: if (n[492]++ > 0) check ('a string 492'); break; - case 493: if (n[493]++ > 0) check ('a string 493'); break; - case 494: if (n[494]++ > 0) check ('a string 494'); break; - case 495: if (n[495]++ > 0) check ('a string 495'); break; - case 496: if (n[496]++ > 0) check ('a string 496'); break; - case 497: if (n[497]++ > 0) check ('a string 497'); break; - case 498: if (n[498]++ > 0) check ('a string 498'); break; - case 499: if (n[499]++ > 0) check ('a string 499'); break; - case 500: if (n[500]++ > 0) check ('a string 500'); break; - case 501: if (n[501]++ > 0) check ('a string 501'); break; - case 502: if (n[502]++ > 0) check ('a string 502'); break; - case 503: if (n[503]++ > 0) check ('a string 503'); break; - case 504: if (n[504]++ > 0) check ('a string 504'); break; - case 505: if (n[505]++ > 0) check ('a string 505'); break; - case 506: if (n[506]++ > 0) check ('a string 506'); break; - case 507: if (n[507]++ > 0) check ('a string 507'); break; - case 508: if (n[508]++ > 0) check ('a string 508'); break; - case 509: if (n[509]++ > 0) check ('a string 509'); break; - case 510: if (n[510]++ > 0) check ('a string 510'); break; - case 511: if (n[511]++ > 0) check ('a string 511'); break; - case 512: if (n[512]++ > 0) check ('a string 512'); break; - case 513: if (n[513]++ > 0) check ('a string 513'); break; - case 514: if (n[514]++ > 0) check ('a string 514'); break; - case 515: if (n[515]++ > 0) check ('a string 515'); break; - case 516: if (n[516]++ > 0) check ('a string 516'); break; - case 517: if (n[517]++ > 0) check ('a string 517'); break; - case 518: if (n[518]++ > 0) check ('a string 518'); break; - case 519: if (n[519]++ > 0) check ('a string 519'); break; - case 520: if (n[520]++ > 0) check ('a string 520'); break; - case 521: if (n[521]++ > 0) check ('a string 521'); break; - case 522: if (n[522]++ > 0) check ('a string 522'); break; - case 523: if (n[523]++ > 0) check ('a string 523'); break; - case 524: if (n[524]++ > 0) check ('a string 524'); break; - case 525: if (n[525]++ > 0) check ('a string 525'); break; - case 526: if (n[526]++ > 0) check ('a string 526'); break; - case 527: if (n[527]++ > 0) check ('a string 527'); break; - case 528: if (n[528]++ > 0) check ('a string 528'); break; - case 529: if (n[529]++ > 0) check ('a string 529'); break; - case 530: if (n[530]++ > 0) check ('a string 530'); break; - case 531: if (n[531]++ > 0) check ('a string 531'); break; - case 532: if (n[532]++ > 0) check ('a string 532'); break; - case 533: if (n[533]++ > 0) check ('a string 533'); break; - case 534: if (n[534]++ > 0) check ('a string 534'); break; - case 535: if (n[535]++ > 0) check ('a string 535'); break; - case 536: if (n[536]++ > 0) check ('a string 536'); break; - case 537: if (n[537]++ > 0) check ('a string 537'); break; - case 538: if (n[538]++ > 0) check ('a string 538'); break; - case 539: if (n[539]++ > 0) check ('a string 539'); break; - case 540: if (n[540]++ > 0) check ('a string 540'); break; - case 541: if (n[541]++ > 0) check ('a string 541'); break; - case 542: if (n[542]++ > 0) check ('a string 542'); break; - case 543: if (n[543]++ > 0) check ('a string 543'); break; - case 544: if (n[544]++ > 0) check ('a string 544'); break; - case 545: if (n[545]++ > 0) check ('a string 545'); break; - case 546: if (n[546]++ > 0) check ('a string 546'); break; - case 547: if (n[547]++ > 0) check ('a string 547'); break; - case 548: if (n[548]++ > 0) check ('a string 548'); break; - case 549: if (n[549]++ > 0) check ('a string 549'); break; - case 550: if (n[550]++ > 0) check ('a string 550'); break; - case 551: if (n[551]++ > 0) check ('a string 551'); break; - case 552: if (n[552]++ > 0) check ('a string 552'); break; - case 553: if (n[553]++ > 0) check ('a string 553'); break; - case 554: if (n[554]++ > 0) check ('a string 554'); break; - case 555: if (n[555]++ > 0) check ('a string 555'); break; - case 556: if (n[556]++ > 0) check ('a string 556'); break; - case 557: if (n[557]++ > 0) check ('a string 557'); break; - case 558: if (n[558]++ > 0) check ('a string 558'); break; - case 559: if (n[559]++ > 0) check ('a string 559'); break; - case 560: if (n[560]++ > 0) check ('a string 560'); break; - case 561: if (n[561]++ > 0) check ('a string 561'); break; - case 562: if (n[562]++ > 0) check ('a string 562'); break; - case 563: if (n[563]++ > 0) check ('a string 563'); break; - case 564: if (n[564]++ > 0) check ('a string 564'); break; - case 565: if (n[565]++ > 0) check ('a string 565'); break; - case 566: if (n[566]++ > 0) check ('a string 566'); break; - case 567: if (n[567]++ > 0) check ('a string 567'); break; - case 568: if (n[568]++ > 0) check ('a string 568'); break; - case 569: if (n[569]++ > 0) check ('a string 569'); break; - case 570: if (n[570]++ > 0) check ('a string 570'); break; - case 571: if (n[571]++ > 0) check ('a string 571'); break; - case 572: if (n[572]++ > 0) check ('a string 572'); break; - case 573: if (n[573]++ > 0) check ('a string 573'); break; - case 574: if (n[574]++ > 0) check ('a string 574'); break; - case 575: if (n[575]++ > 0) check ('a string 575'); break; - case 576: if (n[576]++ > 0) check ('a string 576'); break; - case 577: if (n[577]++ > 0) check ('a string 577'); break; - case 578: if (n[578]++ > 0) check ('a string 578'); break; - case 579: if (n[579]++ > 0) check ('a string 579'); break; - case 580: if (n[580]++ > 0) check ('a string 580'); break; - case 581: if (n[581]++ > 0) check ('a string 581'); break; - case 582: if (n[582]++ > 0) check ('a string 582'); break; - case 583: if (n[583]++ > 0) check ('a string 583'); break; - case 584: if (n[584]++ > 0) check ('a string 584'); break; - case 585: if (n[585]++ > 0) check ('a string 585'); break; - case 586: if (n[586]++ > 0) check ('a string 586'); break; - case 587: if (n[587]++ > 0) check ('a string 587'); break; - case 588: if (n[588]++ > 0) check ('a string 588'); break; - case 589: if (n[589]++ > 0) check ('a string 589'); break; - case 590: if (n[590]++ > 0) check ('a string 590'); break; - case 591: if (n[591]++ > 0) check ('a string 591'); break; - case 592: if (n[592]++ > 0) check ('a string 592'); break; - case 593: if (n[593]++ > 0) check ('a string 593'); break; - case 594: if (n[594]++ > 0) check ('a string 594'); break; - case 595: if (n[595]++ > 0) check ('a string 595'); break; - case 596: if (n[596]++ > 0) check ('a string 596'); break; - case 597: if (n[597]++ > 0) check ('a string 597'); break; - case 598: if (n[598]++ > 0) check ('a string 598'); break; - case 599: if (n[599]++ > 0) check ('a string 599'); break; - case 600: if (n[600]++ > 0) check ('a string 600'); break; - case 601: if (n[601]++ > 0) check ('a string 601'); break; - case 602: if (n[602]++ > 0) check ('a string 602'); break; - case 603: if (n[603]++ > 0) check ('a string 603'); break; - case 604: if (n[604]++ > 0) check ('a string 604'); break; - case 605: if (n[605]++ > 0) check ('a string 605'); break; - case 606: if (n[606]++ > 0) check ('a string 606'); break; - case 607: if (n[607]++ > 0) check ('a string 607'); break; - case 608: if (n[608]++ > 0) check ('a string 608'); break; - case 609: if (n[609]++ > 0) check ('a string 609'); break; - case 610: if (n[610]++ > 0) check ('a string 610'); break; - case 611: if (n[611]++ > 0) check ('a string 611'); break; - case 612: if (n[612]++ > 0) check ('a string 612'); break; - case 613: if (n[613]++ > 0) check ('a string 613'); break; - case 614: if (n[614]++ > 0) check ('a string 614'); break; - case 615: if (n[615]++ > 0) check ('a string 615'); break; - case 616: if (n[616]++ > 0) check ('a string 616'); break; - case 617: if (n[617]++ > 0) check ('a string 617'); break; - case 618: if (n[618]++ > 0) check ('a string 618'); break; - case 619: if (n[619]++ > 0) check ('a string 619'); break; - case 620: if (n[620]++ > 0) check ('a string 620'); break; - case 621: if (n[621]++ > 0) check ('a string 621'); break; - case 622: if (n[622]++ > 0) check ('a string 622'); break; - case 623: if (n[623]++ > 0) check ('a string 623'); break; - case 624: if (n[624]++ > 0) check ('a string 624'); break; - case 625: if (n[625]++ > 0) check ('a string 625'); break; - case 626: if (n[626]++ > 0) check ('a string 626'); break; - case 627: if (n[627]++ > 0) check ('a string 627'); break; - case 628: if (n[628]++ > 0) check ('a string 628'); break; - case 629: if (n[629]++ > 0) check ('a string 629'); break; - case 630: if (n[630]++ > 0) check ('a string 630'); break; - case 631: if (n[631]++ > 0) check ('a string 631'); break; - case 632: if (n[632]++ > 0) check ('a string 632'); break; - case 633: if (n[633]++ > 0) check ('a string 633'); break; - case 634: if (n[634]++ > 0) check ('a string 634'); break; - case 635: if (n[635]++ > 0) check ('a string 635'); break; - case 636: if (n[636]++ > 0) check ('a string 636'); break; - case 637: if (n[637]++ > 0) check ('a string 637'); break; - case 638: if (n[638]++ > 0) check ('a string 638'); break; - case 639: if (n[639]++ > 0) check ('a string 639'); break; - case 640: if (n[640]++ > 0) check ('a string 640'); break; - case 641: if (n[641]++ > 0) check ('a string 641'); break; - case 642: if (n[642]++ > 0) check ('a string 642'); break; - case 643: if (n[643]++ > 0) check ('a string 643'); break; - case 644: if (n[644]++ > 0) check ('a string 644'); break; - case 645: if (n[645]++ > 0) check ('a string 645'); break; - case 646: if (n[646]++ > 0) check ('a string 646'); break; - case 647: if (n[647]++ > 0) check ('a string 647'); break; - case 648: if (n[648]++ > 0) check ('a string 648'); break; - case 649: if (n[649]++ > 0) check ('a string 649'); break; - case 650: if (n[650]++ > 0) check ('a string 650'); break; - case 651: if (n[651]++ > 0) check ('a string 651'); break; - case 652: if (n[652]++ > 0) check ('a string 652'); break; - case 653: if (n[653]++ > 0) check ('a string 653'); break; - case 654: if (n[654]++ > 0) check ('a string 654'); break; - case 655: if (n[655]++ > 0) check ('a string 655'); break; - case 656: if (n[656]++ > 0) check ('a string 656'); break; - case 657: if (n[657]++ > 0) check ('a string 657'); break; - case 658: if (n[658]++ > 0) check ('a string 658'); break; - case 659: if (n[659]++ > 0) check ('a string 659'); break; - case 660: if (n[660]++ > 0) check ('a string 660'); break; - case 661: if (n[661]++ > 0) check ('a string 661'); break; - case 662: if (n[662]++ > 0) check ('a string 662'); break; - case 663: if (n[663]++ > 0) check ('a string 663'); break; - case 664: if (n[664]++ > 0) check ('a string 664'); break; - case 665: if (n[665]++ > 0) check ('a string 665'); break; - case 666: if (n[666]++ > 0) check ('a string 666'); break; - case 667: if (n[667]++ > 0) check ('a string 667'); break; - case 668: if (n[668]++ > 0) check ('a string 668'); break; - case 669: if (n[669]++ > 0) check ('a string 669'); break; - case 670: if (n[670]++ > 0) check ('a string 670'); break; - case 671: if (n[671]++ > 0) check ('a string 671'); break; - case 672: if (n[672]++ > 0) check ('a string 672'); break; - case 673: if (n[673]++ > 0) check ('a string 673'); break; - case 674: if (n[674]++ > 0) check ('a string 674'); break; - case 675: if (n[675]++ > 0) check ('a string 675'); break; - case 676: if (n[676]++ > 0) check ('a string 676'); break; - case 677: if (n[677]++ > 0) check ('a string 677'); break; - case 678: if (n[678]++ > 0) check ('a string 678'); break; - case 679: if (n[679]++ > 0) check ('a string 679'); break; - case 680: if (n[680]++ > 0) check ('a string 680'); break; - case 681: if (n[681]++ > 0) check ('a string 681'); break; - case 682: if (n[682]++ > 0) check ('a string 682'); break; - case 683: if (n[683]++ > 0) check ('a string 683'); break; - case 684: if (n[684]++ > 0) check ('a string 684'); break; - case 685: if (n[685]++ > 0) check ('a string 685'); break; - case 686: if (n[686]++ > 0) check ('a string 686'); break; - case 687: if (n[687]++ > 0) check ('a string 687'); break; - case 688: if (n[688]++ > 0) check ('a string 688'); break; - case 689: if (n[689]++ > 0) check ('a string 689'); break; - case 690: if (n[690]++ > 0) check ('a string 690'); break; - case 691: if (n[691]++ > 0) check ('a string 691'); break; - case 692: if (n[692]++ > 0) check ('a string 692'); break; - case 693: if (n[693]++ > 0) check ('a string 693'); break; - case 694: if (n[694]++ > 0) check ('a string 694'); break; - case 695: if (n[695]++ > 0) check ('a string 695'); break; - case 696: if (n[696]++ > 0) check ('a string 696'); break; - case 697: if (n[697]++ > 0) check ('a string 697'); break; - case 698: if (n[698]++ > 0) check ('a string 698'); break; - case 699: if (n[699]++ > 0) check ('a string 699'); break; - case 700: if (n[700]++ > 0) check ('a string 700'); break; - case 701: if (n[701]++ > 0) check ('a string 701'); break; - case 702: if (n[702]++ > 0) check ('a string 702'); break; - case 703: if (n[703]++ > 0) check ('a string 703'); break; - case 704: if (n[704]++ > 0) check ('a string 704'); break; - case 705: if (n[705]++ > 0) check ('a string 705'); break; - case 706: if (n[706]++ > 0) check ('a string 706'); break; - case 707: if (n[707]++ > 0) check ('a string 707'); break; - case 708: if (n[708]++ > 0) check ('a string 708'); break; - case 709: if (n[709]++ > 0) check ('a string 709'); break; - case 710: if (n[710]++ > 0) check ('a string 710'); break; - case 711: if (n[711]++ > 0) check ('a string 711'); break; - case 712: if (n[712]++ > 0) check ('a string 712'); break; - case 713: if (n[713]++ > 0) check ('a string 713'); break; - case 714: if (n[714]++ > 0) check ('a string 714'); break; - case 715: if (n[715]++ > 0) check ('a string 715'); break; - case 716: if (n[716]++ > 0) check ('a string 716'); break; - case 717: if (n[717]++ > 0) check ('a string 717'); break; - case 718: if (n[718]++ > 0) check ('a string 718'); break; - case 719: if (n[719]++ > 0) check ('a string 719'); break; - case 720: if (n[720]++ > 0) check ('a string 720'); break; - case 721: if (n[721]++ > 0) check ('a string 721'); break; - case 722: if (n[722]++ > 0) check ('a string 722'); break; - case 723: if (n[723]++ > 0) check ('a string 723'); break; - case 724: if (n[724]++ > 0) check ('a string 724'); break; - case 725: if (n[725]++ > 0) check ('a string 725'); break; - case 726: if (n[726]++ > 0) check ('a string 726'); break; - case 727: if (n[727]++ > 0) check ('a string 727'); break; - case 728: if (n[728]++ > 0) check ('a string 728'); break; - case 729: if (n[729]++ > 0) check ('a string 729'); break; - case 730: if (n[730]++ > 0) check ('a string 730'); break; - case 731: if (n[731]++ > 0) check ('a string 731'); break; - case 732: if (n[732]++ > 0) check ('a string 732'); break; - case 733: if (n[733]++ > 0) check ('a string 733'); break; - case 734: if (n[734]++ > 0) check ('a string 734'); break; - case 735: if (n[735]++ > 0) check ('a string 735'); break; - case 736: if (n[736]++ > 0) check ('a string 736'); break; - case 737: if (n[737]++ > 0) check ('a string 737'); break; - case 738: if (n[738]++ > 0) check ('a string 738'); break; - case 739: if (n[739]++ > 0) check ('a string 739'); break; - case 740: if (n[740]++ > 0) check ('a string 740'); break; - case 741: if (n[741]++ > 0) check ('a string 741'); break; - case 742: if (n[742]++ > 0) check ('a string 742'); break; - case 743: if (n[743]++ > 0) check ('a string 743'); break; - case 744: if (n[744]++ > 0) check ('a string 744'); break; - case 745: if (n[745]++ > 0) check ('a string 745'); break; - case 746: if (n[746]++ > 0) check ('a string 746'); break; - case 747: if (n[747]++ > 0) check ('a string 747'); break; - case 748: if (n[748]++ > 0) check ('a string 748'); break; - case 749: if (n[749]++ > 0) check ('a string 749'); break; - case 750: if (n[750]++ > 0) check ('a string 750'); break; - case 751: if (n[751]++ > 0) check ('a string 751'); break; - case 752: if (n[752]++ > 0) check ('a string 752'); break; - case 753: if (n[753]++ > 0) check ('a string 753'); break; - case 754: if (n[754]++ > 0) check ('a string 754'); break; - case 755: if (n[755]++ > 0) check ('a string 755'); break; - case 756: if (n[756]++ > 0) check ('a string 756'); break; - case 757: if (n[757]++ > 0) check ('a string 757'); break; - case 758: if (n[758]++ > 0) check ('a string 758'); break; - case 759: if (n[759]++ > 0) check ('a string 759'); break; - case 760: if (n[760]++ > 0) check ('a string 760'); break; - case 761: if (n[761]++ > 0) check ('a string 761'); break; - case 762: if (n[762]++ > 0) check ('a string 762'); break; - case 763: if (n[763]++ > 0) check ('a string 763'); break; - case 764: if (n[764]++ > 0) check ('a string 764'); break; - case 765: if (n[765]++ > 0) check ('a string 765'); break; - case 766: if (n[766]++ > 0) check ('a string 766'); break; - case 767: if (n[767]++ > 0) check ('a string 767'); break; - case 768: if (n[768]++ > 0) check ('a string 768'); break; - case 769: if (n[769]++ > 0) check ('a string 769'); break; - case 770: if (n[770]++ > 0) check ('a string 770'); break; - case 771: if (n[771]++ > 0) check ('a string 771'); break; - case 772: if (n[772]++ > 0) check ('a string 772'); break; - case 773: if (n[773]++ > 0) check ('a string 773'); break; - case 774: if (n[774]++ > 0) check ('a string 774'); break; - case 775: if (n[775]++ > 0) check ('a string 775'); break; - case 776: if (n[776]++ > 0) check ('a string 776'); break; - case 777: if (n[777]++ > 0) check ('a string 777'); break; - case 778: if (n[778]++ > 0) check ('a string 778'); break; - case 779: if (n[779]++ > 0) check ('a string 779'); break; - case 780: if (n[780]++ > 0) check ('a string 780'); break; - case 781: if (n[781]++ > 0) check ('a string 781'); break; - case 782: if (n[782]++ > 0) check ('a string 782'); break; - case 783: if (n[783]++ > 0) check ('a string 783'); break; - case 784: if (n[784]++ > 0) check ('a string 784'); break; - case 785: if (n[785]++ > 0) check ('a string 785'); break; - case 786: if (n[786]++ > 0) check ('a string 786'); break; - case 787: if (n[787]++ > 0) check ('a string 787'); break; - case 788: if (n[788]++ > 0) check ('a string 788'); break; - case 789: if (n[789]++ > 0) check ('a string 789'); break; - case 790: if (n[790]++ > 0) check ('a string 790'); break; - case 791: if (n[791]++ > 0) check ('a string 791'); break; - case 792: if (n[792]++ > 0) check ('a string 792'); break; - case 793: if (n[793]++ > 0) check ('a string 793'); break; - case 794: if (n[794]++ > 0) check ('a string 794'); break; - case 795: if (n[795]++ > 0) check ('a string 795'); break; - case 796: if (n[796]++ > 0) check ('a string 796'); break; - case 797: if (n[797]++ > 0) check ('a string 797'); break; - case 798: if (n[798]++ > 0) check ('a string 798'); break; - case 799: if (n[799]++ > 0) check ('a string 799'); break; - case 800: if (n[800]++ > 0) check ('a string 800'); break; - case 801: if (n[801]++ > 0) check ('a string 801'); break; - case 802: if (n[802]++ > 0) check ('a string 802'); break; - case 803: if (n[803]++ > 0) check ('a string 803'); break; - case 804: if (n[804]++ > 0) check ('a string 804'); break; - case 805: if (n[805]++ > 0) check ('a string 805'); break; - case 806: if (n[806]++ > 0) check ('a string 806'); break; - case 807: if (n[807]++ > 0) check ('a string 807'); break; - case 808: if (n[808]++ > 0) check ('a string 808'); break; - case 809: if (n[809]++ > 0) check ('a string 809'); break; - case 810: if (n[810]++ > 0) check ('a string 810'); break; - case 811: if (n[811]++ > 0) check ('a string 811'); break; - case 812: if (n[812]++ > 0) check ('a string 812'); break; - case 813: if (n[813]++ > 0) check ('a string 813'); break; - case 814: if (n[814]++ > 0) check ('a string 814'); break; - case 815: if (n[815]++ > 0) check ('a string 815'); break; - case 816: if (n[816]++ > 0) check ('a string 816'); break; - case 817: if (n[817]++ > 0) check ('a string 817'); break; - case 818: if (n[818]++ > 0) check ('a string 818'); break; - case 819: if (n[819]++ > 0) check ('a string 819'); break; - case 820: if (n[820]++ > 0) check ('a string 820'); break; - case 821: if (n[821]++ > 0) check ('a string 821'); break; - case 822: if (n[822]++ > 0) check ('a string 822'); break; - case 823: if (n[823]++ > 0) check ('a string 823'); break; - case 824: if (n[824]++ > 0) check ('a string 824'); break; - case 825: if (n[825]++ > 0) check ('a string 825'); break; - case 826: if (n[826]++ > 0) check ('a string 826'); break; - case 827: if (n[827]++ > 0) check ('a string 827'); break; - case 828: if (n[828]++ > 0) check ('a string 828'); break; - case 829: if (n[829]++ > 0) check ('a string 829'); break; - case 830: if (n[830]++ > 0) check ('a string 830'); break; - case 831: if (n[831]++ > 0) check ('a string 831'); break; - case 832: if (n[832]++ > 0) check ('a string 832'); break; - case 833: if (n[833]++ > 0) check ('a string 833'); break; - case 834: if (n[834]++ > 0) check ('a string 834'); break; - case 835: if (n[835]++ > 0) check ('a string 835'); break; - case 836: if (n[836]++ > 0) check ('a string 836'); break; - case 837: if (n[837]++ > 0) check ('a string 837'); break; - case 838: if (n[838]++ > 0) check ('a string 838'); break; - case 839: if (n[839]++ > 0) check ('a string 839'); break; - case 840: if (n[840]++ > 0) check ('a string 840'); break; - case 841: if (n[841]++ > 0) check ('a string 841'); break; - case 842: if (n[842]++ > 0) check ('a string 842'); break; - case 843: if (n[843]++ > 0) check ('a string 843'); break; - case 844: if (n[844]++ > 0) check ('a string 844'); break; - case 845: if (n[845]++ > 0) check ('a string 845'); break; - case 846: if (n[846]++ > 0) check ('a string 846'); break; - case 847: if (n[847]++ > 0) check ('a string 847'); break; - case 848: if (n[848]++ > 0) check ('a string 848'); break; - case 849: if (n[849]++ > 0) check ('a string 849'); break; - case 850: if (n[850]++ > 0) check ('a string 850'); break; - case 851: if (n[851]++ > 0) check ('a string 851'); break; - case 852: if (n[852]++ > 0) check ('a string 852'); break; - case 853: if (n[853]++ > 0) check ('a string 853'); break; - case 854: if (n[854]++ > 0) check ('a string 854'); break; - case 855: if (n[855]++ > 0) check ('a string 855'); break; - case 856: if (n[856]++ > 0) check ('a string 856'); break; - case 857: if (n[857]++ > 0) check ('a string 857'); break; - case 858: if (n[858]++ > 0) check ('a string 858'); break; - case 859: if (n[859]++ > 0) check ('a string 859'); break; - case 860: if (n[860]++ > 0) check ('a string 860'); break; - case 861: if (n[861]++ > 0) check ('a string 861'); break; - case 862: if (n[862]++ > 0) check ('a string 862'); break; - case 863: if (n[863]++ > 0) check ('a string 863'); break; - case 864: if (n[864]++ > 0) check ('a string 864'); break; - case 865: if (n[865]++ > 0) check ('a string 865'); break; - case 866: if (n[866]++ > 0) check ('a string 866'); break; - case 867: if (n[867]++ > 0) check ('a string 867'); break; - case 868: if (n[868]++ > 0) check ('a string 868'); break; - case 869: if (n[869]++ > 0) check ('a string 869'); break; - case 870: if (n[870]++ > 0) check ('a string 870'); break; - case 871: if (n[871]++ > 0) check ('a string 871'); break; - case 872: if (n[872]++ > 0) check ('a string 872'); break; - case 873: if (n[873]++ > 0) check ('a string 873'); break; - case 874: if (n[874]++ > 0) check ('a string 874'); break; - case 875: if (n[875]++ > 0) check ('a string 875'); break; - case 876: if (n[876]++ > 0) check ('a string 876'); break; - case 877: if (n[877]++ > 0) check ('a string 877'); break; - case 878: if (n[878]++ > 0) check ('a string 878'); break; - case 879: if (n[879]++ > 0) check ('a string 879'); break; - case 880: if (n[880]++ > 0) check ('a string 880'); break; - case 881: if (n[881]++ > 0) check ('a string 881'); break; - case 882: if (n[882]++ > 0) check ('a string 882'); break; - case 883: if (n[883]++ > 0) check ('a string 883'); break; - case 884: if (n[884]++ > 0) check ('a string 884'); break; - case 885: if (n[885]++ > 0) check ('a string 885'); break; - case 886: if (n[886]++ > 0) check ('a string 886'); break; - case 887: if (n[887]++ > 0) check ('a string 887'); break; - case 888: if (n[888]++ > 0) check ('a string 888'); break; - case 889: if (n[889]++ > 0) check ('a string 889'); break; - case 890: if (n[890]++ > 0) check ('a string 890'); break; - case 891: if (n[891]++ > 0) check ('a string 891'); break; - case 892: if (n[892]++ > 0) check ('a string 892'); break; - case 893: if (n[893]++ > 0) check ('a string 893'); break; - case 894: if (n[894]++ > 0) check ('a string 894'); break; - case 895: if (n[895]++ > 0) check ('a string 895'); break; - case 896: if (n[896]++ > 0) check ('a string 896'); break; - case 897: if (n[897]++ > 0) check ('a string 897'); break; - case 898: if (n[898]++ > 0) check ('a string 898'); break; - case 899: if (n[899]++ > 0) check ('a string 899'); break; - case 900: if (n[900]++ > 0) check ('a string 900'); break; - case 901: if (n[901]++ > 0) check ('a string 901'); break; - case 902: if (n[902]++ > 0) check ('a string 902'); break; - case 903: if (n[903]++ > 0) check ('a string 903'); break; - case 904: if (n[904]++ > 0) check ('a string 904'); break; - case 905: if (n[905]++ > 0) check ('a string 905'); break; - case 906: if (n[906]++ > 0) check ('a string 906'); break; - case 907: if (n[907]++ > 0) check ('a string 907'); break; - case 908: if (n[908]++ > 0) check ('a string 908'); break; - case 909: if (n[909]++ > 0) check ('a string 909'); break; - case 910: if (n[910]++ > 0) check ('a string 910'); break; - case 911: if (n[911]++ > 0) check ('a string 911'); break; - case 912: if (n[912]++ > 0) check ('a string 912'); break; - case 913: if (n[913]++ > 0) check ('a string 913'); break; - case 914: if (n[914]++ > 0) check ('a string 914'); break; - case 915: if (n[915]++ > 0) check ('a string 915'); break; - case 916: if (n[916]++ > 0) check ('a string 916'); break; - case 917: if (n[917]++ > 0) check ('a string 917'); break; - case 918: if (n[918]++ > 0) check ('a string 918'); break; - case 919: if (n[919]++ > 0) check ('a string 919'); break; - case 920: if (n[920]++ > 0) check ('a string 920'); break; - case 921: if (n[921]++ > 0) check ('a string 921'); break; - case 922: if (n[922]++ > 0) check ('a string 922'); break; - case 923: if (n[923]++ > 0) check ('a string 923'); break; - case 924: if (n[924]++ > 0) check ('a string 924'); break; - case 925: if (n[925]++ > 0) check ('a string 925'); break; - case 926: if (n[926]++ > 0) check ('a string 926'); break; - case 927: if (n[927]++ > 0) check ('a string 927'); break; - case 928: if (n[928]++ > 0) check ('a string 928'); break; - case 929: if (n[929]++ > 0) check ('a string 929'); break; - case 930: if (n[930]++ > 0) check ('a string 930'); break; - case 931: if (n[931]++ > 0) check ('a string 931'); break; - case 932: if (n[932]++ > 0) check ('a string 932'); break; - case 933: if (n[933]++ > 0) check ('a string 933'); break; - case 934: if (n[934]++ > 0) check ('a string 934'); break; - case 935: if (n[935]++ > 0) check ('a string 935'); break; - case 936: if (n[936]++ > 0) check ('a string 936'); break; - case 937: if (n[937]++ > 0) check ('a string 937'); break; - case 938: if (n[938]++ > 0) check ('a string 938'); break; - case 939: if (n[939]++ > 0) check ('a string 939'); break; - case 940: if (n[940]++ > 0) check ('a string 940'); break; - case 941: if (n[941]++ > 0) check ('a string 941'); break; - case 942: if (n[942]++ > 0) check ('a string 942'); break; - case 943: if (n[943]++ > 0) check ('a string 943'); break; - case 944: if (n[944]++ > 0) check ('a string 944'); break; - case 945: if (n[945]++ > 0) check ('a string 945'); break; - case 946: if (n[946]++ > 0) check ('a string 946'); break; - case 947: if (n[947]++ > 0) check ('a string 947'); break; - case 948: if (n[948]++ > 0) check ('a string 948'); break; - case 949: if (n[949]++ > 0) check ('a string 949'); break; - case 950: if (n[950]++ > 0) check ('a string 950'); break; - case 951: if (n[951]++ > 0) check ('a string 951'); break; - case 952: if (n[952]++ > 0) check ('a string 952'); break; - case 953: if (n[953]++ > 0) check ('a string 953'); break; - case 954: if (n[954]++ > 0) check ('a string 954'); break; - case 955: if (n[955]++ > 0) check ('a string 955'); break; - case 956: if (n[956]++ > 0) check ('a string 956'); break; - case 957: if (n[957]++ > 0) check ('a string 957'); break; - case 958: if (n[958]++ > 0) check ('a string 958'); break; - case 959: if (n[959]++ > 0) check ('a string 959'); break; - case 960: if (n[960]++ > 0) check ('a string 960'); break; - case 961: if (n[961]++ > 0) check ('a string 961'); break; - case 962: if (n[962]++ > 0) check ('a string 962'); break; - case 963: if (n[963]++ > 0) check ('a string 963'); break; - case 964: if (n[964]++ > 0) check ('a string 964'); break; - case 965: if (n[965]++ > 0) check ('a string 965'); break; - case 966: if (n[966]++ > 0) check ('a string 966'); break; - case 967: if (n[967]++ > 0) check ('a string 967'); break; - case 968: if (n[968]++ > 0) check ('a string 968'); break; - case 969: if (n[969]++ > 0) check ('a string 969'); break; - case 970: if (n[970]++ > 0) check ('a string 970'); break; - case 971: if (n[971]++ > 0) check ('a string 971'); break; - case 972: if (n[972]++ > 0) check ('a string 972'); break; - case 973: if (n[973]++ > 0) check ('a string 973'); break; - case 974: if (n[974]++ > 0) check ('a string 974'); break; - case 975: if (n[975]++ > 0) check ('a string 975'); break; - case 976: if (n[976]++ > 0) check ('a string 976'); break; - case 977: if (n[977]++ > 0) check ('a string 977'); break; - case 978: if (n[978]++ > 0) check ('a string 978'); break; - case 979: if (n[979]++ > 0) check ('a string 979'); break; - case 980: if (n[980]++ > 0) check ('a string 980'); break; - case 981: if (n[981]++ > 0) check ('a string 981'); break; - case 982: if (n[982]++ > 0) check ('a string 982'); break; - case 983: if (n[983]++ > 0) check ('a string 983'); break; - case 984: if (n[984]++ > 0) check ('a string 984'); break; - case 985: if (n[985]++ > 0) check ('a string 985'); break; - case 986: if (n[986]++ > 0) check ('a string 986'); break; - case 987: if (n[987]++ > 0) check ('a string 987'); break; - case 988: if (n[988]++ > 0) check ('a string 988'); break; - case 989: if (n[989]++ > 0) check ('a string 989'); break; - case 990: if (n[990]++ > 0) check ('a string 990'); break; - case 991: if (n[991]++ > 0) check ('a string 991'); break; - case 992: if (n[992]++ > 0) check ('a string 992'); break; - case 993: if (n[993]++ > 0) check ('a string 993'); break; - case 994: if (n[994]++ > 0) check ('a string 994'); break; - case 995: if (n[995]++ > 0) check ('a string 995'); break; - case 996: if (n[996]++ > 0) check ('a string 996'); break; - case 997: if (n[997]++ > 0) check ('a string 997'); break; - case 998: if (n[998]++ > 0) check ('a string 998'); break; - case 999: if (n[999]++ > 0) check ('a string 999'); break; - case 1000: if (n[1000]++ > 0) check ('a string 1000'); break; - case 1001: if (n[1001]++ > 0) check ('a string 1001'); break; - case 1002: if (n[1002]++ > 0) check ('a string 1002'); break; - case 1003: if (n[1003]++ > 0) check ('a string 1003'); break; - case 1004: if (n[1004]++ > 0) check ('a string 1004'); break; - case 1005: if (n[1005]++ > 0) check ('a string 1005'); break; - case 1006: if (n[1006]++ > 0) check ('a string 1006'); break; - case 1007: if (n[1007]++ > 0) check ('a string 1007'); break; - case 1008: if (n[1008]++ > 0) check ('a string 1008'); break; - case 1009: if (n[1009]++ > 0) check ('a string 1009'); break; - case 1010: if (n[1010]++ > 0) check ('a string 1010'); break; - case 1011: if (n[1011]++ > 0) check ('a string 1011'); break; - case 1012: if (n[1012]++ > 0) check ('a string 1012'); break; - case 1013: if (n[1013]++ > 0) check ('a string 1013'); break; - case 1014: if (n[1014]++ > 0) check ('a string 1014'); break; - case 1015: if (n[1015]++ > 0) check ('a string 1015'); break; - case 1016: if (n[1016]++ > 0) check ('a string 1016'); break; - case 1017: if (n[1017]++ > 0) check ('a string 1017'); break; - case 1018: if (n[1018]++ > 0) check ('a string 1018'); break; - case 1019: if (n[1019]++ > 0) check ('a string 1019'); break; - case 1020: if (n[1020]++ > 0) check ('a string 1020'); break; - case 1021: if (n[1021]++ > 0) check ('a string 1021'); break; - case 1022: if (n[1022]++ > 0) check ('a string 1022'); break; - case 1023: if (n[1023]++ > 0) check ('a string 1023'); break; - case 1024: if (n[1024]++ > 0) check ('a string 1024'); break; - case 1025: if (n[1025]++ > 0) check ('a string 1025'); break; - case 1026: if (n[1026]++ > 0) check ('a string 1026'); break; - case 1027: if (n[1027]++ > 0) check ('a string 1027'); break; - case 1028: if (n[1028]++ > 0) check ('a string 1028'); break; - case 1029: if (n[1029]++ > 0) check ('a string 1029'); break; - case 1030: if (n[1030]++ > 0) check ('a string 1030'); break; - case 1031: if (n[1031]++ > 0) check ('a string 1031'); break; - case 1032: if (n[1032]++ > 0) check ('a string 1032'); break; - case 1033: if (n[1033]++ > 0) check ('a string 1033'); break; - case 1034: if (n[1034]++ > 0) check ('a string 1034'); break; - case 1035: if (n[1035]++ > 0) check ('a string 1035'); break; - case 1036: if (n[1036]++ > 0) check ('a string 1036'); break; - case 1037: if (n[1037]++ > 0) check ('a string 1037'); break; - case 1038: if (n[1038]++ > 0) check ('a string 1038'); break; - case 1039: if (n[1039]++ > 0) check ('a string 1039'); break; - case 1040: if (n[1040]++ > 0) check ('a string 1040'); break; - case 1041: if (n[1041]++ > 0) check ('a string 1041'); break; - case 1042: if (n[1042]++ > 0) check ('a string 1042'); break; - case 1043: if (n[1043]++ > 0) check ('a string 1043'); break; - case 1044: if (n[1044]++ > 0) check ('a string 1044'); break; - case 1045: if (n[1045]++ > 0) check ('a string 1045'); break; - case 1046: if (n[1046]++ > 0) check ('a string 1046'); break; - case 1047: if (n[1047]++ > 0) check ('a string 1047'); break; - case 1048: if (n[1048]++ > 0) check ('a string 1048'); break; - case 1049: if (n[1049]++ > 0) check ('a string 1049'); break; - case 1050: if (n[1050]++ > 0) check ('a string 1050'); break; - case 1051: if (n[1051]++ > 0) check ('a string 1051'); break; - case 1052: if (n[1052]++ > 0) check ('a string 1052'); break; - case 1053: if (n[1053]++ > 0) check ('a string 1053'); break; - case 1054: if (n[1054]++ > 0) check ('a string 1054'); break; - case 1055: if (n[1055]++ > 0) check ('a string 1055'); break; - case 1056: if (n[1056]++ > 0) check ('a string 1056'); break; - case 1057: if (n[1057]++ > 0) check ('a string 1057'); break; - case 1058: if (n[1058]++ > 0) check ('a string 1058'); break; - case 1059: if (n[1059]++ > 0) check ('a string 1059'); break; - case 1060: if (n[1060]++ > 0) check ('a string 1060'); break; - case 1061: if (n[1061]++ > 0) check ('a string 1061'); break; - case 1062: if (n[1062]++ > 0) check ('a string 1062'); break; - case 1063: if (n[1063]++ > 0) check ('a string 1063'); break; - case 1064: if (n[1064]++ > 0) check ('a string 1064'); break; - case 1065: if (n[1065]++ > 0) check ('a string 1065'); break; - case 1066: if (n[1066]++ > 0) check ('a string 1066'); break; - case 1067: if (n[1067]++ > 0) check ('a string 1067'); break; - case 1068: if (n[1068]++ > 0) check ('a string 1068'); break; - case 1069: if (n[1069]++ > 0) check ('a string 1069'); break; - case 1070: if (n[1070]++ > 0) check ('a string 1070'); break; - case 1071: if (n[1071]++ > 0) check ('a string 1071'); break; - case 1072: if (n[1072]++ > 0) check ('a string 1072'); break; - case 1073: if (n[1073]++ > 0) check ('a string 1073'); break; - case 1074: if (n[1074]++ > 0) check ('a string 1074'); break; - case 1075: if (n[1075]++ > 0) check ('a string 1075'); break; - case 1076: if (n[1076]++ > 0) check ('a string 1076'); break; - case 1077: if (n[1077]++ > 0) check ('a string 1077'); break; - case 1078: if (n[1078]++ > 0) check ('a string 1078'); break; - case 1079: if (n[1079]++ > 0) check ('a string 1079'); break; - case 1080: if (n[1080]++ > 0) check ('a string 1080'); break; - case 1081: if (n[1081]++ > 0) check ('a string 1081'); break; - case 1082: if (n[1082]++ > 0) check ('a string 1082'); break; - case 1083: if (n[1083]++ > 0) check ('a string 1083'); break; - case 1084: if (n[1084]++ > 0) check ('a string 1084'); break; - case 1085: if (n[1085]++ > 0) check ('a string 1085'); break; - case 1086: if (n[1086]++ > 0) check ('a string 1086'); break; - case 1087: if (n[1087]++ > 0) check ('a string 1087'); break; - case 1088: if (n[1088]++ > 0) check ('a string 1088'); break; - case 1089: if (n[1089]++ > 0) check ('a string 1089'); break; - case 1090: if (n[1090]++ > 0) check ('a string 1090'); break; - case 1091: if (n[1091]++ > 0) check ('a string 1091'); break; - case 1092: if (n[1092]++ > 0) check ('a string 1092'); break; - case 1093: if (n[1093]++ > 0) check ('a string 1093'); break; - case 1094: if (n[1094]++ > 0) check ('a string 1094'); break; - case 1095: if (n[1095]++ > 0) check ('a string 1095'); break; - case 1096: if (n[1096]++ > 0) check ('a string 1096'); break; - case 1097: if (n[1097]++ > 0) check ('a string 1097'); break; - case 1098: if (n[1098]++ > 0) check ('a string 1098'); break; - case 1099: if (n[1099]++ > 0) check ('a string 1099'); break; - case 1100: if (n[1100]++ > 0) check ('a string 1100'); break; - case 1101: if (n[1101]++ > 0) check ('a string 1101'); break; - case 1102: if (n[1102]++ > 0) check ('a string 1102'); break; - case 1103: if (n[1103]++ > 0) check ('a string 1103'); break; - case 1104: if (n[1104]++ > 0) check ('a string 1104'); break; - case 1105: if (n[1105]++ > 0) check ('a string 1105'); break; - case 1106: if (n[1106]++ > 0) check ('a string 1106'); break; - case 1107: if (n[1107]++ > 0) check ('a string 1107'); break; - case 1108: if (n[1108]++ > 0) check ('a string 1108'); break; - case 1109: if (n[1109]++ > 0) check ('a string 1109'); break; - case 1110: if (n[1110]++ > 0) check ('a string 1110'); break; - case 1111: if (n[1111]++ > 0) check ('a string 1111'); break; - case 1112: if (n[1112]++ > 0) check ('a string 1112'); break; - case 1113: if (n[1113]++ > 0) check ('a string 1113'); break; - case 1114: if (n[1114]++ > 0) check ('a string 1114'); break; - case 1115: if (n[1115]++ > 0) check ('a string 1115'); break; - case 1116: if (n[1116]++ > 0) check ('a string 1116'); break; - case 1117: if (n[1117]++ > 0) check ('a string 1117'); break; - case 1118: if (n[1118]++ > 0) check ('a string 1118'); break; - case 1119: if (n[1119]++ > 0) check ('a string 1119'); break; - case 1120: if (n[1120]++ > 0) check ('a string 1120'); break; - case 1121: if (n[1121]++ > 0) check ('a string 1121'); break; - case 1122: if (n[1122]++ > 0) check ('a string 1122'); break; - case 1123: if (n[1123]++ > 0) check ('a string 1123'); break; - case 1124: if (n[1124]++ > 0) check ('a string 1124'); break; - case 1125: if (n[1125]++ > 0) check ('a string 1125'); break; - case 1126: if (n[1126]++ > 0) check ('a string 1126'); break; - case 1127: if (n[1127]++ > 0) check ('a string 1127'); break; - case 1128: if (n[1128]++ > 0) check ('a string 1128'); break; - case 1129: if (n[1129]++ > 0) check ('a string 1129'); break; - case 1130: if (n[1130]++ > 0) check ('a string 1130'); break; - case 1131: if (n[1131]++ > 0) check ('a string 1131'); break; - case 1132: if (n[1132]++ > 0) check ('a string 1132'); break; - case 1133: if (n[1133]++ > 0) check ('a string 1133'); break; - case 1134: if (n[1134]++ > 0) check ('a string 1134'); break; - case 1135: if (n[1135]++ > 0) check ('a string 1135'); break; - case 1136: if (n[1136]++ > 0) check ('a string 1136'); break; - case 1137: if (n[1137]++ > 0) check ('a string 1137'); break; - case 1138: if (n[1138]++ > 0) check ('a string 1138'); break; - case 1139: if (n[1139]++ > 0) check ('a string 1139'); break; - case 1140: if (n[1140]++ > 0) check ('a string 1140'); break; - case 1141: if (n[1141]++ > 0) check ('a string 1141'); break; - case 1142: if (n[1142]++ > 0) check ('a string 1142'); break; - case 1143: if (n[1143]++ > 0) check ('a string 1143'); break; - case 1144: if (n[1144]++ > 0) check ('a string 1144'); break; - case 1145: if (n[1145]++ > 0) check ('a string 1145'); break; - case 1146: if (n[1146]++ > 0) check ('a string 1146'); break; - case 1147: if (n[1147]++ > 0) check ('a string 1147'); break; - case 1148: if (n[1148]++ > 0) check ('a string 1148'); break; - case 1149: if (n[1149]++ > 0) check ('a string 1149'); break; - case 1150: if (n[1150]++ > 0) check ('a string 1150'); break; - case 1151: if (n[1151]++ > 0) check ('a string 1151'); break; - case 1152: if (n[1152]++ > 0) check ('a string 1152'); break; - case 1153: if (n[1153]++ > 0) check ('a string 1153'); break; - case 1154: if (n[1154]++ > 0) check ('a string 1154'); break; - case 1155: if (n[1155]++ > 0) check ('a string 1155'); break; - case 1156: if (n[1156]++ > 0) check ('a string 1156'); break; - case 1157: if (n[1157]++ > 0) check ('a string 1157'); break; - case 1158: if (n[1158]++ > 0) check ('a string 1158'); break; - case 1159: if (n[1159]++ > 0) check ('a string 1159'); break; - case 1160: if (n[1160]++ > 0) check ('a string 1160'); break; - case 1161: if (n[1161]++ > 0) check ('a string 1161'); break; - case 1162: if (n[1162]++ > 0) check ('a string 1162'); break; - case 1163: if (n[1163]++ > 0) check ('a string 1163'); break; - case 1164: if (n[1164]++ > 0) check ('a string 1164'); break; - case 1165: if (n[1165]++ > 0) check ('a string 1165'); break; - case 1166: if (n[1166]++ > 0) check ('a string 1166'); break; - case 1167: if (n[1167]++ > 0) check ('a string 1167'); break; - case 1168: if (n[1168]++ > 0) check ('a string 1168'); break; - case 1169: if (n[1169]++ > 0) check ('a string 1169'); break; - case 1170: if (n[1170]++ > 0) check ('a string 1170'); break; - case 1171: if (n[1171]++ > 0) check ('a string 1171'); break; - case 1172: if (n[1172]++ > 0) check ('a string 1172'); break; - case 1173: if (n[1173]++ > 0) check ('a string 1173'); break; - case 1174: if (n[1174]++ > 0) check ('a string 1174'); break; - case 1175: if (n[1175]++ > 0) check ('a string 1175'); break; - case 1176: if (n[1176]++ > 0) check ('a string 1176'); break; - case 1177: if (n[1177]++ > 0) check ('a string 1177'); break; - case 1178: if (n[1178]++ > 0) check ('a string 1178'); break; - case 1179: if (n[1179]++ > 0) check ('a string 1179'); break; - case 1180: if (n[1180]++ > 0) check ('a string 1180'); break; - case 1181: if (n[1181]++ > 0) check ('a string 1181'); break; - case 1182: if (n[1182]++ > 0) check ('a string 1182'); break; - case 1183: if (n[1183]++ > 0) check ('a string 1183'); break; - case 1184: if (n[1184]++ > 0) check ('a string 1184'); break; - case 1185: if (n[1185]++ > 0) check ('a string 1185'); break; - case 1186: if (n[1186]++ > 0) check ('a string 1186'); break; - case 1187: if (n[1187]++ > 0) check ('a string 1187'); break; - case 1188: if (n[1188]++ > 0) check ('a string 1188'); break; - case 1189: if (n[1189]++ > 0) check ('a string 1189'); break; - case 1190: if (n[1190]++ > 0) check ('a string 1190'); break; - case 1191: if (n[1191]++ > 0) check ('a string 1191'); break; - case 1192: if (n[1192]++ > 0) check ('a string 1192'); break; - case 1193: if (n[1193]++ > 0) check ('a string 1193'); break; - case 1194: if (n[1194]++ > 0) check ('a string 1194'); break; - case 1195: if (n[1195]++ > 0) check ('a string 1195'); break; - case 1196: if (n[1196]++ > 0) check ('a string 1196'); break; - case 1197: if (n[1197]++ > 0) check ('a string 1197'); break; - case 1198: if (n[1198]++ > 0) check ('a string 1198'); break; - case 1199: if (n[1199]++ > 0) check ('a string 1199'); break; - case 1200: if (n[1200]++ > 0) check ('a string 1200'); break; - case 1201: if (n[1201]++ > 0) check ('a string 1201'); break; - case 1202: if (n[1202]++ > 0) check ('a string 1202'); break; - case 1203: if (n[1203]++ > 0) check ('a string 1203'); break; - case 1204: if (n[1204]++ > 0) check ('a string 1204'); break; - case 1205: if (n[1205]++ > 0) check ('a string 1205'); break; - case 1206: if (n[1206]++ > 0) check ('a string 1206'); break; - case 1207: if (n[1207]++ > 0) check ('a string 1207'); break; - case 1208: if (n[1208]++ > 0) check ('a string 1208'); break; - case 1209: if (n[1209]++ > 0) check ('a string 1209'); break; - case 1210: if (n[1210]++ > 0) check ('a string 1210'); break; - case 1211: if (n[1211]++ > 0) check ('a string 1211'); break; - case 1212: if (n[1212]++ > 0) check ('a string 1212'); break; - case 1213: if (n[1213]++ > 0) check ('a string 1213'); break; - case 1214: if (n[1214]++ > 0) check ('a string 1214'); break; - case 1215: if (n[1215]++ > 0) check ('a string 1215'); break; - case 1216: if (n[1216]++ > 0) check ('a string 1216'); break; - case 1217: if (n[1217]++ > 0) check ('a string 1217'); break; - case 1218: if (n[1218]++ > 0) check ('a string 1218'); break; - case 1219: if (n[1219]++ > 0) check ('a string 1219'); break; - case 1220: if (n[1220]++ > 0) check ('a string 1220'); break; - case 1221: if (n[1221]++ > 0) check ('a string 1221'); break; - case 1222: if (n[1222]++ > 0) check ('a string 1222'); break; - case 1223: if (n[1223]++ > 0) check ('a string 1223'); break; - case 1224: if (n[1224]++ > 0) check ('a string 1224'); break; - case 1225: if (n[1225]++ > 0) check ('a string 1225'); break; - case 1226: if (n[1226]++ > 0) check ('a string 1226'); break; - case 1227: if (n[1227]++ > 0) check ('a string 1227'); break; - case 1228: if (n[1228]++ > 0) check ('a string 1228'); break; - case 1229: if (n[1229]++ > 0) check ('a string 1229'); break; - case 1230: if (n[1230]++ > 0) check ('a string 1230'); break; - case 1231: if (n[1231]++ > 0) check ('a string 1231'); break; - case 1232: if (n[1232]++ > 0) check ('a string 1232'); break; - case 1233: if (n[1233]++ > 0) check ('a string 1233'); break; - case 1234: if (n[1234]++ > 0) check ('a string 1234'); break; - case 1235: if (n[1235]++ > 0) check ('a string 1235'); break; - case 1236: if (n[1236]++ > 0) check ('a string 1236'); break; - case 1237: if (n[1237]++ > 0) check ('a string 1237'); break; - case 1238: if (n[1238]++ > 0) check ('a string 1238'); break; - case 1239: if (n[1239]++ > 0) check ('a string 1239'); break; - case 1240: if (n[1240]++ > 0) check ('a string 1240'); break; - case 1241: if (n[1241]++ > 0) check ('a string 1241'); break; - case 1242: if (n[1242]++ > 0) check ('a string 1242'); break; - case 1243: if (n[1243]++ > 0) check ('a string 1243'); break; - case 1244: if (n[1244]++ > 0) check ('a string 1244'); break; - case 1245: if (n[1245]++ > 0) check ('a string 1245'); break; - case 1246: if (n[1246]++ > 0) check ('a string 1246'); break; - case 1247: if (n[1247]++ > 0) check ('a string 1247'); break; - case 1248: if (n[1248]++ > 0) check ('a string 1248'); break; - case 1249: if (n[1249]++ > 0) check ('a string 1249'); break; - case 1250: if (n[1250]++ > 0) check ('a string 1250'); break; - case 1251: if (n[1251]++ > 0) check ('a string 1251'); break; - case 1252: if (n[1252]++ > 0) check ('a string 1252'); break; - case 1253: if (n[1253]++ > 0) check ('a string 1253'); break; - case 1254: if (n[1254]++ > 0) check ('a string 1254'); break; - case 1255: if (n[1255]++ > 0) check ('a string 1255'); break; - case 1256: if (n[1256]++ > 0) check ('a string 1256'); break; - case 1257: if (n[1257]++ > 0) check ('a string 1257'); break; - case 1258: if (n[1258]++ > 0) check ('a string 1258'); break; - case 1259: if (n[1259]++ > 0) check ('a string 1259'); break; - case 1260: if (n[1260]++ > 0) check ('a string 1260'); break; - case 1261: if (n[1261]++ > 0) check ('a string 1261'); break; - case 1262: if (n[1262]++ > 0) check ('a string 1262'); break; - case 1263: if (n[1263]++ > 0) check ('a string 1263'); break; - case 1264: if (n[1264]++ > 0) check ('a string 1264'); break; - case 1265: if (n[1265]++ > 0) check ('a string 1265'); break; - case 1266: if (n[1266]++ > 0) check ('a string 1266'); break; - case 1267: if (n[1267]++ > 0) check ('a string 1267'); break; - case 1268: if (n[1268]++ > 0) check ('a string 1268'); break; - case 1269: if (n[1269]++ > 0) check ('a string 1269'); break; - case 1270: if (n[1270]++ > 0) check ('a string 1270'); break; - case 1271: if (n[1271]++ > 0) check ('a string 1271'); break; - case 1272: if (n[1272]++ > 0) check ('a string 1272'); break; - case 1273: if (n[1273]++ > 0) check ('a string 1273'); break; - case 1274: if (n[1274]++ > 0) check ('a string 1274'); break; - case 1275: if (n[1275]++ > 0) check ('a string 1275'); break; - case 1276: if (n[1276]++ > 0) check ('a string 1276'); break; - case 1277: if (n[1277]++ > 0) check ('a string 1277'); break; - case 1278: if (n[1278]++ > 0) check ('a string 1278'); break; - case 1279: if (n[1279]++ > 0) check ('a string 1279'); break; - case 1280: if (n[1280]++ > 0) check ('a string 1280'); break; - case 1281: if (n[1281]++ > 0) check ('a string 1281'); break; - case 1282: if (n[1282]++ > 0) check ('a string 1282'); break; - case 1283: if (n[1283]++ > 0) check ('a string 1283'); break; - case 1284: if (n[1284]++ > 0) check ('a string 1284'); break; - case 1285: if (n[1285]++ > 0) check ('a string 1285'); break; - case 1286: if (n[1286]++ > 0) check ('a string 1286'); break; - case 1287: if (n[1287]++ > 0) check ('a string 1287'); break; - case 1288: if (n[1288]++ > 0) check ('a string 1288'); break; - case 1289: if (n[1289]++ > 0) check ('a string 1289'); break; - case 1290: if (n[1290]++ > 0) check ('a string 1290'); break; - case 1291: if (n[1291]++ > 0) check ('a string 1291'); break; - case 1292: if (n[1292]++ > 0) check ('a string 1292'); break; - case 1293: if (n[1293]++ > 0) check ('a string 1293'); break; - case 1294: if (n[1294]++ > 0) check ('a string 1294'); break; - case 1295: if (n[1295]++ > 0) check ('a string 1295'); break; - case 1296: if (n[1296]++ > 0) check ('a string 1296'); break; - case 1297: if (n[1297]++ > 0) check ('a string 1297'); break; - case 1298: if (n[1298]++ > 0) check ('a string 1298'); break; - case 1299: if (n[1299]++ > 0) check ('a string 1299'); break; - case 1300: if (n[1300]++ > 0) check ('a string 1300'); break; - case 1301: if (n[1301]++ > 0) check ('a string 1301'); break; - case 1302: if (n[1302]++ > 0) check ('a string 1302'); break; - case 1303: if (n[1303]++ > 0) check ('a string 1303'); break; - case 1304: if (n[1304]++ > 0) check ('a string 1304'); break; - case 1305: if (n[1305]++ > 0) check ('a string 1305'); break; - case 1306: if (n[1306]++ > 0) check ('a string 1306'); break; - case 1307: if (n[1307]++ > 0) check ('a string 1307'); break; - case 1308: if (n[1308]++ > 0) check ('a string 1308'); break; - case 1309: if (n[1309]++ > 0) check ('a string 1309'); break; - case 1310: if (n[1310]++ > 0) check ('a string 1310'); break; - case 1311: if (n[1311]++ > 0) check ('a string 1311'); break; - case 1312: if (n[1312]++ > 0) check ('a string 1312'); break; - case 1313: if (n[1313]++ > 0) check ('a string 1313'); break; - case 1314: if (n[1314]++ > 0) check ('a string 1314'); break; - case 1315: if (n[1315]++ > 0) check ('a string 1315'); break; - case 1316: if (n[1316]++ > 0) check ('a string 1316'); break; - case 1317: if (n[1317]++ > 0) check ('a string 1317'); break; - case 1318: if (n[1318]++ > 0) check ('a string 1318'); break; - case 1319: if (n[1319]++ > 0) check ('a string 1319'); break; - case 1320: if (n[1320]++ > 0) check ('a string 1320'); break; - case 1321: if (n[1321]++ > 0) check ('a string 1321'); break; - case 1322: if (n[1322]++ > 0) check ('a string 1322'); break; - case 1323: if (n[1323]++ > 0) check ('a string 1323'); break; - case 1324: if (n[1324]++ > 0) check ('a string 1324'); break; - case 1325: if (n[1325]++ > 0) check ('a string 1325'); break; - case 1326: if (n[1326]++ > 0) check ('a string 1326'); break; - case 1327: if (n[1327]++ > 0) check ('a string 1327'); break; - case 1328: if (n[1328]++ > 0) check ('a string 1328'); break; - case 1329: if (n[1329]++ > 0) check ('a string 1329'); break; - case 1330: if (n[1330]++ > 0) check ('a string 1330'); break; - case 1331: if (n[1331]++ > 0) check ('a string 1331'); break; - case 1332: if (n[1332]++ > 0) check ('a string 1332'); break; - case 1333: if (n[1333]++ > 0) check ('a string 1333'); break; - case 1334: if (n[1334]++ > 0) check ('a string 1334'); break; - case 1335: if (n[1335]++ > 0) check ('a string 1335'); break; - case 1336: if (n[1336]++ > 0) check ('a string 1336'); break; - case 1337: if (n[1337]++ > 0) check ('a string 1337'); break; - case 1338: if (n[1338]++ > 0) check ('a string 1338'); break; - case 1339: if (n[1339]++ > 0) check ('a string 1339'); break; - case 1340: if (n[1340]++ > 0) check ('a string 1340'); break; - case 1341: if (n[1341]++ > 0) check ('a string 1341'); break; - case 1342: if (n[1342]++ > 0) check ('a string 1342'); break; - case 1343: if (n[1343]++ > 0) check ('a string 1343'); break; - case 1344: if (n[1344]++ > 0) check ('a string 1344'); break; - case 1345: if (n[1345]++ > 0) check ('a string 1345'); break; - case 1346: if (n[1346]++ > 0) check ('a string 1346'); break; - case 1347: if (n[1347]++ > 0) check ('a string 1347'); break; - case 1348: if (n[1348]++ > 0) check ('a string 1348'); break; - case 1349: if (n[1349]++ > 0) check ('a string 1349'); break; - case 1350: if (n[1350]++ > 0) check ('a string 1350'); break; - case 1351: if (n[1351]++ > 0) check ('a string 1351'); break; - case 1352: if (n[1352]++ > 0) check ('a string 1352'); break; - case 1353: if (n[1353]++ > 0) check ('a string 1353'); break; - case 1354: if (n[1354]++ > 0) check ('a string 1354'); break; - case 1355: if (n[1355]++ > 0) check ('a string 1355'); break; - case 1356: if (n[1356]++ > 0) check ('a string 1356'); break; - case 1357: if (n[1357]++ > 0) check ('a string 1357'); break; - case 1358: if (n[1358]++ > 0) check ('a string 1358'); break; - case 1359: if (n[1359]++ > 0) check ('a string 1359'); break; - case 1360: if (n[1360]++ > 0) check ('a string 1360'); break; - case 1361: if (n[1361]++ > 0) check ('a string 1361'); break; - case 1362: if (n[1362]++ > 0) check ('a string 1362'); break; - case 1363: if (n[1363]++ > 0) check ('a string 1363'); break; - case 1364: if (n[1364]++ > 0) check ('a string 1364'); break; - case 1365: if (n[1365]++ > 0) check ('a string 1365'); break; - case 1366: if (n[1366]++ > 0) check ('a string 1366'); break; - case 1367: if (n[1367]++ > 0) check ('a string 1367'); break; - case 1368: if (n[1368]++ > 0) check ('a string 1368'); break; - case 1369: if (n[1369]++ > 0) check ('a string 1369'); break; - case 1370: if (n[1370]++ > 0) check ('a string 1370'); break; - case 1371: if (n[1371]++ > 0) check ('a string 1371'); break; - case 1372: if (n[1372]++ > 0) check ('a string 1372'); break; - case 1373: if (n[1373]++ > 0) check ('a string 1373'); break; - case 1374: if (n[1374]++ > 0) check ('a string 1374'); break; - case 1375: if (n[1375]++ > 0) check ('a string 1375'); break; - case 1376: if (n[1376]++ > 0) check ('a string 1376'); break; - case 1377: if (n[1377]++ > 0) check ('a string 1377'); break; - case 1378: if (n[1378]++ > 0) check ('a string 1378'); break; - case 1379: if (n[1379]++ > 0) check ('a string 1379'); break; - case 1380: if (n[1380]++ > 0) check ('a string 1380'); break; - case 1381: if (n[1381]++ > 0) check ('a string 1381'); break; - case 1382: if (n[1382]++ > 0) check ('a string 1382'); break; - case 1383: if (n[1383]++ > 0) check ('a string 1383'); break; - case 1384: if (n[1384]++ > 0) check ('a string 1384'); break; - case 1385: if (n[1385]++ > 0) check ('a string 1385'); break; - case 1386: if (n[1386]++ > 0) check ('a string 1386'); break; - case 1387: if (n[1387]++ > 0) check ('a string 1387'); break; - case 1388: if (n[1388]++ > 0) check ('a string 1388'); break; - case 1389: if (n[1389]++ > 0) check ('a string 1389'); break; - case 1390: if (n[1390]++ > 0) check ('a string 1390'); break; - case 1391: if (n[1391]++ > 0) check ('a string 1391'); break; - case 1392: if (n[1392]++ > 0) check ('a string 1392'); break; - case 1393: if (n[1393]++ > 0) check ('a string 1393'); break; - case 1394: if (n[1394]++ > 0) check ('a string 1394'); break; - case 1395: if (n[1395]++ > 0) check ('a string 1395'); break; - case 1396: if (n[1396]++ > 0) check ('a string 1396'); break; - case 1397: if (n[1397]++ > 0) check ('a string 1397'); break; - case 1398: if (n[1398]++ > 0) check ('a string 1398'); break; - case 1399: if (n[1399]++ > 0) check ('a string 1399'); break; - case 1400: if (n[1400]++ > 0) check ('a string 1400'); break; - case 1401: if (n[1401]++ > 0) check ('a string 1401'); break; - case 1402: if (n[1402]++ > 0) check ('a string 1402'); break; - case 1403: if (n[1403]++ > 0) check ('a string 1403'); break; - case 1404: if (n[1404]++ > 0) check ('a string 1404'); break; - case 1405: if (n[1405]++ > 0) check ('a string 1405'); break; - case 1406: if (n[1406]++ > 0) check ('a string 1406'); break; - case 1407: if (n[1407]++ > 0) check ('a string 1407'); break; - case 1408: if (n[1408]++ > 0) check ('a string 1408'); break; - case 1409: if (n[1409]++ > 0) check ('a string 1409'); break; - case 1410: if (n[1410]++ > 0) check ('a string 1410'); break; - case 1411: if (n[1411]++ > 0) check ('a string 1411'); break; - case 1412: if (n[1412]++ > 0) check ('a string 1412'); break; - case 1413: if (n[1413]++ > 0) check ('a string 1413'); break; - case 1414: if (n[1414]++ > 0) check ('a string 1414'); break; - case 1415: if (n[1415]++ > 0) check ('a string 1415'); break; - case 1416: if (n[1416]++ > 0) check ('a string 1416'); break; - case 1417: if (n[1417]++ > 0) check ('a string 1417'); break; - case 1418: if (n[1418]++ > 0) check ('a string 1418'); break; - case 1419: if (n[1419]++ > 0) check ('a string 1419'); break; - case 1420: if (n[1420]++ > 0) check ('a string 1420'); break; - case 1421: if (n[1421]++ > 0) check ('a string 1421'); break; - case 1422: if (n[1422]++ > 0) check ('a string 1422'); break; - case 1423: if (n[1423]++ > 0) check ('a string 1423'); break; - case 1424: if (n[1424]++ > 0) check ('a string 1424'); break; - case 1425: if (n[1425]++ > 0) check ('a string 1425'); break; - case 1426: if (n[1426]++ > 0) check ('a string 1426'); break; - case 1427: if (n[1427]++ > 0) check ('a string 1427'); break; - case 1428: if (n[1428]++ > 0) check ('a string 1428'); break; - case 1429: if (n[1429]++ > 0) check ('a string 1429'); break; - case 1430: if (n[1430]++ > 0) check ('a string 1430'); break; - case 1431: if (n[1431]++ > 0) check ('a string 1431'); break; - case 1432: if (n[1432]++ > 0) check ('a string 1432'); break; - case 1433: if (n[1433]++ > 0) check ('a string 1433'); break; - case 1434: if (n[1434]++ > 0) check ('a string 1434'); break; - case 1435: if (n[1435]++ > 0) check ('a string 1435'); break; - case 1436: if (n[1436]++ > 0) check ('a string 1436'); break; - case 1437: if (n[1437]++ > 0) check ('a string 1437'); break; - case 1438: if (n[1438]++ > 0) check ('a string 1438'); break; - case 1439: if (n[1439]++ > 0) check ('a string 1439'); break; - case 1440: if (n[1440]++ > 0) check ('a string 1440'); break; - case 1441: if (n[1441]++ > 0) check ('a string 1441'); break; - case 1442: if (n[1442]++ > 0) check ('a string 1442'); break; - case 1443: if (n[1443]++ > 0) check ('a string 1443'); break; - case 1444: if (n[1444]++ > 0) check ('a string 1444'); break; - case 1445: if (n[1445]++ > 0) check ('a string 1445'); break; - case 1446: if (n[1446]++ > 0) check ('a string 1446'); break; - case 1447: if (n[1447]++ > 0) check ('a string 1447'); break; - case 1448: if (n[1448]++ > 0) check ('a string 1448'); break; - case 1449: if (n[1449]++ > 0) check ('a string 1449'); break; - case 1450: if (n[1450]++ > 0) check ('a string 1450'); break; - case 1451: if (n[1451]++ > 0) check ('a string 1451'); break; - case 1452: if (n[1452]++ > 0) check ('a string 1452'); break; - case 1453: if (n[1453]++ > 0) check ('a string 1453'); break; - case 1454: if (n[1454]++ > 0) check ('a string 1454'); break; - case 1455: if (n[1455]++ > 0) check ('a string 1455'); break; - case 1456: if (n[1456]++ > 0) check ('a string 1456'); break; - case 1457: if (n[1457]++ > 0) check ('a string 1457'); break; - case 1458: if (n[1458]++ > 0) check ('a string 1458'); break; - case 1459: if (n[1459]++ > 0) check ('a string 1459'); break; - case 1460: if (n[1460]++ > 0) check ('a string 1460'); break; - case 1461: if (n[1461]++ > 0) check ('a string 1461'); break; - case 1462: if (n[1462]++ > 0) check ('a string 1462'); break; - case 1463: if (n[1463]++ > 0) check ('a string 1463'); break; - case 1464: if (n[1464]++ > 0) check ('a string 1464'); break; - case 1465: if (n[1465]++ > 0) check ('a string 1465'); break; - case 1466: if (n[1466]++ > 0) check ('a string 1466'); break; - case 1467: if (n[1467]++ > 0) check ('a string 1467'); break; - case 1468: if (n[1468]++ > 0) check ('a string 1468'); break; - case 1469: if (n[1469]++ > 0) check ('a string 1469'); break; - case 1470: if (n[1470]++ > 0) check ('a string 1470'); break; - case 1471: if (n[1471]++ > 0) check ('a string 1471'); break; - case 1472: if (n[1472]++ > 0) check ('a string 1472'); break; - case 1473: if (n[1473]++ > 0) check ('a string 1473'); break; - case 1474: if (n[1474]++ > 0) check ('a string 1474'); break; - case 1475: if (n[1475]++ > 0) check ('a string 1475'); break; - case 1476: if (n[1476]++ > 0) check ('a string 1476'); break; - case 1477: if (n[1477]++ > 0) check ('a string 1477'); break; - case 1478: if (n[1478]++ > 0) check ('a string 1478'); break; - case 1479: if (n[1479]++ > 0) check ('a string 1479'); break; - case 1480: if (n[1480]++ > 0) check ('a string 1480'); break; - case 1481: if (n[1481]++ > 0) check ('a string 1481'); break; - case 1482: if (n[1482]++ > 0) check ('a string 1482'); break; - case 1483: if (n[1483]++ > 0) check ('a string 1483'); break; - case 1484: if (n[1484]++ > 0) check ('a string 1484'); break; - case 1485: if (n[1485]++ > 0) check ('a string 1485'); break; - case 1486: if (n[1486]++ > 0) check ('a string 1486'); break; - case 1487: if (n[1487]++ > 0) check ('a string 1487'); break; - case 1488: if (n[1488]++ > 0) check ('a string 1488'); break; - case 1489: if (n[1489]++ > 0) check ('a string 1489'); break; - case 1490: if (n[1490]++ > 0) check ('a string 1490'); break; - case 1491: if (n[1491]++ > 0) check ('a string 1491'); break; - case 1492: if (n[1492]++ > 0) check ('a string 1492'); break; - case 1493: if (n[1493]++ > 0) check ('a string 1493'); break; - case 1494: if (n[1494]++ > 0) check ('a string 1494'); break; - case 1495: if (n[1495]++ > 0) check ('a string 1495'); break; - case 1496: if (n[1496]++ > 0) check ('a string 1496'); break; - case 1497: if (n[1497]++ > 0) check ('a string 1497'); break; - case 1498: if (n[1498]++ > 0) check ('a string 1498'); break; - case 1499: if (n[1499]++ > 0) check ('a string 1499'); break; - case 1500: if (n[1500]++ > 0) check ('a string 1500'); break; - case 1501: if (n[1501]++ > 0) check ('a string 1501'); break; - case 1502: if (n[1502]++ > 0) check ('a string 1502'); break; - case 1503: if (n[1503]++ > 0) check ('a string 1503'); break; - case 1504: if (n[1504]++ > 0) check ('a string 1504'); break; - case 1505: if (n[1505]++ > 0) check ('a string 1505'); break; - case 1506: if (n[1506]++ > 0) check ('a string 1506'); break; - case 1507: if (n[1507]++ > 0) check ('a string 1507'); break; - case 1508: if (n[1508]++ > 0) check ('a string 1508'); break; - case 1509: if (n[1509]++ > 0) check ('a string 1509'); break; - case 1510: if (n[1510]++ > 0) check ('a string 1510'); break; - case 1511: if (n[1511]++ > 0) check ('a string 1511'); break; - case 1512: if (n[1512]++ > 0) check ('a string 1512'); break; - case 1513: if (n[1513]++ > 0) check ('a string 1513'); break; - case 1514: if (n[1514]++ > 0) check ('a string 1514'); break; - case 1515: if (n[1515]++ > 0) check ('a string 1515'); break; - case 1516: if (n[1516]++ > 0) check ('a string 1516'); break; - case 1517: if (n[1517]++ > 0) check ('a string 1517'); break; - case 1518: if (n[1518]++ > 0) check ('a string 1518'); break; - case 1519: if (n[1519]++ > 0) check ('a string 1519'); break; - case 1520: if (n[1520]++ > 0) check ('a string 1520'); break; - case 1521: if (n[1521]++ > 0) check ('a string 1521'); break; - case 1522: if (n[1522]++ > 0) check ('a string 1522'); break; - case 1523: if (n[1523]++ > 0) check ('a string 1523'); break; - case 1524: if (n[1524]++ > 0) check ('a string 1524'); break; - case 1525: if (n[1525]++ > 0) check ('a string 1525'); break; - case 1526: if (n[1526]++ > 0) check ('a string 1526'); break; - case 1527: if (n[1527]++ > 0) check ('a string 1527'); break; - case 1528: if (n[1528]++ > 0) check ('a string 1528'); break; - case 1529: if (n[1529]++ > 0) check ('a string 1529'); break; - case 1530: if (n[1530]++ > 0) check ('a string 1530'); break; - case 1531: if (n[1531]++ > 0) check ('a string 1531'); break; - case 1532: if (n[1532]++ > 0) check ('a string 1532'); break; - case 1533: if (n[1533]++ > 0) check ('a string 1533'); break; - case 1534: if (n[1534]++ > 0) check ('a string 1534'); break; - case 1535: if (n[1535]++ > 0) check ('a string 1535'); break; - case 1536: if (n[1536]++ > 0) check ('a string 1536'); break; - case 1537: if (n[1537]++ > 0) check ('a string 1537'); break; - case 1538: if (n[1538]++ > 0) check ('a string 1538'); break; - case 1539: if (n[1539]++ > 0) check ('a string 1539'); break; - case 1540: if (n[1540]++ > 0) check ('a string 1540'); break; - case 1541: if (n[1541]++ > 0) check ('a string 1541'); break; - case 1542: if (n[1542]++ > 0) check ('a string 1542'); break; - case 1543: if (n[1543]++ > 0) check ('a string 1543'); break; - case 1544: if (n[1544]++ > 0) check ('a string 1544'); break; - case 1545: if (n[1545]++ > 0) check ('a string 1545'); break; - case 1546: if (n[1546]++ > 0) check ('a string 1546'); break; - case 1547: if (n[1547]++ > 0) check ('a string 1547'); break; - case 1548: if (n[1548]++ > 0) check ('a string 1548'); break; - case 1549: if (n[1549]++ > 0) check ('a string 1549'); break; - case 1550: if (n[1550]++ > 0) check ('a string 1550'); break; - case 1551: if (n[1551]++ > 0) check ('a string 1551'); break; - case 1552: if (n[1552]++ > 0) check ('a string 1552'); break; - case 1553: if (n[1553]++ > 0) check ('a string 1553'); break; - case 1554: if (n[1554]++ > 0) check ('a string 1554'); break; - case 1555: if (n[1555]++ > 0) check ('a string 1555'); break; - case 1556: if (n[1556]++ > 0) check ('a string 1556'); break; - case 1557: if (n[1557]++ > 0) check ('a string 1557'); break; - case 1558: if (n[1558]++ > 0) check ('a string 1558'); break; - case 1559: if (n[1559]++ > 0) check ('a string 1559'); break; - case 1560: if (n[1560]++ > 0) check ('a string 1560'); break; - case 1561: if (n[1561]++ > 0) check ('a string 1561'); break; - case 1562: if (n[1562]++ > 0) check ('a string 1562'); break; - case 1563: if (n[1563]++ > 0) check ('a string 1563'); break; - case 1564: if (n[1564]++ > 0) check ('a string 1564'); break; - case 1565: if (n[1565]++ > 0) check ('a string 1565'); break; - case 1566: if (n[1566]++ > 0) check ('a string 1566'); break; - case 1567: if (n[1567]++ > 0) check ('a string 1567'); break; - case 1568: if (n[1568]++ > 0) check ('a string 1568'); break; - case 1569: if (n[1569]++ > 0) check ('a string 1569'); break; - case 1570: if (n[1570]++ > 0) check ('a string 1570'); break; - case 1571: if (n[1571]++ > 0) check ('a string 1571'); break; - case 1572: if (n[1572]++ > 0) check ('a string 1572'); break; - case 1573: if (n[1573]++ > 0) check ('a string 1573'); break; - case 1574: if (n[1574]++ > 0) check ('a string 1574'); break; - case 1575: if (n[1575]++ > 0) check ('a string 1575'); break; - case 1576: if (n[1576]++ > 0) check ('a string 1576'); break; - case 1577: if (n[1577]++ > 0) check ('a string 1577'); break; - case 1578: if (n[1578]++ > 0) check ('a string 1578'); break; - case 1579: if (n[1579]++ > 0) check ('a string 1579'); break; - case 1580: if (n[1580]++ > 0) check ('a string 1580'); break; - case 1581: if (n[1581]++ > 0) check ('a string 1581'); break; - case 1582: if (n[1582]++ > 0) check ('a string 1582'); break; - case 1583: if (n[1583]++ > 0) check ('a string 1583'); break; - case 1584: if (n[1584]++ > 0) check ('a string 1584'); break; - case 1585: if (n[1585]++ > 0) check ('a string 1585'); break; - case 1586: if (n[1586]++ > 0) check ('a string 1586'); break; - case 1587: if (n[1587]++ > 0) check ('a string 1587'); break; - case 1588: if (n[1588]++ > 0) check ('a string 1588'); break; - case 1589: if (n[1589]++ > 0) check ('a string 1589'); break; - case 1590: if (n[1590]++ > 0) check ('a string 1590'); break; - case 1591: if (n[1591]++ > 0) check ('a string 1591'); break; - case 1592: if (n[1592]++ > 0) check ('a string 1592'); break; - case 1593: if (n[1593]++ > 0) check ('a string 1593'); break; - case 1594: if (n[1594]++ > 0) check ('a string 1594'); break; - case 1595: if (n[1595]++ > 0) check ('a string 1595'); break; - case 1596: if (n[1596]++ > 0) check ('a string 1596'); break; - case 1597: if (n[1597]++ > 0) check ('a string 1597'); break; - case 1598: if (n[1598]++ > 0) check ('a string 1598'); break; - case 1599: if (n[1599]++ > 0) check ('a string 1599'); break; - case 1600: if (n[1600]++ > 0) check ('a string 1600'); break; - case 1601: if (n[1601]++ > 0) check ('a string 1601'); break; - case 1602: if (n[1602]++ > 0) check ('a string 1602'); break; - case 1603: if (n[1603]++ > 0) check ('a string 1603'); break; - case 1604: if (n[1604]++ > 0) check ('a string 1604'); break; - case 1605: if (n[1605]++ > 0) check ('a string 1605'); break; - case 1606: if (n[1606]++ > 0) check ('a string 1606'); break; - case 1607: if (n[1607]++ > 0) check ('a string 1607'); break; - case 1608: if (n[1608]++ > 0) check ('a string 1608'); break; - case 1609: if (n[1609]++ > 0) check ('a string 1609'); break; - case 1610: if (n[1610]++ > 0) check ('a string 1610'); break; - case 1611: if (n[1611]++ > 0) check ('a string 1611'); break; - case 1612: if (n[1612]++ > 0) check ('a string 1612'); break; - case 1613: if (n[1613]++ > 0) check ('a string 1613'); break; - case 1614: if (n[1614]++ > 0) check ('a string 1614'); break; - case 1615: if (n[1615]++ > 0) check ('a string 1615'); break; - case 1616: if (n[1616]++ > 0) check ('a string 1616'); break; - case 1617: if (n[1617]++ > 0) check ('a string 1617'); break; - case 1618: if (n[1618]++ > 0) check ('a string 1618'); break; - case 1619: if (n[1619]++ > 0) check ('a string 1619'); break; - case 1620: if (n[1620]++ > 0) check ('a string 1620'); break; - case 1621: if (n[1621]++ > 0) check ('a string 1621'); break; - case 1622: if (n[1622]++ > 0) check ('a string 1622'); break; - case 1623: if (n[1623]++ > 0) check ('a string 1623'); break; - case 1624: if (n[1624]++ > 0) check ('a string 1624'); break; - case 1625: if (n[1625]++ > 0) check ('a string 1625'); break; - case 1626: if (n[1626]++ > 0) check ('a string 1626'); break; - case 1627: if (n[1627]++ > 0) check ('a string 1627'); break; - case 1628: if (n[1628]++ > 0) check ('a string 1628'); break; - case 1629: if (n[1629]++ > 0) check ('a string 1629'); break; - case 1630: if (n[1630]++ > 0) check ('a string 1630'); break; - case 1631: if (n[1631]++ > 0) check ('a string 1631'); break; - case 1632: if (n[1632]++ > 0) check ('a string 1632'); break; - case 1633: if (n[1633]++ > 0) check ('a string 1633'); break; - case 1634: if (n[1634]++ > 0) check ('a string 1634'); break; - case 1635: if (n[1635]++ > 0) check ('a string 1635'); break; - case 1636: if (n[1636]++ > 0) check ('a string 1636'); break; - case 1637: if (n[1637]++ > 0) check ('a string 1637'); break; - case 1638: if (n[1638]++ > 0) check ('a string 1638'); break; - case 1639: if (n[1639]++ > 0) check ('a string 1639'); break; - case 1640: if (n[1640]++ > 0) check ('a string 1640'); break; - case 1641: if (n[1641]++ > 0) check ('a string 1641'); break; - case 1642: if (n[1642]++ > 0) check ('a string 1642'); break; - case 1643: if (n[1643]++ > 0) check ('a string 1643'); break; - case 1644: if (n[1644]++ > 0) check ('a string 1644'); break; - case 1645: if (n[1645]++ > 0) check ('a string 1645'); break; - case 1646: if (n[1646]++ > 0) check ('a string 1646'); break; - case 1647: if (n[1647]++ > 0) check ('a string 1647'); break; - case 1648: if (n[1648]++ > 0) check ('a string 1648'); break; - case 1649: if (n[1649]++ > 0) check ('a string 1649'); break; - case 1650: if (n[1650]++ > 0) check ('a string 1650'); break; - case 1651: if (n[1651]++ > 0) check ('a string 1651'); break; - case 1652: if (n[1652]++ > 0) check ('a string 1652'); break; - case 1653: if (n[1653]++ > 0) check ('a string 1653'); break; - case 1654: if (n[1654]++ > 0) check ('a string 1654'); break; - case 1655: if (n[1655]++ > 0) check ('a string 1655'); break; - case 1656: if (n[1656]++ > 0) check ('a string 1656'); break; - case 1657: if (n[1657]++ > 0) check ('a string 1657'); break; - case 1658: if (n[1658]++ > 0) check ('a string 1658'); break; - case 1659: if (n[1659]++ > 0) check ('a string 1659'); break; - case 1660: if (n[1660]++ > 0) check ('a string 1660'); break; - case 1661: if (n[1661]++ > 0) check ('a string 1661'); break; - case 1662: if (n[1662]++ > 0) check ('a string 1662'); break; - case 1663: if (n[1663]++ > 0) check ('a string 1663'); break; - case 1664: if (n[1664]++ > 0) check ('a string 1664'); break; - case 1665: if (n[1665]++ > 0) check ('a string 1665'); break; - case 1666: if (n[1666]++ > 0) check ('a string 1666'); break; - case 1667: if (n[1667]++ > 0) check ('a string 1667'); break; - case 1668: if (n[1668]++ > 0) check ('a string 1668'); break; - case 1669: if (n[1669]++ > 0) check ('a string 1669'); break; - case 1670: if (n[1670]++ > 0) check ('a string 1670'); break; - case 1671: if (n[1671]++ > 0) check ('a string 1671'); break; - case 1672: if (n[1672]++ > 0) check ('a string 1672'); break; - case 1673: if (n[1673]++ > 0) check ('a string 1673'); break; - case 1674: if (n[1674]++ > 0) check ('a string 1674'); break; - case 1675: if (n[1675]++ > 0) check ('a string 1675'); break; - case 1676: if (n[1676]++ > 0) check ('a string 1676'); break; - case 1677: if (n[1677]++ > 0) check ('a string 1677'); break; - case 1678: if (n[1678]++ > 0) check ('a string 1678'); break; - case 1679: if (n[1679]++ > 0) check ('a string 1679'); break; - case 1680: if (n[1680]++ > 0) check ('a string 1680'); break; - case 1681: if (n[1681]++ > 0) check ('a string 1681'); break; - case 1682: if (n[1682]++ > 0) check ('a string 1682'); break; - case 1683: if (n[1683]++ > 0) check ('a string 1683'); break; - case 1684: if (n[1684]++ > 0) check ('a string 1684'); break; - case 1685: if (n[1685]++ > 0) check ('a string 1685'); break; - case 1686: if (n[1686]++ > 0) check ('a string 1686'); break; - case 1687: if (n[1687]++ > 0) check ('a string 1687'); break; - case 1688: if (n[1688]++ > 0) check ('a string 1688'); break; - case 1689: if (n[1689]++ > 0) check ('a string 1689'); break; - case 1690: if (n[1690]++ > 0) check ('a string 1690'); break; - case 1691: if (n[1691]++ > 0) check ('a string 1691'); break; - case 1692: if (n[1692]++ > 0) check ('a string 1692'); break; - case 1693: if (n[1693]++ > 0) check ('a string 1693'); break; - case 1694: if (n[1694]++ > 0) check ('a string 1694'); break; - case 1695: if (n[1695]++ > 0) check ('a string 1695'); break; - case 1696: if (n[1696]++ > 0) check ('a string 1696'); break; - case 1697: if (n[1697]++ > 0) check ('a string 1697'); break; - case 1698: if (n[1698]++ > 0) check ('a string 1698'); break; - case 1699: if (n[1699]++ > 0) check ('a string 1699'); break; - case 1700: if (n[1700]++ > 0) check ('a string 1700'); break; - case 1701: if (n[1701]++ > 0) check ('a string 1701'); break; - case 1702: if (n[1702]++ > 0) check ('a string 1702'); break; - case 1703: if (n[1703]++ > 0) check ('a string 1703'); break; - case 1704: if (n[1704]++ > 0) check ('a string 1704'); break; - case 1705: if (n[1705]++ > 0) check ('a string 1705'); break; - case 1706: if (n[1706]++ > 0) check ('a string 1706'); break; - case 1707: if (n[1707]++ > 0) check ('a string 1707'); break; - case 1708: if (n[1708]++ > 0) check ('a string 1708'); break; - case 1709: if (n[1709]++ > 0) check ('a string 1709'); break; - case 1710: if (n[1710]++ > 0) check ('a string 1710'); break; - case 1711: if (n[1711]++ > 0) check ('a string 1711'); break; - case 1712: if (n[1712]++ > 0) check ('a string 1712'); break; - case 1713: if (n[1713]++ > 0) check ('a string 1713'); break; - case 1714: if (n[1714]++ > 0) check ('a string 1714'); break; - case 1715: if (n[1715]++ > 0) check ('a string 1715'); break; - case 1716: if (n[1716]++ > 0) check ('a string 1716'); break; - case 1717: if (n[1717]++ > 0) check ('a string 1717'); break; - case 1718: if (n[1718]++ > 0) check ('a string 1718'); break; - case 1719: if (n[1719]++ > 0) check ('a string 1719'); break; - case 1720: if (n[1720]++ > 0) check ('a string 1720'); break; - case 1721: if (n[1721]++ > 0) check ('a string 1721'); break; - case 1722: if (n[1722]++ > 0) check ('a string 1722'); break; - case 1723: if (n[1723]++ > 0) check ('a string 1723'); break; - case 1724: if (n[1724]++ > 0) check ('a string 1724'); break; - case 1725: if (n[1725]++ > 0) check ('a string 1725'); break; - case 1726: if (n[1726]++ > 0) check ('a string 1726'); break; - case 1727: if (n[1727]++ > 0) check ('a string 1727'); break; - case 1728: if (n[1728]++ > 0) check ('a string 1728'); break; - case 1729: if (n[1729]++ > 0) check ('a string 1729'); break; - case 1730: if (n[1730]++ > 0) check ('a string 1730'); break; - case 1731: if (n[1731]++ > 0) check ('a string 1731'); break; - case 1732: if (n[1732]++ > 0) check ('a string 1732'); break; - case 1733: if (n[1733]++ > 0) check ('a string 1733'); break; - case 1734: if (n[1734]++ > 0) check ('a string 1734'); break; - case 1735: if (n[1735]++ > 0) check ('a string 1735'); break; - case 1736: if (n[1736]++ > 0) check ('a string 1736'); break; - case 1737: if (n[1737]++ > 0) check ('a string 1737'); break; - case 1738: if (n[1738]++ > 0) check ('a string 1738'); break; - case 1739: if (n[1739]++ > 0) check ('a string 1739'); break; - case 1740: if (n[1740]++ > 0) check ('a string 1740'); break; - case 1741: if (n[1741]++ > 0) check ('a string 1741'); break; - case 1742: if (n[1742]++ > 0) check ('a string 1742'); break; - case 1743: if (n[1743]++ > 0) check ('a string 1743'); break; - case 1744: if (n[1744]++ > 0) check ('a string 1744'); break; - case 1745: if (n[1745]++ > 0) check ('a string 1745'); break; - case 1746: if (n[1746]++ > 0) check ('a string 1746'); break; - case 1747: if (n[1747]++ > 0) check ('a string 1747'); break; - case 1748: if (n[1748]++ > 0) check ('a string 1748'); break; - case 1749: if (n[1749]++ > 0) check ('a string 1749'); break; - case 1750: if (n[1750]++ > 0) check ('a string 1750'); break; - case 1751: if (n[1751]++ > 0) check ('a string 1751'); break; - case 1752: if (n[1752]++ > 0) check ('a string 1752'); break; - case 1753: if (n[1753]++ > 0) check ('a string 1753'); break; - case 1754: if (n[1754]++ > 0) check ('a string 1754'); break; - case 1755: if (n[1755]++ > 0) check ('a string 1755'); break; - case 1756: if (n[1756]++ > 0) check ('a string 1756'); break; - case 1757: if (n[1757]++ > 0) check ('a string 1757'); break; - case 1758: if (n[1758]++ > 0) check ('a string 1758'); break; - case 1759: if (n[1759]++ > 0) check ('a string 1759'); break; - case 1760: if (n[1760]++ > 0) check ('a string 1760'); break; - case 1761: if (n[1761]++ > 0) check ('a string 1761'); break; - case 1762: if (n[1762]++ > 0) check ('a string 1762'); break; - case 1763: if (n[1763]++ > 0) check ('a string 1763'); break; - case 1764: if (n[1764]++ > 0) check ('a string 1764'); break; - case 1765: if (n[1765]++ > 0) check ('a string 1765'); break; - case 1766: if (n[1766]++ > 0) check ('a string 1766'); break; - case 1767: if (n[1767]++ > 0) check ('a string 1767'); break; - case 1768: if (n[1768]++ > 0) check ('a string 1768'); break; - case 1769: if (n[1769]++ > 0) check ('a string 1769'); break; - case 1770: if (n[1770]++ > 0) check ('a string 1770'); break; - case 1771: if (n[1771]++ > 0) check ('a string 1771'); break; - case 1772: if (n[1772]++ > 0) check ('a string 1772'); break; - case 1773: if (n[1773]++ > 0) check ('a string 1773'); break; - case 1774: if (n[1774]++ > 0) check ('a string 1774'); break; - case 1775: if (n[1775]++ > 0) check ('a string 1775'); break; - case 1776: if (n[1776]++ > 0) check ('a string 1776'); break; - case 1777: if (n[1777]++ > 0) check ('a string 1777'); break; - case 1778: if (n[1778]++ > 0) check ('a string 1778'); break; - case 1779: if (n[1779]++ > 0) check ('a string 1779'); break; - case 1780: if (n[1780]++ > 0) check ('a string 1780'); break; - case 1781: if (n[1781]++ > 0) check ('a string 1781'); break; - case 1782: if (n[1782]++ > 0) check ('a string 1782'); break; - case 1783: if (n[1783]++ > 0) check ('a string 1783'); break; - case 1784: if (n[1784]++ > 0) check ('a string 1784'); break; - case 1785: if (n[1785]++ > 0) check ('a string 1785'); break; - case 1786: if (n[1786]++ > 0) check ('a string 1786'); break; - case 1787: if (n[1787]++ > 0) check ('a string 1787'); break; - case 1788: if (n[1788]++ > 0) check ('a string 1788'); break; - case 1789: if (n[1789]++ > 0) check ('a string 1789'); break; - case 1790: if (n[1790]++ > 0) check ('a string 1790'); break; - case 1791: if (n[1791]++ > 0) check ('a string 1791'); break; - case 1792: if (n[1792]++ > 0) check ('a string 1792'); break; - case 1793: if (n[1793]++ > 0) check ('a string 1793'); break; - case 1794: if (n[1794]++ > 0) check ('a string 1794'); break; - case 1795: if (n[1795]++ > 0) check ('a string 1795'); break; - case 1796: if (n[1796]++ > 0) check ('a string 1796'); break; - case 1797: if (n[1797]++ > 0) check ('a string 1797'); break; - case 1798: if (n[1798]++ > 0) check ('a string 1798'); break; - case 1799: if (n[1799]++ > 0) check ('a string 1799'); break; - case 1800: if (n[1800]++ > 0) check ('a string 1800'); break; - case 1801: if (n[1801]++ > 0) check ('a string 1801'); break; - case 1802: if (n[1802]++ > 0) check ('a string 1802'); break; - case 1803: if (n[1803]++ > 0) check ('a string 1803'); break; - case 1804: if (n[1804]++ > 0) check ('a string 1804'); break; - case 1805: if (n[1805]++ > 0) check ('a string 1805'); break; - case 1806: if (n[1806]++ > 0) check ('a string 1806'); break; - case 1807: if (n[1807]++ > 0) check ('a string 1807'); break; - case 1808: if (n[1808]++ > 0) check ('a string 1808'); break; - case 1809: if (n[1809]++ > 0) check ('a string 1809'); break; - case 1810: if (n[1810]++ > 0) check ('a string 1810'); break; - case 1811: if (n[1811]++ > 0) check ('a string 1811'); break; - case 1812: if (n[1812]++ > 0) check ('a string 1812'); break; - case 1813: if (n[1813]++ > 0) check ('a string 1813'); break; - case 1814: if (n[1814]++ > 0) check ('a string 1814'); break; - case 1815: if (n[1815]++ > 0) check ('a string 1815'); break; - case 1816: if (n[1816]++ > 0) check ('a string 1816'); break; - case 1817: if (n[1817]++ > 0) check ('a string 1817'); break; - case 1818: if (n[1818]++ > 0) check ('a string 1818'); break; - case 1819: if (n[1819]++ > 0) check ('a string 1819'); break; - case 1820: if (n[1820]++ > 0) check ('a string 1820'); break; - case 1821: if (n[1821]++ > 0) check ('a string 1821'); break; - case 1822: if (n[1822]++ > 0) check ('a string 1822'); break; - case 1823: if (n[1823]++ > 0) check ('a string 1823'); break; - case 1824: if (n[1824]++ > 0) check ('a string 1824'); break; - case 1825: if (n[1825]++ > 0) check ('a string 1825'); break; - case 1826: if (n[1826]++ > 0) check ('a string 1826'); break; - case 1827: if (n[1827]++ > 0) check ('a string 1827'); break; - case 1828: if (n[1828]++ > 0) check ('a string 1828'); break; - case 1829: if (n[1829]++ > 0) check ('a string 1829'); break; - case 1830: if (n[1830]++ > 0) check ('a string 1830'); break; - case 1831: if (n[1831]++ > 0) check ('a string 1831'); break; - case 1832: if (n[1832]++ > 0) check ('a string 1832'); break; - case 1833: if (n[1833]++ > 0) check ('a string 1833'); break; - case 1834: if (n[1834]++ > 0) check ('a string 1834'); break; - case 1835: if (n[1835]++ > 0) check ('a string 1835'); break; - case 1836: if (n[1836]++ > 0) check ('a string 1836'); break; - case 1837: if (n[1837]++ > 0) check ('a string 1837'); break; - case 1838: if (n[1838]++ > 0) check ('a string 1838'); break; - case 1839: if (n[1839]++ > 0) check ('a string 1839'); break; - case 1840: if (n[1840]++ > 0) check ('a string 1840'); break; - case 1841: if (n[1841]++ > 0) check ('a string 1841'); break; - case 1842: if (n[1842]++ > 0) check ('a string 1842'); break; - case 1843: if (n[1843]++ > 0) check ('a string 1843'); break; - case 1844: if (n[1844]++ > 0) check ('a string 1844'); break; - case 1845: if (n[1845]++ > 0) check ('a string 1845'); break; - case 1846: if (n[1846]++ > 0) check ('a string 1846'); break; - case 1847: if (n[1847]++ > 0) check ('a string 1847'); break; - case 1848: if (n[1848]++ > 0) check ('a string 1848'); break; - case 1849: if (n[1849]++ > 0) check ('a string 1849'); break; - case 1850: if (n[1850]++ > 0) check ('a string 1850'); break; - case 1851: if (n[1851]++ > 0) check ('a string 1851'); break; - case 1852: if (n[1852]++ > 0) check ('a string 1852'); break; - case 1853: if (n[1853]++ > 0) check ('a string 1853'); break; - case 1854: if (n[1854]++ > 0) check ('a string 1854'); break; - case 1855: if (n[1855]++ > 0) check ('a string 1855'); break; - case 1856: if (n[1856]++ > 0) check ('a string 1856'); break; - case 1857: if (n[1857]++ > 0) check ('a string 1857'); break; - case 1858: if (n[1858]++ > 0) check ('a string 1858'); break; - case 1859: if (n[1859]++ > 0) check ('a string 1859'); break; - case 1860: if (n[1860]++ > 0) check ('a string 1860'); break; - case 1861: if (n[1861]++ > 0) check ('a string 1861'); break; - case 1862: if (n[1862]++ > 0) check ('a string 1862'); break; - case 1863: if (n[1863]++ > 0) check ('a string 1863'); break; - case 1864: if (n[1864]++ > 0) check ('a string 1864'); break; - case 1865: if (n[1865]++ > 0) check ('a string 1865'); break; - case 1866: if (n[1866]++ > 0) check ('a string 1866'); break; - case 1867: if (n[1867]++ > 0) check ('a string 1867'); break; - case 1868: if (n[1868]++ > 0) check ('a string 1868'); break; - case 1869: if (n[1869]++ > 0) check ('a string 1869'); break; - case 1870: if (n[1870]++ > 0) check ('a string 1870'); break; - case 1871: if (n[1871]++ > 0) check ('a string 1871'); break; - case 1872: if (n[1872]++ > 0) check ('a string 1872'); break; - case 1873: if (n[1873]++ > 0) check ('a string 1873'); break; - case 1874: if (n[1874]++ > 0) check ('a string 1874'); break; - case 1875: if (n[1875]++ > 0) check ('a string 1875'); break; - case 1876: if (n[1876]++ > 0) check ('a string 1876'); break; - case 1877: if (n[1877]++ > 0) check ('a string 1877'); break; - case 1878: if (n[1878]++ > 0) check ('a string 1878'); break; - case 1879: if (n[1879]++ > 0) check ('a string 1879'); break; - case 1880: if (n[1880]++ > 0) check ('a string 1880'); break; - case 1881: if (n[1881]++ > 0) check ('a string 1881'); break; - case 1882: if (n[1882]++ > 0) check ('a string 1882'); break; - case 1883: if (n[1883]++ > 0) check ('a string 1883'); break; - case 1884: if (n[1884]++ > 0) check ('a string 1884'); break; - case 1885: if (n[1885]++ > 0) check ('a string 1885'); break; - case 1886: if (n[1886]++ > 0) check ('a string 1886'); break; - case 1887: if (n[1887]++ > 0) check ('a string 1887'); break; - case 1888: if (n[1888]++ > 0) check ('a string 1888'); break; - case 1889: if (n[1889]++ > 0) check ('a string 1889'); break; - case 1890: if (n[1890]++ > 0) check ('a string 1890'); break; - case 1891: if (n[1891]++ > 0) check ('a string 1891'); break; - case 1892: if (n[1892]++ > 0) check ('a string 1892'); break; - case 1893: if (n[1893]++ > 0) check ('a string 1893'); break; - case 1894: if (n[1894]++ > 0) check ('a string 1894'); break; - case 1895: if (n[1895]++ > 0) check ('a string 1895'); break; - case 1896: if (n[1896]++ > 0) check ('a string 1896'); break; - case 1897: if (n[1897]++ > 0) check ('a string 1897'); break; - case 1898: if (n[1898]++ > 0) check ('a string 1898'); break; - case 1899: if (n[1899]++ > 0) check ('a string 1899'); break; - case 1900: if (n[1900]++ > 0) check ('a string 1900'); break; - case 1901: if (n[1901]++ > 0) check ('a string 1901'); break; - case 1902: if (n[1902]++ > 0) check ('a string 1902'); break; - case 1903: if (n[1903]++ > 0) check ('a string 1903'); break; - case 1904: if (n[1904]++ > 0) check ('a string 1904'); break; - case 1905: if (n[1905]++ > 0) check ('a string 1905'); break; - case 1906: if (n[1906]++ > 0) check ('a string 1906'); break; - case 1907: if (n[1907]++ > 0) check ('a string 1907'); break; - case 1908: if (n[1908]++ > 0) check ('a string 1908'); break; - case 1909: if (n[1909]++ > 0) check ('a string 1909'); break; - case 1910: if (n[1910]++ > 0) check ('a string 1910'); break; - case 1911: if (n[1911]++ > 0) check ('a string 1911'); break; - case 1912: if (n[1912]++ > 0) check ('a string 1912'); break; - case 1913: if (n[1913]++ > 0) check ('a string 1913'); break; - case 1914: if (n[1914]++ > 0) check ('a string 1914'); break; - case 1915: if (n[1915]++ > 0) check ('a string 1915'); break; - case 1916: if (n[1916]++ > 0) check ('a string 1916'); break; - case 1917: if (n[1917]++ > 0) check ('a string 1917'); break; - case 1918: if (n[1918]++ > 0) check ('a string 1918'); break; - case 1919: if (n[1919]++ > 0) check ('a string 1919'); break; - case 1920: if (n[1920]++ > 0) check ('a string 1920'); break; - case 1921: if (n[1921]++ > 0) check ('a string 1921'); break; - case 1922: if (n[1922]++ > 0) check ('a string 1922'); break; - case 1923: if (n[1923]++ > 0) check ('a string 1923'); break; - case 1924: if (n[1924]++ > 0) check ('a string 1924'); break; - case 1925: if (n[1925]++ > 0) check ('a string 1925'); break; - case 1926: if (n[1926]++ > 0) check ('a string 1926'); break; - case 1927: if (n[1927]++ > 0) check ('a string 1927'); break; - case 1928: if (n[1928]++ > 0) check ('a string 1928'); break; - case 1929: if (n[1929]++ > 0) check ('a string 1929'); break; - case 1930: if (n[1930]++ > 0) check ('a string 1930'); break; - case 1931: if (n[1931]++ > 0) check ('a string 1931'); break; - case 1932: if (n[1932]++ > 0) check ('a string 1932'); break; - case 1933: if (n[1933]++ > 0) check ('a string 1933'); break; - case 1934: if (n[1934]++ > 0) check ('a string 1934'); break; - case 1935: if (n[1935]++ > 0) check ('a string 1935'); break; - case 1936: if (n[1936]++ > 0) check ('a string 1936'); break; - case 1937: if (n[1937]++ > 0) check ('a string 1937'); break; - case 1938: if (n[1938]++ > 0) check ('a string 1938'); break; - case 1939: if (n[1939]++ > 0) check ('a string 1939'); break; - case 1940: if (n[1940]++ > 0) check ('a string 1940'); break; - case 1941: if (n[1941]++ > 0) check ('a string 1941'); break; - case 1942: if (n[1942]++ > 0) check ('a string 1942'); break; - case 1943: if (n[1943]++ > 0) check ('a string 1943'); break; - case 1944: if (n[1944]++ > 0) check ('a string 1944'); break; - case 1945: if (n[1945]++ > 0) check ('a string 1945'); break; - case 1946: if (n[1946]++ > 0) check ('a string 1946'); break; - case 1947: if (n[1947]++ > 0) check ('a string 1947'); break; - case 1948: if (n[1948]++ > 0) check ('a string 1948'); break; - case 1949: if (n[1949]++ > 0) check ('a string 1949'); break; - case 1950: if (n[1950]++ > 0) check ('a string 1950'); break; - case 1951: if (n[1951]++ > 0) check ('a string 1951'); break; - case 1952: if (n[1952]++ > 0) check ('a string 1952'); break; - case 1953: if (n[1953]++ > 0) check ('a string 1953'); break; - case 1954: if (n[1954]++ > 0) check ('a string 1954'); break; - case 1955: if (n[1955]++ > 0) check ('a string 1955'); break; - case 1956: if (n[1956]++ > 0) check ('a string 1956'); break; - case 1957: if (n[1957]++ > 0) check ('a string 1957'); break; - case 1958: if (n[1958]++ > 0) check ('a string 1958'); break; - case 1959: if (n[1959]++ > 0) check ('a string 1959'); break; - case 1960: if (n[1960]++ > 0) check ('a string 1960'); break; - case 1961: if (n[1961]++ > 0) check ('a string 1961'); break; - case 1962: if (n[1962]++ > 0) check ('a string 1962'); break; - case 1963: if (n[1963]++ > 0) check ('a string 1963'); break; - case 1964: if (n[1964]++ > 0) check ('a string 1964'); break; - case 1965: if (n[1965]++ > 0) check ('a string 1965'); break; - case 1966: if (n[1966]++ > 0) check ('a string 1966'); break; - case 1967: if (n[1967]++ > 0) check ('a string 1967'); break; - case 1968: if (n[1968]++ > 0) check ('a string 1968'); break; - case 1969: if (n[1969]++ > 0) check ('a string 1969'); break; - case 1970: if (n[1970]++ > 0) check ('a string 1970'); break; - case 1971: if (n[1971]++ > 0) check ('a string 1971'); break; - case 1972: if (n[1972]++ > 0) check ('a string 1972'); break; - case 1973: if (n[1973]++ > 0) check ('a string 1973'); break; - case 1974: if (n[1974]++ > 0) check ('a string 1974'); break; - case 1975: if (n[1975]++ > 0) check ('a string 1975'); break; - case 1976: if (n[1976]++ > 0) check ('a string 1976'); break; - case 1977: if (n[1977]++ > 0) check ('a string 1977'); break; - case 1978: if (n[1978]++ > 0) check ('a string 1978'); break; - case 1979: if (n[1979]++ > 0) check ('a string 1979'); break; - case 1980: if (n[1980]++ > 0) check ('a string 1980'); break; - case 1981: if (n[1981]++ > 0) check ('a string 1981'); break; - case 1982: if (n[1982]++ > 0) check ('a string 1982'); break; - case 1983: if (n[1983]++ > 0) check ('a string 1983'); break; - case 1984: if (n[1984]++ > 0) check ('a string 1984'); break; - case 1985: if (n[1985]++ > 0) check ('a string 1985'); break; - case 1986: if (n[1986]++ > 0) check ('a string 1986'); break; - case 1987: if (n[1987]++ > 0) check ('a string 1987'); break; - case 1988: if (n[1988]++ > 0) check ('a string 1988'); break; - case 1989: if (n[1989]++ > 0) check ('a string 1989'); break; - case 1990: if (n[1990]++ > 0) check ('a string 1990'); break; - case 1991: if (n[1991]++ > 0) check ('a string 1991'); break; - case 1992: if (n[1992]++ > 0) check ('a string 1992'); break; - case 1993: if (n[1993]++ > 0) check ('a string 1993'); break; - case 1994: if (n[1994]++ > 0) check ('a string 1994'); break; - case 1995: if (n[1995]++ > 0) check ('a string 1995'); break; - case 1996: if (n[1996]++ > 0) check ('a string 1996'); break; - case 1997: if (n[1997]++ > 0) check ('a string 1997'); break; - case 1998: if (n[1998]++ > 0) check ('a string 1998'); break; - case 1999: if (n[1999]++ > 0) check ('a string 1999'); break; - case 2000: if (n[2000]++ > 0) check ('a string 2000'); break; - case 2001: if (n[2001]++ > 0) check ('a string 2001'); break; - case 2002: if (n[2002]++ > 0) check ('a string 2002'); break; - case 2003: if (n[2003]++ > 0) check ('a string 2003'); break; - case 2004: if (n[2004]++ > 0) check ('a string 2004'); break; - case 2005: if (n[2005]++ > 0) check ('a string 2005'); break; - case 2006: if (n[2006]++ > 0) check ('a string 2006'); break; - case 2007: if (n[2007]++ > 0) check ('a string 2007'); break; - case 2008: if (n[2008]++ > 0) check ('a string 2008'); break; - case 2009: if (n[2009]++ > 0) check ('a string 2009'); break; - case 2010: if (n[2010]++ > 0) check ('a string 2010'); break; - case 2011: if (n[2011]++ > 0) check ('a string 2011'); break; - case 2012: if (n[2012]++ > 0) check ('a string 2012'); break; - case 2013: if (n[2013]++ > 0) check ('a string 2013'); break; - case 2014: if (n[2014]++ > 0) check ('a string 2014'); break; - case 2015: if (n[2015]++ > 0) check ('a string 2015'); break; - case 2016: if (n[2016]++ > 0) check ('a string 2016'); break; - case 2017: if (n[2017]++ > 0) check ('a string 2017'); break; - case 2018: if (n[2018]++ > 0) check ('a string 2018'); break; - case 2019: if (n[2019]++ > 0) check ('a string 2019'); break; - case 2020: if (n[2020]++ > 0) check ('a string 2020'); break; - case 2021: if (n[2021]++ > 0) check ('a string 2021'); break; - case 2022: if (n[2022]++ > 0) check ('a string 2022'); break; - case 2023: if (n[2023]++ > 0) check ('a string 2023'); break; - case 2024: if (n[2024]++ > 0) check ('a string 2024'); break; - case 2025: if (n[2025]++ > 0) check ('a string 2025'); break; - case 2026: if (n[2026]++ > 0) check ('a string 2026'); break; - case 2027: if (n[2027]++ > 0) check ('a string 2027'); break; - case 2028: if (n[2028]++ > 0) check ('a string 2028'); break; - case 2029: if (n[2029]++ > 0) check ('a string 2029'); break; - case 2030: if (n[2030]++ > 0) check ('a string 2030'); break; - case 2031: if (n[2031]++ > 0) check ('a string 2031'); break; - case 2032: if (n[2032]++ > 0) check ('a string 2032'); break; - case 2033: if (n[2033]++ > 0) check ('a string 2033'); break; - case 2034: if (n[2034]++ > 0) check ('a string 2034'); break; - case 2035: if (n[2035]++ > 0) check ('a string 2035'); break; - case 2036: if (n[2036]++ > 0) check ('a string 2036'); break; - case 2037: if (n[2037]++ > 0) check ('a string 2037'); break; - case 2038: if (n[2038]++ > 0) check ('a string 2038'); break; - case 2039: if (n[2039]++ > 0) check ('a string 2039'); break; - case 2040: if (n[2040]++ > 0) check ('a string 2040'); break; - case 2041: if (n[2041]++ > 0) check ('a string 2041'); break; - case 2042: if (n[2042]++ > 0) check ('a string 2042'); break; - case 2043: if (n[2043]++ > 0) check ('a string 2043'); break; - case 2044: if (n[2044]++ > 0) check ('a string 2044'); break; - case 2045: if (n[2045]++ > 0) check ('a string 2045'); break; - case 2046: if (n[2046]++ > 0) check ('a string 2046'); break; - case 2047: if (n[2047]++ > 0) check ('a string 2047'); break; - case 2048: if (n[2048]++ > 0) check ('a string 2048'); break; - case 2049: if (n[2049]++ > 0) check ('a string 2049'); break; - case 2050: if (n[2050]++ > 0) check ('a string 2050'); break; - case 2051: if (n[2051]++ > 0) check ('a string 2051'); break; - case 2052: if (n[2052]++ > 0) check ('a string 2052'); break; - case 2053: if (n[2053]++ > 0) check ('a string 2053'); break; - case 2054: if (n[2054]++ > 0) check ('a string 2054'); break; - case 2055: if (n[2055]++ > 0) check ('a string 2055'); break; - case 2056: if (n[2056]++ > 0) check ('a string 2056'); break; - case 2057: if (n[2057]++ > 0) check ('a string 2057'); break; - case 2058: if (n[2058]++ > 0) check ('a string 2058'); break; - case 2059: if (n[2059]++ > 0) check ('a string 2059'); break; - case 2060: if (n[2060]++ > 0) check ('a string 2060'); break; - case 2061: if (n[2061]++ > 0) check ('a string 2061'); break; - case 2062: if (n[2062]++ > 0) check ('a string 2062'); break; - case 2063: if (n[2063]++ > 0) check ('a string 2063'); break; - case 2064: if (n[2064]++ > 0) check ('a string 2064'); break; - case 2065: if (n[2065]++ > 0) check ('a string 2065'); break; - case 2066: if (n[2066]++ > 0) check ('a string 2066'); break; - case 2067: if (n[2067]++ > 0) check ('a string 2067'); break; - case 2068: if (n[2068]++ > 0) check ('a string 2068'); break; - case 2069: if (n[2069]++ > 0) check ('a string 2069'); break; - case 2070: if (n[2070]++ > 0) check ('a string 2070'); break; - case 2071: if (n[2071]++ > 0) check ('a string 2071'); break; - case 2072: if (n[2072]++ > 0) check ('a string 2072'); break; - case 2073: if (n[2073]++ > 0) check ('a string 2073'); break; - case 2074: if (n[2074]++ > 0) check ('a string 2074'); break; - case 2075: if (n[2075]++ > 0) check ('a string 2075'); break; - case 2076: if (n[2076]++ > 0) check ('a string 2076'); break; - case 2077: if (n[2077]++ > 0) check ('a string 2077'); break; - case 2078: if (n[2078]++ > 0) check ('a string 2078'); break; - case 2079: if (n[2079]++ > 0) check ('a string 2079'); break; - case 2080: if (n[2080]++ > 0) check ('a string 2080'); break; - case 2081: if (n[2081]++ > 0) check ('a string 2081'); break; - case 2082: if (n[2082]++ > 0) check ('a string 2082'); break; - case 2083: if (n[2083]++ > 0) check ('a string 2083'); break; - case 2084: if (n[2084]++ > 0) check ('a string 2084'); break; - case 2085: if (n[2085]++ > 0) check ('a string 2085'); break; - case 2086: if (n[2086]++ > 0) check ('a string 2086'); break; - case 2087: if (n[2087]++ > 0) check ('a string 2087'); break; - case 2088: if (n[2088]++ > 0) check ('a string 2088'); break; - case 2089: if (n[2089]++ > 0) check ('a string 2089'); break; - case 2090: if (n[2090]++ > 0) check ('a string 2090'); break; - case 2091: if (n[2091]++ > 0) check ('a string 2091'); break; - case 2092: if (n[2092]++ > 0) check ('a string 2092'); break; - case 2093: if (n[2093]++ > 0) check ('a string 2093'); break; - case 2094: if (n[2094]++ > 0) check ('a string 2094'); break; - case 2095: if (n[2095]++ > 0) check ('a string 2095'); break; - case 2096: if (n[2096]++ > 0) check ('a string 2096'); break; - case 2097: if (n[2097]++ > 0) check ('a string 2097'); break; - case 2098: if (n[2098]++ > 0) check ('a string 2098'); break; - case 2099: if (n[2099]++ > 0) check ('a string 2099'); break; - case 2100: if (n[2100]++ > 0) check ('a string 2100'); break; - case 2101: if (n[2101]++ > 0) check ('a string 2101'); break; - case 2102: if (n[2102]++ > 0) check ('a string 2102'); break; - case 2103: if (n[2103]++ > 0) check ('a string 2103'); break; - case 2104: if (n[2104]++ > 0) check ('a string 2104'); break; - case 2105: if (n[2105]++ > 0) check ('a string 2105'); break; - case 2106: if (n[2106]++ > 0) check ('a string 2106'); break; - case 2107: if (n[2107]++ > 0) check ('a string 2107'); break; - case 2108: if (n[2108]++ > 0) check ('a string 2108'); break; - case 2109: if (n[2109]++ > 0) check ('a string 2109'); break; - case 2110: if (n[2110]++ > 0) check ('a string 2110'); break; - case 2111: if (n[2111]++ > 0) check ('a string 2111'); break; - case 2112: if (n[2112]++ > 0) check ('a string 2112'); break; - case 2113: if (n[2113]++ > 0) check ('a string 2113'); break; - case 2114: if (n[2114]++ > 0) check ('a string 2114'); break; - case 2115: if (n[2115]++ > 0) check ('a string 2115'); break; - case 2116: if (n[2116]++ > 0) check ('a string 2116'); break; - case 2117: if (n[2117]++ > 0) check ('a string 2117'); break; - case 2118: if (n[2118]++ > 0) check ('a string 2118'); break; - case 2119: if (n[2119]++ > 0) check ('a string 2119'); break; - case 2120: if (n[2120]++ > 0) check ('a string 2120'); break; - case 2121: if (n[2121]++ > 0) check ('a string 2121'); break; - case 2122: if (n[2122]++ > 0) check ('a string 2122'); break; - case 2123: if (n[2123]++ > 0) check ('a string 2123'); break; - case 2124: if (n[2124]++ > 0) check ('a string 2124'); break; - case 2125: if (n[2125]++ > 0) check ('a string 2125'); break; - case 2126: if (n[2126]++ > 0) check ('a string 2126'); break; - case 2127: if (n[2127]++ > 0) check ('a string 2127'); break; - case 2128: if (n[2128]++ > 0) check ('a string 2128'); break; - case 2129: if (n[2129]++ > 0) check ('a string 2129'); break; - case 2130: if (n[2130]++ > 0) check ('a string 2130'); break; - case 2131: if (n[2131]++ > 0) check ('a string 2131'); break; - case 2132: if (n[2132]++ > 0) check ('a string 2132'); break; - case 2133: if (n[2133]++ > 0) check ('a string 2133'); break; - case 2134: if (n[2134]++ > 0) check ('a string 2134'); break; - case 2135: if (n[2135]++ > 0) check ('a string 2135'); break; - case 2136: if (n[2136]++ > 0) check ('a string 2136'); break; - case 2137: if (n[2137]++ > 0) check ('a string 2137'); break; - case 2138: if (n[2138]++ > 0) check ('a string 2138'); break; - case 2139: if (n[2139]++ > 0) check ('a string 2139'); break; - case 2140: if (n[2140]++ > 0) check ('a string 2140'); break; - case 2141: if (n[2141]++ > 0) check ('a string 2141'); break; - case 2142: if (n[2142]++ > 0) check ('a string 2142'); break; - case 2143: if (n[2143]++ > 0) check ('a string 2143'); break; - case 2144: if (n[2144]++ > 0) check ('a string 2144'); break; - case 2145: if (n[2145]++ > 0) check ('a string 2145'); break; - case 2146: if (n[2146]++ > 0) check ('a string 2146'); break; - case 2147: if (n[2147]++ > 0) check ('a string 2147'); break; - case 2148: if (n[2148]++ > 0) check ('a string 2148'); break; - case 2149: if (n[2149]++ > 0) check ('a string 2149'); break; - case 2150: if (n[2150]++ > 0) check ('a string 2150'); break; - case 2151: if (n[2151]++ > 0) check ('a string 2151'); break; - case 2152: if (n[2152]++ > 0) check ('a string 2152'); break; - case 2153: if (n[2153]++ > 0) check ('a string 2153'); break; - case 2154: if (n[2154]++ > 0) check ('a string 2154'); break; - case 2155: if (n[2155]++ > 0) check ('a string 2155'); break; - case 2156: if (n[2156]++ > 0) check ('a string 2156'); break; - case 2157: if (n[2157]++ > 0) check ('a string 2157'); break; - case 2158: if (n[2158]++ > 0) check ('a string 2158'); break; - case 2159: if (n[2159]++ > 0) check ('a string 2159'); break; - case 2160: if (n[2160]++ > 0) check ('a string 2160'); break; - case 2161: if (n[2161]++ > 0) check ('a string 2161'); break; - case 2162: if (n[2162]++ > 0) check ('a string 2162'); break; - case 2163: if (n[2163]++ > 0) check ('a string 2163'); break; - case 2164: if (n[2164]++ > 0) check ('a string 2164'); break; - case 2165: if (n[2165]++ > 0) check ('a string 2165'); break; - case 2166: if (n[2166]++ > 0) check ('a string 2166'); break; - case 2167: if (n[2167]++ > 0) check ('a string 2167'); break; - case 2168: if (n[2168]++ > 0) check ('a string 2168'); break; - case 2169: if (n[2169]++ > 0) check ('a string 2169'); break; - case 2170: if (n[2170]++ > 0) check ('a string 2170'); break; - case 2171: if (n[2171]++ > 0) check ('a string 2171'); break; - case 2172: if (n[2172]++ > 0) check ('a string 2172'); break; - case 2173: if (n[2173]++ > 0) check ('a string 2173'); break; - case 2174: if (n[2174]++ > 0) check ('a string 2174'); break; - case 2175: if (n[2175]++ > 0) check ('a string 2175'); break; - case 2176: if (n[2176]++ > 0) check ('a string 2176'); break; - case 2177: if (n[2177]++ > 0) check ('a string 2177'); break; - case 2178: if (n[2178]++ > 0) check ('a string 2178'); break; - case 2179: if (n[2179]++ > 0) check ('a string 2179'); break; - case 2180: if (n[2180]++ > 0) check ('a string 2180'); break; - case 2181: if (n[2181]++ > 0) check ('a string 2181'); break; - case 2182: if (n[2182]++ > 0) check ('a string 2182'); break; - case 2183: if (n[2183]++ > 0) check ('a string 2183'); break; - case 2184: if (n[2184]++ > 0) check ('a string 2184'); break; - case 2185: if (n[2185]++ > 0) check ('a string 2185'); break; - case 2186: if (n[2186]++ > 0) check ('a string 2186'); break; - case 2187: if (n[2187]++ > 0) check ('a string 2187'); break; - case 2188: if (n[2188]++ > 0) check ('a string 2188'); break; - case 2189: if (n[2189]++ > 0) check ('a string 2189'); break; - case 2190: if (n[2190]++ > 0) check ('a string 2190'); break; - case 2191: if (n[2191]++ > 0) check ('a string 2191'); break; - case 2192: if (n[2192]++ > 0) check ('a string 2192'); break; - case 2193: if (n[2193]++ > 0) check ('a string 2193'); break; - case 2194: if (n[2194]++ > 0) check ('a string 2194'); break; - case 2195: if (n[2195]++ > 0) check ('a string 2195'); break; - case 2196: if (n[2196]++ > 0) check ('a string 2196'); break; - case 2197: if (n[2197]++ > 0) check ('a string 2197'); break; - case 2198: if (n[2198]++ > 0) check ('a string 2198'); break; - case 2199: if (n[2199]++ > 0) check ('a string 2199'); break; - case 2200: if (n[2200]++ > 0) check ('a string 2200'); break; - case 2201: if (n[2201]++ > 0) check ('a string 2201'); break; - case 2202: if (n[2202]++ > 0) check ('a string 2202'); break; - case 2203: if (n[2203]++ > 0) check ('a string 2203'); break; - case 2204: if (n[2204]++ > 0) check ('a string 2204'); break; - case 2205: if (n[2205]++ > 0) check ('a string 2205'); break; - case 2206: if (n[2206]++ > 0) check ('a string 2206'); break; - case 2207: if (n[2207]++ > 0) check ('a string 2207'); break; - case 2208: if (n[2208]++ > 0) check ('a string 2208'); break; - case 2209: if (n[2209]++ > 0) check ('a string 2209'); break; - case 2210: if (n[2210]++ > 0) check ('a string 2210'); break; - case 2211: if (n[2211]++ > 0) check ('a string 2211'); break; - case 2212: if (n[2212]++ > 0) check ('a string 2212'); break; - case 2213: if (n[2213]++ > 0) check ('a string 2213'); break; - case 2214: if (n[2214]++ > 0) check ('a string 2214'); break; - case 2215: if (n[2215]++ > 0) check ('a string 2215'); break; - case 2216: if (n[2216]++ > 0) check ('a string 2216'); break; - case 2217: if (n[2217]++ > 0) check ('a string 2217'); break; - case 2218: if (n[2218]++ > 0) check ('a string 2218'); break; - case 2219: if (n[2219]++ > 0) check ('a string 2219'); break; - case 2220: if (n[2220]++ > 0) check ('a string 2220'); break; - case 2221: if (n[2221]++ > 0) check ('a string 2221'); break; - case 2222: if (n[2222]++ > 0) check ('a string 2222'); break; - case 2223: if (n[2223]++ > 0) check ('a string 2223'); break; - case 2224: if (n[2224]++ > 0) check ('a string 2224'); break; - case 2225: if (n[2225]++ > 0) check ('a string 2225'); break; - case 2226: if (n[2226]++ > 0) check ('a string 2226'); break; - case 2227: if (n[2227]++ > 0) check ('a string 2227'); break; - case 2228: if (n[2228]++ > 0) check ('a string 2228'); break; - case 2229: if (n[2229]++ > 0) check ('a string 2229'); break; - case 2230: if (n[2230]++ > 0) check ('a string 2230'); break; - case 2231: if (n[2231]++ > 0) check ('a string 2231'); break; - case 2232: if (n[2232]++ > 0) check ('a string 2232'); break; - case 2233: if (n[2233]++ > 0) check ('a string 2233'); break; - case 2234: if (n[2234]++ > 0) check ('a string 2234'); break; - case 2235: if (n[2235]++ > 0) check ('a string 2235'); break; - case 2236: if (n[2236]++ > 0) check ('a string 2236'); break; - case 2237: if (n[2237]++ > 0) check ('a string 2237'); break; - case 2238: if (n[2238]++ > 0) check ('a string 2238'); break; - case 2239: if (n[2239]++ > 0) check ('a string 2239'); break; - case 2240: if (n[2240]++ > 0) check ('a string 2240'); break; - case 2241: if (n[2241]++ > 0) check ('a string 2241'); break; - case 2242: if (n[2242]++ > 0) check ('a string 2242'); break; - case 2243: if (n[2243]++ > 0) check ('a string 2243'); break; - case 2244: if (n[2244]++ > 0) check ('a string 2244'); break; - case 2245: if (n[2245]++ > 0) check ('a string 2245'); break; - case 2246: if (n[2246]++ > 0) check ('a string 2246'); break; - case 2247: if (n[2247]++ > 0) check ('a string 2247'); break; - case 2248: if (n[2248]++ > 0) check ('a string 2248'); break; - case 2249: if (n[2249]++ > 0) check ('a string 2249'); break; - case 2250: if (n[2250]++ > 0) check ('a string 2250'); break; - case 2251: if (n[2251]++ > 0) check ('a string 2251'); break; - case 2252: if (n[2252]++ > 0) check ('a string 2252'); break; - case 2253: if (n[2253]++ > 0) check ('a string 2253'); break; - case 2254: if (n[2254]++ > 0) check ('a string 2254'); break; - case 2255: if (n[2255]++ > 0) check ('a string 2255'); break; - case 2256: if (n[2256]++ > 0) check ('a string 2256'); break; - case 2257: if (n[2257]++ > 0) check ('a string 2257'); break; - case 2258: if (n[2258]++ > 0) check ('a string 2258'); break; - case 2259: if (n[2259]++ > 0) check ('a string 2259'); break; - case 2260: if (n[2260]++ > 0) check ('a string 2260'); break; - case 2261: if (n[2261]++ > 0) check ('a string 2261'); break; - case 2262: if (n[2262]++ > 0) check ('a string 2262'); break; - case 2263: if (n[2263]++ > 0) check ('a string 2263'); break; - case 2264: if (n[2264]++ > 0) check ('a string 2264'); break; - case 2265: if (n[2265]++ > 0) check ('a string 2265'); break; - case 2266: if (n[2266]++ > 0) check ('a string 2266'); break; - case 2267: if (n[2267]++ > 0) check ('a string 2267'); break; - case 2268: if (n[2268]++ > 0) check ('a string 2268'); break; - case 2269: if (n[2269]++ > 0) check ('a string 2269'); break; - case 2270: if (n[2270]++ > 0) check ('a string 2270'); break; - case 2271: if (n[2271]++ > 0) check ('a string 2271'); break; - case 2272: if (n[2272]++ > 0) check ('a string 2272'); break; - case 2273: if (n[2273]++ > 0) check ('a string 2273'); break; - case 2274: if (n[2274]++ > 0) check ('a string 2274'); break; - case 2275: if (n[2275]++ > 0) check ('a string 2275'); break; - case 2276: if (n[2276]++ > 0) check ('a string 2276'); break; - case 2277: if (n[2277]++ > 0) check ('a string 2277'); break; - case 2278: if (n[2278]++ > 0) check ('a string 2278'); break; - case 2279: if (n[2279]++ > 0) check ('a string 2279'); break; - case 2280: if (n[2280]++ > 0) check ('a string 2280'); break; - case 2281: if (n[2281]++ > 0) check ('a string 2281'); break; - case 2282: if (n[2282]++ > 0) check ('a string 2282'); break; - case 2283: if (n[2283]++ > 0) check ('a string 2283'); break; - case 2284: if (n[2284]++ > 0) check ('a string 2284'); break; - case 2285: if (n[2285]++ > 0) check ('a string 2285'); break; - case 2286: if (n[2286]++ > 0) check ('a string 2286'); break; - case 2287: if (n[2287]++ > 0) check ('a string 2287'); break; - case 2288: if (n[2288]++ > 0) check ('a string 2288'); break; - case 2289: if (n[2289]++ > 0) check ('a string 2289'); break; - case 2290: if (n[2290]++ > 0) check ('a string 2290'); break; - case 2291: if (n[2291]++ > 0) check ('a string 2291'); break; - case 2292: if (n[2292]++ > 0) check ('a string 2292'); break; - case 2293: if (n[2293]++ > 0) check ('a string 2293'); break; - case 2294: if (n[2294]++ > 0) check ('a string 2294'); break; - case 2295: if (n[2295]++ > 0) check ('a string 2295'); break; - case 2296: if (n[2296]++ > 0) check ('a string 2296'); break; - case 2297: if (n[2297]++ > 0) check ('a string 2297'); break; - case 2298: if (n[2298]++ > 0) check ('a string 2298'); break; - case 2299: if (n[2299]++ > 0) check ('a string 2299'); break; - case 2300: if (n[2300]++ > 0) check ('a string 2300'); break; - case 2301: if (n[2301]++ > 0) check ('a string 2301'); break; - case 2302: if (n[2302]++ > 0) check ('a string 2302'); break; - case 2303: if (n[2303]++ > 0) check ('a string 2303'); break; - case 2304: if (n[2304]++ > 0) check ('a string 2304'); break; - case 2305: if (n[2305]++ > 0) check ('a string 2305'); break; - case 2306: if (n[2306]++ > 0) check ('a string 2306'); break; - case 2307: if (n[2307]++ > 0) check ('a string 2307'); break; - case 2308: if (n[2308]++ > 0) check ('a string 2308'); break; - case 2309: if (n[2309]++ > 0) check ('a string 2309'); break; - case 2310: if (n[2310]++ > 0) check ('a string 2310'); break; - case 2311: if (n[2311]++ > 0) check ('a string 2311'); break; - case 2312: if (n[2312]++ > 0) check ('a string 2312'); break; - case 2313: if (n[2313]++ > 0) check ('a string 2313'); break; - case 2314: if (n[2314]++ > 0) check ('a string 2314'); break; - case 2315: if (n[2315]++ > 0) check ('a string 2315'); break; - case 2316: if (n[2316]++ > 0) check ('a string 2316'); break; - case 2317: if (n[2317]++ > 0) check ('a string 2317'); break; - case 2318: if (n[2318]++ > 0) check ('a string 2318'); break; - case 2319: if (n[2319]++ > 0) check ('a string 2319'); break; - case 2320: if (n[2320]++ > 0) check ('a string 2320'); break; - case 2321: if (n[2321]++ > 0) check ('a string 2321'); break; - case 2322: if (n[2322]++ > 0) check ('a string 2322'); break; - case 2323: if (n[2323]++ > 0) check ('a string 2323'); break; - case 2324: if (n[2324]++ > 0) check ('a string 2324'); break; - case 2325: if (n[2325]++ > 0) check ('a string 2325'); break; - case 2326: if (n[2326]++ > 0) check ('a string 2326'); break; - case 2327: if (n[2327]++ > 0) check ('a string 2327'); break; - case 2328: if (n[2328]++ > 0) check ('a string 2328'); break; - case 2329: if (n[2329]++ > 0) check ('a string 2329'); break; - case 2330: if (n[2330]++ > 0) check ('a string 2330'); break; - case 2331: if (n[2331]++ > 0) check ('a string 2331'); break; - case 2332: if (n[2332]++ > 0) check ('a string 2332'); break; - case 2333: if (n[2333]++ > 0) check ('a string 2333'); break; - case 2334: if (n[2334]++ > 0) check ('a string 2334'); break; - case 2335: if (n[2335]++ > 0) check ('a string 2335'); break; - case 2336: if (n[2336]++ > 0) check ('a string 2336'); break; - case 2337: if (n[2337]++ > 0) check ('a string 2337'); break; - case 2338: if (n[2338]++ > 0) check ('a string 2338'); break; - case 2339: if (n[2339]++ > 0) check ('a string 2339'); break; - case 2340: if (n[2340]++ > 0) check ('a string 2340'); break; - case 2341: if (n[2341]++ > 0) check ('a string 2341'); break; - case 2342: if (n[2342]++ > 0) check ('a string 2342'); break; - case 2343: if (n[2343]++ > 0) check ('a string 2343'); break; - case 2344: if (n[2344]++ > 0) check ('a string 2344'); break; - case 2345: if (n[2345]++ > 0) check ('a string 2345'); break; - case 2346: if (n[2346]++ > 0) check ('a string 2346'); break; - case 2347: if (n[2347]++ > 0) check ('a string 2347'); break; - case 2348: if (n[2348]++ > 0) check ('a string 2348'); break; - case 2349: if (n[2349]++ > 0) check ('a string 2349'); break; - case 2350: if (n[2350]++ > 0) check ('a string 2350'); break; - case 2351: if (n[2351]++ > 0) check ('a string 2351'); break; - case 2352: if (n[2352]++ > 0) check ('a string 2352'); break; - case 2353: if (n[2353]++ > 0) check ('a string 2353'); break; - case 2354: if (n[2354]++ > 0) check ('a string 2354'); break; - case 2355: if (n[2355]++ > 0) check ('a string 2355'); break; - case 2356: if (n[2356]++ > 0) check ('a string 2356'); break; - case 2357: if (n[2357]++ > 0) check ('a string 2357'); break; - case 2358: if (n[2358]++ > 0) check ('a string 2358'); break; - case 2359: if (n[2359]++ > 0) check ('a string 2359'); break; - case 2360: if (n[2360]++ > 0) check ('a string 2360'); break; - case 2361: if (n[2361]++ > 0) check ('a string 2361'); break; - case 2362: if (n[2362]++ > 0) check ('a string 2362'); break; - case 2363: if (n[2363]++ > 0) check ('a string 2363'); break; - case 2364: if (n[2364]++ > 0) check ('a string 2364'); break; - case 2365: if (n[2365]++ > 0) check ('a string 2365'); break; - case 2366: if (n[2366]++ > 0) check ('a string 2366'); break; - case 2367: if (n[2367]++ > 0) check ('a string 2367'); break; - case 2368: if (n[2368]++ > 0) check ('a string 2368'); break; - case 2369: if (n[2369]++ > 0) check ('a string 2369'); break; - case 2370: if (n[2370]++ > 0) check ('a string 2370'); break; - case 2371: if (n[2371]++ > 0) check ('a string 2371'); break; - case 2372: if (n[2372]++ > 0) check ('a string 2372'); break; - case 2373: if (n[2373]++ > 0) check ('a string 2373'); break; - case 2374: if (n[2374]++ > 0) check ('a string 2374'); break; - case 2375: if (n[2375]++ > 0) check ('a string 2375'); break; - case 2376: if (n[2376]++ > 0) check ('a string 2376'); break; - case 2377: if (n[2377]++ > 0) check ('a string 2377'); break; - case 2378: if (n[2378]++ > 0) check ('a string 2378'); break; - case 2379: if (n[2379]++ > 0) check ('a string 2379'); break; - case 2380: if (n[2380]++ > 0) check ('a string 2380'); break; - case 2381: if (n[2381]++ > 0) check ('a string 2381'); break; - case 2382: if (n[2382]++ > 0) check ('a string 2382'); break; - case 2383: if (n[2383]++ > 0) check ('a string 2383'); break; - case 2384: if (n[2384]++ > 0) check ('a string 2384'); break; - case 2385: if (n[2385]++ > 0) check ('a string 2385'); break; - case 2386: if (n[2386]++ > 0) check ('a string 2386'); break; - case 2387: if (n[2387]++ > 0) check ('a string 2387'); break; - case 2388: if (n[2388]++ > 0) check ('a string 2388'); break; - case 2389: if (n[2389]++ > 0) check ('a string 2389'); break; - case 2390: if (n[2390]++ > 0) check ('a string 2390'); break; - case 2391: if (n[2391]++ > 0) check ('a string 2391'); break; - case 2392: if (n[2392]++ > 0) check ('a string 2392'); break; - case 2393: if (n[2393]++ > 0) check ('a string 2393'); break; - case 2394: if (n[2394]++ > 0) check ('a string 2394'); break; - case 2395: if (n[2395]++ > 0) check ('a string 2395'); break; - case 2396: if (n[2396]++ > 0) check ('a string 2396'); break; - case 2397: if (n[2397]++ > 0) check ('a string 2397'); break; - case 2398: if (n[2398]++ > 0) check ('a string 2398'); break; - case 2399: if (n[2399]++ > 0) check ('a string 2399'); break; - case 2400: if (n[2400]++ > 0) check ('a string 2400'); break; - case 2401: if (n[2401]++ > 0) check ('a string 2401'); break; - case 2402: if (n[2402]++ > 0) check ('a string 2402'); break; - case 2403: if (n[2403]++ > 0) check ('a string 2403'); break; - case 2404: if (n[2404]++ > 0) check ('a string 2404'); break; - case 2405: if (n[2405]++ > 0) check ('a string 2405'); break; - case 2406: if (n[2406]++ > 0) check ('a string 2406'); break; - case 2407: if (n[2407]++ > 0) check ('a string 2407'); break; - case 2408: if (n[2408]++ > 0) check ('a string 2408'); break; - case 2409: if (n[2409]++ > 0) check ('a string 2409'); break; - case 2410: if (n[2410]++ > 0) check ('a string 2410'); break; - case 2411: if (n[2411]++ > 0) check ('a string 2411'); break; - case 2412: if (n[2412]++ > 0) check ('a string 2412'); break; - case 2413: if (n[2413]++ > 0) check ('a string 2413'); break; - case 2414: if (n[2414]++ > 0) check ('a string 2414'); break; - case 2415: if (n[2415]++ > 0) check ('a string 2415'); break; - case 2416: if (n[2416]++ > 0) check ('a string 2416'); break; - case 2417: if (n[2417]++ > 0) check ('a string 2417'); break; - case 2418: if (n[2418]++ > 0) check ('a string 2418'); break; - case 2419: if (n[2419]++ > 0) check ('a string 2419'); break; - case 2420: if (n[2420]++ > 0) check ('a string 2420'); break; - case 2421: if (n[2421]++ > 0) check ('a string 2421'); break; - case 2422: if (n[2422]++ > 0) check ('a string 2422'); break; - case 2423: if (n[2423]++ > 0) check ('a string 2423'); break; - case 2424: if (n[2424]++ > 0) check ('a string 2424'); break; - case 2425: if (n[2425]++ > 0) check ('a string 2425'); break; - case 2426: if (n[2426]++ > 0) check ('a string 2426'); break; - case 2427: if (n[2427]++ > 0) check ('a string 2427'); break; - case 2428: if (n[2428]++ > 0) check ('a string 2428'); break; - case 2429: if (n[2429]++ > 0) check ('a string 2429'); break; - case 2430: if (n[2430]++ > 0) check ('a string 2430'); break; - case 2431: if (n[2431]++ > 0) check ('a string 2431'); break; - case 2432: if (n[2432]++ > 0) check ('a string 2432'); break; - case 2433: if (n[2433]++ > 0) check ('a string 2433'); break; - case 2434: if (n[2434]++ > 0) check ('a string 2434'); break; - case 2435: if (n[2435]++ > 0) check ('a string 2435'); break; - case 2436: if (n[2436]++ > 0) check ('a string 2436'); break; - case 2437: if (n[2437]++ > 0) check ('a string 2437'); break; - case 2438: if (n[2438]++ > 0) check ('a string 2438'); break; - case 2439: if (n[2439]++ > 0) check ('a string 2439'); break; - case 2440: if (n[2440]++ > 0) check ('a string 2440'); break; - case 2441: if (n[2441]++ > 0) check ('a string 2441'); break; - case 2442: if (n[2442]++ > 0) check ('a string 2442'); break; - case 2443: if (n[2443]++ > 0) check ('a string 2443'); break; - case 2444: if (n[2444]++ > 0) check ('a string 2444'); break; - case 2445: if (n[2445]++ > 0) check ('a string 2445'); break; - case 2446: if (n[2446]++ > 0) check ('a string 2446'); break; - case 2447: if (n[2447]++ > 0) check ('a string 2447'); break; - case 2448: if (n[2448]++ > 0) check ('a string 2448'); break; - case 2449: if (n[2449]++ > 0) check ('a string 2449'); break; - case 2450: if (n[2450]++ > 0) check ('a string 2450'); break; - case 2451: if (n[2451]++ > 0) check ('a string 2451'); break; - case 2452: if (n[2452]++ > 0) check ('a string 2452'); break; - case 2453: if (n[2453]++ > 0) check ('a string 2453'); break; - case 2454: if (n[2454]++ > 0) check ('a string 2454'); break; - case 2455: if (n[2455]++ > 0) check ('a string 2455'); break; - case 2456: if (n[2456]++ > 0) check ('a string 2456'); break; - case 2457: if (n[2457]++ > 0) check ('a string 2457'); break; - case 2458: if (n[2458]++ > 0) check ('a string 2458'); break; - case 2459: if (n[2459]++ > 0) check ('a string 2459'); break; - case 2460: if (n[2460]++ > 0) check ('a string 2460'); break; - case 2461: if (n[2461]++ > 0) check ('a string 2461'); break; - case 2462: if (n[2462]++ > 0) check ('a string 2462'); break; - case 2463: if (n[2463]++ > 0) check ('a string 2463'); break; - case 2464: if (n[2464]++ > 0) check ('a string 2464'); break; - case 2465: if (n[2465]++ > 0) check ('a string 2465'); break; - case 2466: if (n[2466]++ > 0) check ('a string 2466'); break; - case 2467: if (n[2467]++ > 0) check ('a string 2467'); break; - case 2468: if (n[2468]++ > 0) check ('a string 2468'); break; - case 2469: if (n[2469]++ > 0) check ('a string 2469'); break; - case 2470: if (n[2470]++ > 0) check ('a string 2470'); break; - case 2471: if (n[2471]++ > 0) check ('a string 2471'); break; - case 2472: if (n[2472]++ > 0) check ('a string 2472'); break; - case 2473: if (n[2473]++ > 0) check ('a string 2473'); break; - case 2474: if (n[2474]++ > 0) check ('a string 2474'); break; - case 2475: if (n[2475]++ > 0) check ('a string 2475'); break; - case 2476: if (n[2476]++ > 0) check ('a string 2476'); break; - case 2477: if (n[2477]++ > 0) check ('a string 2477'); break; - case 2478: if (n[2478]++ > 0) check ('a string 2478'); break; - case 2479: if (n[2479]++ > 0) check ('a string 2479'); break; - case 2480: if (n[2480]++ > 0) check ('a string 2480'); break; - case 2481: if (n[2481]++ > 0) check ('a string 2481'); break; - case 2482: if (n[2482]++ > 0) check ('a string 2482'); break; - case 2483: if (n[2483]++ > 0) check ('a string 2483'); break; - case 2484: if (n[2484]++ > 0) check ('a string 2484'); break; - case 2485: if (n[2485]++ > 0) check ('a string 2485'); break; - case 2486: if (n[2486]++ > 0) check ('a string 2486'); break; - case 2487: if (n[2487]++ > 0) check ('a string 2487'); break; - case 2488: if (n[2488]++ > 0) check ('a string 2488'); break; - case 2489: if (n[2489]++ > 0) check ('a string 2489'); break; - case 2490: if (n[2490]++ > 0) check ('a string 2490'); break; - case 2491: if (n[2491]++ > 0) check ('a string 2491'); break; - case 2492: if (n[2492]++ > 0) check ('a string 2492'); break; - case 2493: if (n[2493]++ > 0) check ('a string 2493'); break; - case 2494: if (n[2494]++ > 0) check ('a string 2494'); break; - case 2495: if (n[2495]++ > 0) check ('a string 2495'); break; - case 2496: if (n[2496]++ > 0) check ('a string 2496'); break; - case 2497: if (n[2497]++ > 0) check ('a string 2497'); break; - case 2498: if (n[2498]++ > 0) check ('a string 2498'); break; - case 2499: if (n[2499]++ > 0) check ('a string 2499'); break; - case 2500: if (n[2500]++ > 0) check ('a string 2500'); break; - case 2501: if (n[2501]++ > 0) check ('a string 2501'); break; - case 2502: if (n[2502]++ > 0) check ('a string 2502'); break; - case 2503: if (n[2503]++ > 0) check ('a string 2503'); break; - case 2504: if (n[2504]++ > 0) check ('a string 2504'); break; - case 2505: if (n[2505]++ > 0) check ('a string 2505'); break; - case 2506: if (n[2506]++ > 0) check ('a string 2506'); break; - case 2507: if (n[2507]++ > 0) check ('a string 2507'); break; - case 2508: if (n[2508]++ > 0) check ('a string 2508'); break; - case 2509: if (n[2509]++ > 0) check ('a string 2509'); break; - case 2510: if (n[2510]++ > 0) check ('a string 2510'); break; - case 2511: if (n[2511]++ > 0) check ('a string 2511'); break; - case 2512: if (n[2512]++ > 0) check ('a string 2512'); break; - case 2513: if (n[2513]++ > 0) check ('a string 2513'); break; - case 2514: if (n[2514]++ > 0) check ('a string 2514'); break; - case 2515: if (n[2515]++ > 0) check ('a string 2515'); break; - case 2516: if (n[2516]++ > 0) check ('a string 2516'); break; - case 2517: if (n[2517]++ > 0) check ('a string 2517'); break; - case 2518: if (n[2518]++ > 0) check ('a string 2518'); break; - case 2519: if (n[2519]++ > 0) check ('a string 2519'); break; - case 2520: if (n[2520]++ > 0) check ('a string 2520'); break; - case 2521: if (n[2521]++ > 0) check ('a string 2521'); break; - case 2522: if (n[2522]++ > 0) check ('a string 2522'); break; - case 2523: if (n[2523]++ > 0) check ('a string 2523'); break; - case 2524: if (n[2524]++ > 0) check ('a string 2524'); break; - case 2525: if (n[2525]++ > 0) check ('a string 2525'); break; - case 2526: if (n[2526]++ > 0) check ('a string 2526'); break; - case 2527: if (n[2527]++ > 0) check ('a string 2527'); break; - case 2528: if (n[2528]++ > 0) check ('a string 2528'); break; - case 2529: if (n[2529]++ > 0) check ('a string 2529'); break; - case 2530: if (n[2530]++ > 0) check ('a string 2530'); break; - case 2531: if (n[2531]++ > 0) check ('a string 2531'); break; - case 2532: if (n[2532]++ > 0) check ('a string 2532'); break; - case 2533: if (n[2533]++ > 0) check ('a string 2533'); break; - case 2534: if (n[2534]++ > 0) check ('a string 2534'); break; - case 2535: if (n[2535]++ > 0) check ('a string 2535'); break; - case 2536: if (n[2536]++ > 0) check ('a string 2536'); break; - case 2537: if (n[2537]++ > 0) check ('a string 2537'); break; - case 2538: if (n[2538]++ > 0) check ('a string 2538'); break; - case 2539: if (n[2539]++ > 0) check ('a string 2539'); break; - case 2540: if (n[2540]++ > 0) check ('a string 2540'); break; - case 2541: if (n[2541]++ > 0) check ('a string 2541'); break; - case 2542: if (n[2542]++ > 0) check ('a string 2542'); break; - case 2543: if (n[2543]++ > 0) check ('a string 2543'); break; - case 2544: if (n[2544]++ > 0) check ('a string 2544'); break; - case 2545: if (n[2545]++ > 0) check ('a string 2545'); break; - case 2546: if (n[2546]++ > 0) check ('a string 2546'); break; - case 2547: if (n[2547]++ > 0) check ('a string 2547'); break; - case 2548: if (n[2548]++ > 0) check ('a string 2548'); break; - case 2549: if (n[2549]++ > 0) check ('a string 2549'); break; - case 2550: if (n[2550]++ > 0) check ('a string 2550'); break; - case 2551: if (n[2551]++ > 0) check ('a string 2551'); break; - case 2552: if (n[2552]++ > 0) check ('a string 2552'); break; - case 2553: if (n[2553]++ > 0) check ('a string 2553'); break; - case 2554: if (n[2554]++ > 0) check ('a string 2554'); break; - case 2555: if (n[2555]++ > 0) check ('a string 2555'); break; - case 2556: if (n[2556]++ > 0) check ('a string 2556'); break; - case 2557: if (n[2557]++ > 0) check ('a string 2557'); break; - case 2558: if (n[2558]++ > 0) check ('a string 2558'); break; - case 2559: if (n[2559]++ > 0) check ('a string 2559'); break; - case 2560: if (n[2560]++ > 0) check ('a string 2560'); break; - case 2561: if (n[2561]++ > 0) check ('a string 2561'); break; - case 2562: if (n[2562]++ > 0) check ('a string 2562'); break; - case 2563: if (n[2563]++ > 0) check ('a string 2563'); break; - case 2564: if (n[2564]++ > 0) check ('a string 2564'); break; - case 2565: if (n[2565]++ > 0) check ('a string 2565'); break; - case 2566: if (n[2566]++ > 0) check ('a string 2566'); break; - case 2567: if (n[2567]++ > 0) check ('a string 2567'); break; - case 2568: if (n[2568]++ > 0) check ('a string 2568'); break; - case 2569: if (n[2569]++ > 0) check ('a string 2569'); break; - case 2570: if (n[2570]++ > 0) check ('a string 2570'); break; - case 2571: if (n[2571]++ > 0) check ('a string 2571'); break; - case 2572: if (n[2572]++ > 0) check ('a string 2572'); break; - case 2573: if (n[2573]++ > 0) check ('a string 2573'); break; - case 2574: if (n[2574]++ > 0) check ('a string 2574'); break; - case 2575: if (n[2575]++ > 0) check ('a string 2575'); break; - case 2576: if (n[2576]++ > 0) check ('a string 2576'); break; - case 2577: if (n[2577]++ > 0) check ('a string 2577'); break; - case 2578: if (n[2578]++ > 0) check ('a string 2578'); break; - case 2579: if (n[2579]++ > 0) check ('a string 2579'); break; - case 2580: if (n[2580]++ > 0) check ('a string 2580'); break; - case 2581: if (n[2581]++ > 0) check ('a string 2581'); break; - case 2582: if (n[2582]++ > 0) check ('a string 2582'); break; - case 2583: if (n[2583]++ > 0) check ('a string 2583'); break; - case 2584: if (n[2584]++ > 0) check ('a string 2584'); break; - case 2585: if (n[2585]++ > 0) check ('a string 2585'); break; - case 2586: if (n[2586]++ > 0) check ('a string 2586'); break; - case 2587: if (n[2587]++ > 0) check ('a string 2587'); break; - case 2588: if (n[2588]++ > 0) check ('a string 2588'); break; - case 2589: if (n[2589]++ > 0) check ('a string 2589'); break; - case 2590: if (n[2590]++ > 0) check ('a string 2590'); break; - case 2591: if (n[2591]++ > 0) check ('a string 2591'); break; - case 2592: if (n[2592]++ > 0) check ('a string 2592'); break; - case 2593: if (n[2593]++ > 0) check ('a string 2593'); break; - case 2594: if (n[2594]++ > 0) check ('a string 2594'); break; - case 2595: if (n[2595]++ > 0) check ('a string 2595'); break; - case 2596: if (n[2596]++ > 0) check ('a string 2596'); break; - case 2597: if (n[2597]++ > 0) check ('a string 2597'); break; - case 2598: if (n[2598]++ > 0) check ('a string 2598'); break; - case 2599: if (n[2599]++ > 0) check ('a string 2599'); break; - case 2600: if (n[2600]++ > 0) check ('a string 2600'); break; - case 2601: if (n[2601]++ > 0) check ('a string 2601'); break; - case 2602: if (n[2602]++ > 0) check ('a string 2602'); break; - case 2603: if (n[2603]++ > 0) check ('a string 2603'); break; - case 2604: if (n[2604]++ > 0) check ('a string 2604'); break; - case 2605: if (n[2605]++ > 0) check ('a string 2605'); break; - case 2606: if (n[2606]++ > 0) check ('a string 2606'); break; - case 2607: if (n[2607]++ > 0) check ('a string 2607'); break; - case 2608: if (n[2608]++ > 0) check ('a string 2608'); break; - case 2609: if (n[2609]++ > 0) check ('a string 2609'); break; - case 2610: if (n[2610]++ > 0) check ('a string 2610'); break; - case 2611: if (n[2611]++ > 0) check ('a string 2611'); break; - case 2612: if (n[2612]++ > 0) check ('a string 2612'); break; - case 2613: if (n[2613]++ > 0) check ('a string 2613'); break; - case 2614: if (n[2614]++ > 0) check ('a string 2614'); break; - case 2615: if (n[2615]++ > 0) check ('a string 2615'); break; - case 2616: if (n[2616]++ > 0) check ('a string 2616'); break; - case 2617: if (n[2617]++ > 0) check ('a string 2617'); break; - case 2618: if (n[2618]++ > 0) check ('a string 2618'); break; - case 2619: if (n[2619]++ > 0) check ('a string 2619'); break; - case 2620: if (n[2620]++ > 0) check ('a string 2620'); break; - case 2621: if (n[2621]++ > 0) check ('a string 2621'); break; - case 2622: if (n[2622]++ > 0) check ('a string 2622'); break; - case 2623: if (n[2623]++ > 0) check ('a string 2623'); break; - case 2624: if (n[2624]++ > 0) check ('a string 2624'); break; - case 2625: if (n[2625]++ > 0) check ('a string 2625'); break; - case 2626: if (n[2626]++ > 0) check ('a string 2626'); break; - case 2627: if (n[2627]++ > 0) check ('a string 2627'); break; - case 2628: if (n[2628]++ > 0) check ('a string 2628'); break; - case 2629: if (n[2629]++ > 0) check ('a string 2629'); break; - case 2630: if (n[2630]++ > 0) check ('a string 2630'); break; - case 2631: if (n[2631]++ > 0) check ('a string 2631'); break; - case 2632: if (n[2632]++ > 0) check ('a string 2632'); break; - case 2633: if (n[2633]++ > 0) check ('a string 2633'); break; - case 2634: if (n[2634]++ > 0) check ('a string 2634'); break; - case 2635: if (n[2635]++ > 0) check ('a string 2635'); break; - case 2636: if (n[2636]++ > 0) check ('a string 2636'); break; - case 2637: if (n[2637]++ > 0) check ('a string 2637'); break; - case 2638: if (n[2638]++ > 0) check ('a string 2638'); break; - case 2639: if (n[2639]++ > 0) check ('a string 2639'); break; - case 2640: if (n[2640]++ > 0) check ('a string 2640'); break; - case 2641: if (n[2641]++ > 0) check ('a string 2641'); break; - case 2642: if (n[2642]++ > 0) check ('a string 2642'); break; - case 2643: if (n[2643]++ > 0) check ('a string 2643'); break; - case 2644: if (n[2644]++ > 0) check ('a string 2644'); break; - case 2645: if (n[2645]++ > 0) check ('a string 2645'); break; - case 2646: if (n[2646]++ > 0) check ('a string 2646'); break; - case 2647: if (n[2647]++ > 0) check ('a string 2647'); break; - case 2648: if (n[2648]++ > 0) check ('a string 2648'); break; - case 2649: if (n[2649]++ > 0) check ('a string 2649'); break; - case 2650: if (n[2650]++ > 0) check ('a string 2650'); break; - case 2651: if (n[2651]++ > 0) check ('a string 2651'); break; - case 2652: if (n[2652]++ > 0) check ('a string 2652'); break; - case 2653: if (n[2653]++ > 0) check ('a string 2653'); break; - case 2654: if (n[2654]++ > 0) check ('a string 2654'); break; - case 2655: if (n[2655]++ > 0) check ('a string 2655'); break; - case 2656: if (n[2656]++ > 0) check ('a string 2656'); break; - case 2657: if (n[2657]++ > 0) check ('a string 2657'); break; - case 2658: if (n[2658]++ > 0) check ('a string 2658'); break; - case 2659: if (n[2659]++ > 0) check ('a string 2659'); break; - case 2660: if (n[2660]++ > 0) check ('a string 2660'); break; - case 2661: if (n[2661]++ > 0) check ('a string 2661'); break; - case 2662: if (n[2662]++ > 0) check ('a string 2662'); break; - case 2663: if (n[2663]++ > 0) check ('a string 2663'); break; - case 2664: if (n[2664]++ > 0) check ('a string 2664'); break; - case 2665: if (n[2665]++ > 0) check ('a string 2665'); break; - case 2666: if (n[2666]++ > 0) check ('a string 2666'); break; - case 2667: if (n[2667]++ > 0) check ('a string 2667'); break; - case 2668: if (n[2668]++ > 0) check ('a string 2668'); break; - case 2669: if (n[2669]++ > 0) check ('a string 2669'); break; - case 2670: if (n[2670]++ > 0) check ('a string 2670'); break; - case 2671: if (n[2671]++ > 0) check ('a string 2671'); break; - case 2672: if (n[2672]++ > 0) check ('a string 2672'); break; - case 2673: if (n[2673]++ > 0) check ('a string 2673'); break; - case 2674: if (n[2674]++ > 0) check ('a string 2674'); break; - case 2675: if (n[2675]++ > 0) check ('a string 2675'); break; - case 2676: if (n[2676]++ > 0) check ('a string 2676'); break; - case 2677: if (n[2677]++ > 0) check ('a string 2677'); break; - case 2678: if (n[2678]++ > 0) check ('a string 2678'); break; - case 2679: if (n[2679]++ > 0) check ('a string 2679'); break; - case 2680: if (n[2680]++ > 0) check ('a string 2680'); break; - case 2681: if (n[2681]++ > 0) check ('a string 2681'); break; - case 2682: if (n[2682]++ > 0) check ('a string 2682'); break; - case 2683: if (n[2683]++ > 0) check ('a string 2683'); break; - case 2684: if (n[2684]++ > 0) check ('a string 2684'); break; - case 2685: if (n[2685]++ > 0) check ('a string 2685'); break; - case 2686: if (n[2686]++ > 0) check ('a string 2686'); break; - case 2687: if (n[2687]++ > 0) check ('a string 2687'); break; - case 2688: if (n[2688]++ > 0) check ('a string 2688'); break; - case 2689: if (n[2689]++ > 0) check ('a string 2689'); break; - case 2690: if (n[2690]++ > 0) check ('a string 2690'); break; - case 2691: if (n[2691]++ > 0) check ('a string 2691'); break; - case 2692: if (n[2692]++ > 0) check ('a string 2692'); break; - case 2693: if (n[2693]++ > 0) check ('a string 2693'); break; - case 2694: if (n[2694]++ > 0) check ('a string 2694'); break; - case 2695: if (n[2695]++ > 0) check ('a string 2695'); break; - case 2696: if (n[2696]++ > 0) check ('a string 2696'); break; - case 2697: if (n[2697]++ > 0) check ('a string 2697'); break; - case 2698: if (n[2698]++ > 0) check ('a string 2698'); break; - case 2699: if (n[2699]++ > 0) check ('a string 2699'); break; - case 2700: if (n[2700]++ > 0) check ('a string 2700'); break; - case 2701: if (n[2701]++ > 0) check ('a string 2701'); break; - case 2702: if (n[2702]++ > 0) check ('a string 2702'); break; - case 2703: if (n[2703]++ > 0) check ('a string 2703'); break; - case 2704: if (n[2704]++ > 0) check ('a string 2704'); break; - case 2705: if (n[2705]++ > 0) check ('a string 2705'); break; - case 2706: if (n[2706]++ > 0) check ('a string 2706'); break; - case 2707: if (n[2707]++ > 0) check ('a string 2707'); break; - case 2708: if (n[2708]++ > 0) check ('a string 2708'); break; - case 2709: if (n[2709]++ > 0) check ('a string 2709'); break; - case 2710: if (n[2710]++ > 0) check ('a string 2710'); break; - case 2711: if (n[2711]++ > 0) check ('a string 2711'); break; - case 2712: if (n[2712]++ > 0) check ('a string 2712'); break; - case 2713: if (n[2713]++ > 0) check ('a string 2713'); break; - case 2714: if (n[2714]++ > 0) check ('a string 2714'); break; - case 2715: if (n[2715]++ > 0) check ('a string 2715'); break; - case 2716: if (n[2716]++ > 0) check ('a string 2716'); break; - case 2717: if (n[2717]++ > 0) check ('a string 2717'); break; - case 2718: if (n[2718]++ > 0) check ('a string 2718'); break; - case 2719: if (n[2719]++ > 0) check ('a string 2719'); break; - case 2720: if (n[2720]++ > 0) check ('a string 2720'); break; - case 2721: if (n[2721]++ > 0) check ('a string 2721'); break; - case 2722: if (n[2722]++ > 0) check ('a string 2722'); break; - case 2723: if (n[2723]++ > 0) check ('a string 2723'); break; - case 2724: if (n[2724]++ > 0) check ('a string 2724'); break; - case 2725: if (n[2725]++ > 0) check ('a string 2725'); break; - case 2726: if (n[2726]++ > 0) check ('a string 2726'); break; - case 2727: if (n[2727]++ > 0) check ('a string 2727'); break; - case 2728: if (n[2728]++ > 0) check ('a string 2728'); break; - case 2729: if (n[2729]++ > 0) check ('a string 2729'); break; - case 2730: if (n[2730]++ > 0) check ('a string 2730'); break; - case 2731: if (n[2731]++ > 0) check ('a string 2731'); break; - case 2732: if (n[2732]++ > 0) check ('a string 2732'); break; - case 2733: if (n[2733]++ > 0) check ('a string 2733'); break; - case 2734: if (n[2734]++ > 0) check ('a string 2734'); break; - case 2735: if (n[2735]++ > 0) check ('a string 2735'); break; - case 2736: if (n[2736]++ > 0) check ('a string 2736'); break; - case 2737: if (n[2737]++ > 0) check ('a string 2737'); break; - case 2738: if (n[2738]++ > 0) check ('a string 2738'); break; - case 2739: if (n[2739]++ > 0) check ('a string 2739'); break; - case 2740: if (n[2740]++ > 0) check ('a string 2740'); break; - case 2741: if (n[2741]++ > 0) check ('a string 2741'); break; - case 2742: if (n[2742]++ > 0) check ('a string 2742'); break; - case 2743: if (n[2743]++ > 0) check ('a string 2743'); break; - case 2744: if (n[2744]++ > 0) check ('a string 2744'); break; - case 2745: if (n[2745]++ > 0) check ('a string 2745'); break; - case 2746: if (n[2746]++ > 0) check ('a string 2746'); break; - case 2747: if (n[2747]++ > 0) check ('a string 2747'); break; - case 2748: if (n[2748]++ > 0) check ('a string 2748'); break; - case 2749: if (n[2749]++ > 0) check ('a string 2749'); break; - case 2750: if (n[2750]++ > 0) check ('a string 2750'); break; - case 2751: if (n[2751]++ > 0) check ('a string 2751'); break; - case 2752: if (n[2752]++ > 0) check ('a string 2752'); break; - case 2753: if (n[2753]++ > 0) check ('a string 2753'); break; - case 2754: if (n[2754]++ > 0) check ('a string 2754'); break; - case 2755: if (n[2755]++ > 0) check ('a string 2755'); break; - case 2756: if (n[2756]++ > 0) check ('a string 2756'); break; - case 2757: if (n[2757]++ > 0) check ('a string 2757'); break; - case 2758: if (n[2758]++ > 0) check ('a string 2758'); break; - case 2759: if (n[2759]++ > 0) check ('a string 2759'); break; - case 2760: if (n[2760]++ > 0) check ('a string 2760'); break; - case 2761: if (n[2761]++ > 0) check ('a string 2761'); break; - case 2762: if (n[2762]++ > 0) check ('a string 2762'); break; - case 2763: if (n[2763]++ > 0) check ('a string 2763'); break; - case 2764: if (n[2764]++ > 0) check ('a string 2764'); break; - case 2765: if (n[2765]++ > 0) check ('a string 2765'); break; - case 2766: if (n[2766]++ > 0) check ('a string 2766'); break; - case 2767: if (n[2767]++ > 0) check ('a string 2767'); break; - case 2768: if (n[2768]++ > 0) check ('a string 2768'); break; - case 2769: if (n[2769]++ > 0) check ('a string 2769'); break; - case 2770: if (n[2770]++ > 0) check ('a string 2770'); break; - case 2771: if (n[2771]++ > 0) check ('a string 2771'); break; - case 2772: if (n[2772]++ > 0) check ('a string 2772'); break; - case 2773: if (n[2773]++ > 0) check ('a string 2773'); break; - case 2774: if (n[2774]++ > 0) check ('a string 2774'); break; - case 2775: if (n[2775]++ > 0) check ('a string 2775'); break; - case 2776: if (n[2776]++ > 0) check ('a string 2776'); break; - case 2777: if (n[2777]++ > 0) check ('a string 2777'); break; - case 2778: if (n[2778]++ > 0) check ('a string 2778'); break; - case 2779: if (n[2779]++ > 0) check ('a string 2779'); break; - case 2780: if (n[2780]++ > 0) check ('a string 2780'); break; - case 2781: if (n[2781]++ > 0) check ('a string 2781'); break; - case 2782: if (n[2782]++ > 0) check ('a string 2782'); break; - case 2783: if (n[2783]++ > 0) check ('a string 2783'); break; - case 2784: if (n[2784]++ > 0) check ('a string 2784'); break; - case 2785: if (n[2785]++ > 0) check ('a string 2785'); break; - case 2786: if (n[2786]++ > 0) check ('a string 2786'); break; - case 2787: if (n[2787]++ > 0) check ('a string 2787'); break; - case 2788: if (n[2788]++ > 0) check ('a string 2788'); break; - case 2789: if (n[2789]++ > 0) check ('a string 2789'); break; - case 2790: if (n[2790]++ > 0) check ('a string 2790'); break; - case 2791: if (n[2791]++ > 0) check ('a string 2791'); break; - case 2792: if (n[2792]++ > 0) check ('a string 2792'); break; - case 2793: if (n[2793]++ > 0) check ('a string 2793'); break; - case 2794: if (n[2794]++ > 0) check ('a string 2794'); break; - case 2795: if (n[2795]++ > 0) check ('a string 2795'); break; - case 2796: if (n[2796]++ > 0) check ('a string 2796'); break; - case 2797: if (n[2797]++ > 0) check ('a string 2797'); break; - case 2798: if (n[2798]++ > 0) check ('a string 2798'); break; - case 2799: if (n[2799]++ > 0) check ('a string 2799'); break; - case 2800: if (n[2800]++ > 0) check ('a string 2800'); break; - case 2801: if (n[2801]++ > 0) check ('a string 2801'); break; - case 2802: if (n[2802]++ > 0) check ('a string 2802'); break; - case 2803: if (n[2803]++ > 0) check ('a string 2803'); break; - case 2804: if (n[2804]++ > 0) check ('a string 2804'); break; - case 2805: if (n[2805]++ > 0) check ('a string 2805'); break; - case 2806: if (n[2806]++ > 0) check ('a string 2806'); break; - case 2807: if (n[2807]++ > 0) check ('a string 2807'); break; - case 2808: if (n[2808]++ > 0) check ('a string 2808'); break; - case 2809: if (n[2809]++ > 0) check ('a string 2809'); break; - case 2810: if (n[2810]++ > 0) check ('a string 2810'); break; - case 2811: if (n[2811]++ > 0) check ('a string 2811'); break; - case 2812: if (n[2812]++ > 0) check ('a string 2812'); break; - case 2813: if (n[2813]++ > 0) check ('a string 2813'); break; - case 2814: if (n[2814]++ > 0) check ('a string 2814'); break; - case 2815: if (n[2815]++ > 0) check ('a string 2815'); break; - case 2816: if (n[2816]++ > 0) check ('a string 2816'); break; - case 2817: if (n[2817]++ > 0) check ('a string 2817'); break; - case 2818: if (n[2818]++ > 0) check ('a string 2818'); break; - case 2819: if (n[2819]++ > 0) check ('a string 2819'); break; - case 2820: if (n[2820]++ > 0) check ('a string 2820'); break; - case 2821: if (n[2821]++ > 0) check ('a string 2821'); break; - case 2822: if (n[2822]++ > 0) check ('a string 2822'); break; - case 2823: if (n[2823]++ > 0) check ('a string 2823'); break; - case 2824: if (n[2824]++ > 0) check ('a string 2824'); break; - case 2825: if (n[2825]++ > 0) check ('a string 2825'); break; - case 2826: if (n[2826]++ > 0) check ('a string 2826'); break; - case 2827: if (n[2827]++ > 0) check ('a string 2827'); break; - case 2828: if (n[2828]++ > 0) check ('a string 2828'); break; - case 2829: if (n[2829]++ > 0) check ('a string 2829'); break; - case 2830: if (n[2830]++ > 0) check ('a string 2830'); break; - case 2831: if (n[2831]++ > 0) check ('a string 2831'); break; - case 2832: if (n[2832]++ > 0) check ('a string 2832'); break; - case 2833: if (n[2833]++ > 0) check ('a string 2833'); break; - case 2834: if (n[2834]++ > 0) check ('a string 2834'); break; - case 2835: if (n[2835]++ > 0) check ('a string 2835'); break; - case 2836: if (n[2836]++ > 0) check ('a string 2836'); break; - case 2837: if (n[2837]++ > 0) check ('a string 2837'); break; - case 2838: if (n[2838]++ > 0) check ('a string 2838'); break; - case 2839: if (n[2839]++ > 0) check ('a string 2839'); break; - case 2840: if (n[2840]++ > 0) check ('a string 2840'); break; - case 2841: if (n[2841]++ > 0) check ('a string 2841'); break; - case 2842: if (n[2842]++ > 0) check ('a string 2842'); break; - case 2843: if (n[2843]++ > 0) check ('a string 2843'); break; - case 2844: if (n[2844]++ > 0) check ('a string 2844'); break; - case 2845: if (n[2845]++ > 0) check ('a string 2845'); break; - case 2846: if (n[2846]++ > 0) check ('a string 2846'); break; - case 2847: if (n[2847]++ > 0) check ('a string 2847'); break; - case 2848: if (n[2848]++ > 0) check ('a string 2848'); break; - case 2849: if (n[2849]++ > 0) check ('a string 2849'); break; - case 2850: if (n[2850]++ > 0) check ('a string 2850'); break; - case 2851: if (n[2851]++ > 0) check ('a string 2851'); break; - case 2852: if (n[2852]++ > 0) check ('a string 2852'); break; - case 2853: if (n[2853]++ > 0) check ('a string 2853'); break; - case 2854: if (n[2854]++ > 0) check ('a string 2854'); break; - case 2855: if (n[2855]++ > 0) check ('a string 2855'); break; - case 2856: if (n[2856]++ > 0) check ('a string 2856'); break; - case 2857: if (n[2857]++ > 0) check ('a string 2857'); break; - case 2858: if (n[2858]++ > 0) check ('a string 2858'); break; - case 2859: if (n[2859]++ > 0) check ('a string 2859'); break; - case 2860: if (n[2860]++ > 0) check ('a string 2860'); break; - case 2861: if (n[2861]++ > 0) check ('a string 2861'); break; - case 2862: if (n[2862]++ > 0) check ('a string 2862'); break; - case 2863: if (n[2863]++ > 0) check ('a string 2863'); break; - case 2864: if (n[2864]++ > 0) check ('a string 2864'); break; - case 2865: if (n[2865]++ > 0) check ('a string 2865'); break; - case 2866: if (n[2866]++ > 0) check ('a string 2866'); break; - case 2867: if (n[2867]++ > 0) check ('a string 2867'); break; - case 2868: if (n[2868]++ > 0) check ('a string 2868'); break; - case 2869: if (n[2869]++ > 0) check ('a string 2869'); break; - case 2870: if (n[2870]++ > 0) check ('a string 2870'); break; - case 2871: if (n[2871]++ > 0) check ('a string 2871'); break; - case 2872: if (n[2872]++ > 0) check ('a string 2872'); break; - case 2873: if (n[2873]++ > 0) check ('a string 2873'); break; - case 2874: if (n[2874]++ > 0) check ('a string 2874'); break; - case 2875: if (n[2875]++ > 0) check ('a string 2875'); break; - case 2876: if (n[2876]++ > 0) check ('a string 2876'); break; - case 2877: if (n[2877]++ > 0) check ('a string 2877'); break; - case 2878: if (n[2878]++ > 0) check ('a string 2878'); break; - case 2879: if (n[2879]++ > 0) check ('a string 2879'); break; - case 2880: if (n[2880]++ > 0) check ('a string 2880'); break; - case 2881: if (n[2881]++ > 0) check ('a string 2881'); break; - case 2882: if (n[2882]++ > 0) check ('a string 2882'); break; - case 2883: if (n[2883]++ > 0) check ('a string 2883'); break; - case 2884: if (n[2884]++ > 0) check ('a string 2884'); break; - case 2885: if (n[2885]++ > 0) check ('a string 2885'); break; - case 2886: if (n[2886]++ > 0) check ('a string 2886'); break; - case 2887: if (n[2887]++ > 0) check ('a string 2887'); break; - case 2888: if (n[2888]++ > 0) check ('a string 2888'); break; - case 2889: if (n[2889]++ > 0) check ('a string 2889'); break; - case 2890: if (n[2890]++ > 0) check ('a string 2890'); break; - case 2891: if (n[2891]++ > 0) check ('a string 2891'); break; - case 2892: if (n[2892]++ > 0) check ('a string 2892'); break; - case 2893: if (n[2893]++ > 0) check ('a string 2893'); break; - case 2894: if (n[2894]++ > 0) check ('a string 2894'); break; - case 2895: if (n[2895]++ > 0) check ('a string 2895'); break; - case 2896: if (n[2896]++ > 0) check ('a string 2896'); break; - case 2897: if (n[2897]++ > 0) check ('a string 2897'); break; - case 2898: if (n[2898]++ > 0) check ('a string 2898'); break; - case 2899: if (n[2899]++ > 0) check ('a string 2899'); break; - case 2900: if (n[2900]++ > 0) check ('a string 2900'); break; - case 2901: if (n[2901]++ > 0) check ('a string 2901'); break; - case 2902: if (n[2902]++ > 0) check ('a string 2902'); break; - case 2903: if (n[2903]++ > 0) check ('a string 2903'); break; - case 2904: if (n[2904]++ > 0) check ('a string 2904'); break; - case 2905: if (n[2905]++ > 0) check ('a string 2905'); break; - case 2906: if (n[2906]++ > 0) check ('a string 2906'); break; - case 2907: if (n[2907]++ > 0) check ('a string 2907'); break; - case 2908: if (n[2908]++ > 0) check ('a string 2908'); break; - case 2909: if (n[2909]++ > 0) check ('a string 2909'); break; - case 2910: if (n[2910]++ > 0) check ('a string 2910'); break; - case 2911: if (n[2911]++ > 0) check ('a string 2911'); break; - case 2912: if (n[2912]++ > 0) check ('a string 2912'); break; - case 2913: if (n[2913]++ > 0) check ('a string 2913'); break; - case 2914: if (n[2914]++ > 0) check ('a string 2914'); break; - case 2915: if (n[2915]++ > 0) check ('a string 2915'); break; - case 2916: if (n[2916]++ > 0) check ('a string 2916'); break; - case 2917: if (n[2917]++ > 0) check ('a string 2917'); break; - case 2918: if (n[2918]++ > 0) check ('a string 2918'); break; - case 2919: if (n[2919]++ > 0) check ('a string 2919'); break; - case 2920: if (n[2920]++ > 0) check ('a string 2920'); break; - case 2921: if (n[2921]++ > 0) check ('a string 2921'); break; - case 2922: if (n[2922]++ > 0) check ('a string 2922'); break; - case 2923: if (n[2923]++ > 0) check ('a string 2923'); break; - case 2924: if (n[2924]++ > 0) check ('a string 2924'); break; - case 2925: if (n[2925]++ > 0) check ('a string 2925'); break; - case 2926: if (n[2926]++ > 0) check ('a string 2926'); break; - case 2927: if (n[2927]++ > 0) check ('a string 2927'); break; - case 2928: if (n[2928]++ > 0) check ('a string 2928'); break; - case 2929: if (n[2929]++ > 0) check ('a string 2929'); break; - case 2930: if (n[2930]++ > 0) check ('a string 2930'); break; - case 2931: if (n[2931]++ > 0) check ('a string 2931'); break; - case 2932: if (n[2932]++ > 0) check ('a string 2932'); break; - case 2933: if (n[2933]++ > 0) check ('a string 2933'); break; - case 2934: if (n[2934]++ > 0) check ('a string 2934'); break; - case 2935: if (n[2935]++ > 0) check ('a string 2935'); break; - case 2936: if (n[2936]++ > 0) check ('a string 2936'); break; - case 2937: if (n[2937]++ > 0) check ('a string 2937'); break; - case 2938: if (n[2938]++ > 0) check ('a string 2938'); break; - case 2939: if (n[2939]++ > 0) check ('a string 2939'); break; - case 2940: if (n[2940]++ > 0) check ('a string 2940'); break; - case 2941: if (n[2941]++ > 0) check ('a string 2941'); break; - case 2942: if (n[2942]++ > 0) check ('a string 2942'); break; - case 2943: if (n[2943]++ > 0) check ('a string 2943'); break; - case 2944: if (n[2944]++ > 0) check ('a string 2944'); break; - case 2945: if (n[2945]++ > 0) check ('a string 2945'); break; - case 2946: if (n[2946]++ > 0) check ('a string 2946'); break; - case 2947: if (n[2947]++ > 0) check ('a string 2947'); break; - case 2948: if (n[2948]++ > 0) check ('a string 2948'); break; - case 2949: if (n[2949]++ > 0) check ('a string 2949'); break; - case 2950: if (n[2950]++ > 0) check ('a string 2950'); break; - case 2951: if (n[2951]++ > 0) check ('a string 2951'); break; - case 2952: if (n[2952]++ > 0) check ('a string 2952'); break; - case 2953: if (n[2953]++ > 0) check ('a string 2953'); break; - case 2954: if (n[2954]++ > 0) check ('a string 2954'); break; - case 2955: if (n[2955]++ > 0) check ('a string 2955'); break; - case 2956: if (n[2956]++ > 0) check ('a string 2956'); break; - case 2957: if (n[2957]++ > 0) check ('a string 2957'); break; - case 2958: if (n[2958]++ > 0) check ('a string 2958'); break; - case 2959: if (n[2959]++ > 0) check ('a string 2959'); break; - case 2960: if (n[2960]++ > 0) check ('a string 2960'); break; - case 2961: if (n[2961]++ > 0) check ('a string 2961'); break; - case 2962: if (n[2962]++ > 0) check ('a string 2962'); break; - case 2963: if (n[2963]++ > 0) check ('a string 2963'); break; - case 2964: if (n[2964]++ > 0) check ('a string 2964'); break; - case 2965: if (n[2965]++ > 0) check ('a string 2965'); break; - case 2966: if (n[2966]++ > 0) check ('a string 2966'); break; - case 2967: if (n[2967]++ > 0) check ('a string 2967'); break; - case 2968: if (n[2968]++ > 0) check ('a string 2968'); break; - case 2969: if (n[2969]++ > 0) check ('a string 2969'); break; - case 2970: if (n[2970]++ > 0) check ('a string 2970'); break; - case 2971: if (n[2971]++ > 0) check ('a string 2971'); break; - case 2972: if (n[2972]++ > 0) check ('a string 2972'); break; - case 2973: if (n[2973]++ > 0) check ('a string 2973'); break; - case 2974: if (n[2974]++ > 0) check ('a string 2974'); break; - case 2975: if (n[2975]++ > 0) check ('a string 2975'); break; - case 2976: if (n[2976]++ > 0) check ('a string 2976'); break; - case 2977: if (n[2977]++ > 0) check ('a string 2977'); break; - case 2978: if (n[2978]++ > 0) check ('a string 2978'); break; - case 2979: if (n[2979]++ > 0) check ('a string 2979'); break; - case 2980: if (n[2980]++ > 0) check ('a string 2980'); break; - case 2981: if (n[2981]++ > 0) check ('a string 2981'); break; - case 2982: if (n[2982]++ > 0) check ('a string 2982'); break; - case 2983: if (n[2983]++ > 0) check ('a string 2983'); break; - case 2984: if (n[2984]++ > 0) check ('a string 2984'); break; - case 2985: if (n[2985]++ > 0) check ('a string 2985'); break; - case 2986: if (n[2986]++ > 0) check ('a string 2986'); break; - case 2987: if (n[2987]++ > 0) check ('a string 2987'); break; - case 2988: if (n[2988]++ > 0) check ('a string 2988'); break; - case 2989: if (n[2989]++ > 0) check ('a string 2989'); break; - case 2990: if (n[2990]++ > 0) check ('a string 2990'); break; - case 2991: if (n[2991]++ > 0) check ('a string 2991'); break; - case 2992: if (n[2992]++ > 0) check ('a string 2992'); break; - case 2993: if (n[2993]++ > 0) check ('a string 2993'); break; - case 2994: if (n[2994]++ > 0) check ('a string 2994'); break; - case 2995: if (n[2995]++ > 0) check ('a string 2995'); break; - case 2996: if (n[2996]++ > 0) check ('a string 2996'); break; - case 2997: if (n[2997]++ > 0) check ('a string 2997'); break; - case 2998: if (n[2998]++ > 0) check ('a string 2998'); break; - case 2999: if (n[2999]++ > 0) check ('a string 2999'); break; - case 3000: if (n[3000]++ > 0) check ('a string 3000'); break; - case 3001: if (n[3001]++ > 0) check ('a string 3001'); break; - case 3002: if (n[3002]++ > 0) check ('a string 3002'); break; - case 3003: if (n[3003]++ > 0) check ('a string 3003'); break; - case 3004: if (n[3004]++ > 0) check ('a string 3004'); break; - case 3005: if (n[3005]++ > 0) check ('a string 3005'); break; - case 3006: if (n[3006]++ > 0) check ('a string 3006'); break; - case 3007: if (n[3007]++ > 0) check ('a string 3007'); break; - case 3008: if (n[3008]++ > 0) check ('a string 3008'); break; - case 3009: if (n[3009]++ > 0) check ('a string 3009'); break; - default : if (n[3010]++ > 0) check ('a string 3010'); break; - } - } - - b4(); - b_after(); -} - - -function check(status) -{ - print('k = ' + k + ' j = ' + j + ' ' + status); - - for (i = 0; i < i2; i++) - { - if (n[i] != 1) - { - print('n[' + i + '] = ' + n[i]); - if (i != j) - { - print('Test failed'); - err_num++; - break; - } - } - } -} - - -function b4() -{ - print('Visited b4'); -} - - -function b_after() -{ - print('Visited b_after'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-82306.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-82306.js deleted file mode 100644 index 6841fd5..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-82306.js +++ /dev/null @@ -1,59 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS -* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or -* implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. All -* Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com, epstein@tellme.com -* Date: 23 May 2001 -* -* SUMMARY: Regression test for Bugzilla bug 82306 -* See http://bugzilla.mozilla.org/show_bug.cgi?id=82306 -* -* This test used to crash the JS engine. This was discovered -* by Mike Epstein <epstein@tellme.com> -*/ -//------------------------------------------------------------------------------------------------- -var bug = 82306; -var summary = "Testing we don't crash on encodeURI()"; -var URI = ''; - - -//------------------------------------------------------------------------------------------------- -test(); -//------------------------------------------------------------------------------------------------- - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - URI += '<?xml version="1.0"?>'; - URI += '<zcti application="xxxx_demo">'; - URI += '<pstn_data>'; - URI += '<ani>650-930-xxxx</ani>'; - URI += '<dnis>877-485-xxxx</dnis>'; - URI += '</pstn_data>'; - URI += '<keyvalue key="name" value="xxx"/>'; - URI += '<keyvalue key="phone" value="6509309000"/>'; - URI += '</zcti>'; - - // Just testing that we don't crash on this - encodeURI(URI); - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-89443.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-89443.js deleted file mode 100644 index ba4e1db..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-89443.js +++ /dev/null @@ -1,2130 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an -* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed -* or implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. -* All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* Date: 2001-07-12 -* -* SUMMARY: Regression test for bug 89443 -* See http://bugzilla.mozilla.org/show_bug.cgi?id=89443 -* -* Just seeing if this script will compile without stack overflow. -*/ -//------------------------------------------------------------------------------------------------- -var bug = 89443; -var summary = 'Testing this script will compile without stack overflow'; - -printBugNumber (bug); -printStatus (summary); - - -// I don't know what these functions are supposed to be; use dummies - -function isPlainHostName() -{ -} - -function dnsDomainIs() -{ -} - -// Here's the big function - -function FindProxyForURL(url, host) -{ - -if (isPlainHostName(host) -|| dnsDomainIs(host, ".hennepin.lib.mn.us") -|| dnsDomainIs(host, ".hclib.org") -) - return "DIRECT"; -else if (isPlainHostName(host) - -// subscription database access - -|| dnsDomainIs(host, ".asahi.com") -|| dnsDomainIs(host, ".2facts.com") -|| dnsDomainIs(host, ".oclc.org") -|| dnsDomainIs(host, ".collegesource.com") -|| dnsDomainIs(host, ".cq.com") -|| dnsDomainIs(host, ".grolier.com") -|| dnsDomainIs(host, ".groveart.com") -|| dnsDomainIs(host, ".groveopera.com") -|| dnsDomainIs(host, ".fsonline.com") -|| dnsDomainIs(host, ".carl.org") -|| dnsDomainIs(host, ".newslibrary.com") -|| dnsDomainIs(host, ".pioneerplanet.com") -|| dnsDomainIs(host, ".startribune.com") -|| dnsDomainIs(host, ".poemfinder.com") -|| dnsDomainIs(host, ".umi.com") -|| dnsDomainIs(host, ".referenceusa.com") -|| dnsDomainIs(host, ".sirs.com") -|| dnsDomainIs(host, ".krmediastream.com") -|| dnsDomainIs(host, ".gale.com") -|| dnsDomainIs(host, ".galenet.com") -|| dnsDomainIs(host, ".galegroup.com") -|| dnsDomainIs(host, ".facts.com") -|| dnsDomainIs(host, ".eb.com") -|| dnsDomainIs(host, ".worldbookonline.com") -|| dnsDomainIs(host, ".galegroup.com") -|| dnsDomainIs(host, ".accessscience.com") -|| dnsDomainIs(host, ".booksinprint.com") -|| dnsDomainIs(host, ".infolearning.com") -|| dnsDomainIs(host, ".standardpoor.com") - -// image servers -|| dnsDomainIs(host, ".akamaitech.net") -|| dnsDomainIs(host, ".akamai.net") -|| dnsDomainIs(host, ".yimg.com") -|| dnsDomainIs(host, ".imgis.com") -|| dnsDomainIs(host, ".ibsys.com") - -// KidsClick-linked kids search engines -|| dnsDomainIs(host, ".edview.com") -|| dnsDomainIs(host, ".searchopolis.com") -|| dnsDomainIs(host, ".onekey.com") -|| dnsDomainIs(host, ".askjeeves.com") - -// Non-subscription Reference Tools URLs from the RecWebSites DBData table - || dnsDomainIs(host, "www.cnn.com") - || dnsDomainIs(host, "www.emulateme.com") - || dnsDomainIs(host, "terraserver.microsoft.com") - || dnsDomainIs(host, "www.theodora.com") - || dnsDomainIs(host, "www.3datlas.com") - || dnsDomainIs(host, "www.infoplease.com") - || dnsDomainIs(host, "www.switchboard.com") - || dnsDomainIs(host, "www.bartleby.com") - || dnsDomainIs(host, "www.mn-politics.com") - || dnsDomainIs(host, "www.thesaurus.com") - || dnsDomainIs(host, "www.usnews.com") - || dnsDomainIs(host, "www.petersons.com") - || dnsDomainIs(host, "www.collegenet.com") - || dnsDomainIs(host, "www.m-w.com") - || dnsDomainIs(host, "clever.net") - || dnsDomainIs(host, "maps.expedia.com") - || dnsDomainIs(host, "www.CollegeEdge.com") - || dnsDomainIs(host, "www.homeworkcentral.com") - || dnsDomainIs(host, "www.studyweb.com") - || dnsDomainIs(host, "www.mnpro.com") - -// custom URLs for local and other access -|| dnsDomainIs(host, ".dsdukes.com") -|| dnsDomainIs(host, ".spsaints.com") -|| dnsDomainIs(host, ".mnzoo.com") -|| dnsDomainIs(host, ".realaudio.com") -|| dnsDomainIs(host, ".co.hennepin.mn.us") -|| dnsDomainIs(host, ".gov") -|| dnsDomainIs(host, ".org") -|| dnsDomainIs(host, ".edu") -|| dnsDomainIs(host, ".fox29.com") -|| dnsDomainIs(host, ".wcco.com") -|| dnsDomainIs(host, ".kstp.com") -|| dnsDomainIs(host, ".kmsp.com") -|| dnsDomainIs(host, ".kare11.com") -|| dnsDomainIs(host, ".macromedia.com") -|| dnsDomainIs(host, ".shockwave.com") -|| dnsDomainIs(host, ".wwf.com") -|| dnsDomainIs(host, ".wwfsuperstars.com") -|| dnsDomainIs(host, ".summerslam.com") -|| dnsDomainIs(host, ".yahooligans.com") -|| dnsDomainIs(host, ".mhoob.com") -|| dnsDomainIs(host, "www.hmonginternet.com") -|| dnsDomainIs(host, "www.hmongonline.com") -|| dnsDomainIs(host, ".yahoo.com") -|| dnsDomainIs(host, ".pokemon.com") -|| dnsDomainIs(host, ".bet.com") -|| dnsDomainIs(host, ".smallworld.com") -|| dnsDomainIs(host, ".cartoonnetwork.com") -|| dnsDomainIs(host, ".carmensandiego.com") -|| dnsDomainIs(host, ".disney.com") -|| dnsDomainIs(host, ".powerpuffgirls.com") -|| dnsDomainIs(host, ".aol.com") - -// Smithsonian -|| dnsDomainIs(host, "160.111.100.190") - -// Hotmail -|| dnsDomainIs(host, ".passport.com") -|| dnsDomainIs(host, ".hotmail.com") -|| dnsDomainIs(host, "216.33.236.24") -|| dnsDomainIs(host, "216.32.182.251") -|| dnsDomainIs(host, ".hotmail.msn.com") - -// K12 schools -|| dnsDomainIs(host, ".k12.al.us") -|| dnsDomainIs(host, ".k12.ak.us") -|| dnsDomainIs(host, ".k12.ar.us") -|| dnsDomainIs(host, ".k12.az.us") -|| dnsDomainIs(host, ".k12.ca.us") -|| dnsDomainIs(host, ".k12.co.us") -|| dnsDomainIs(host, ".k12.ct.us") -|| dnsDomainIs(host, ".k12.dc.us") -|| dnsDomainIs(host, ".k12.de.us") -|| dnsDomainIs(host, ".k12.fl.us") -|| dnsDomainIs(host, ".k12.ga.us") -|| dnsDomainIs(host, ".k12.hi.us") -|| dnsDomainIs(host, ".k12.id.us") -|| dnsDomainIs(host, ".k12.il.us") -|| dnsDomainIs(host, ".k12.in.us") -|| dnsDomainIs(host, ".k12.ia.us") -|| dnsDomainIs(host, ".k12.ks.us") -|| dnsDomainIs(host, ".k12.ky.us") -|| dnsDomainIs(host, ".k12.la.us") -|| dnsDomainIs(host, ".k12.me.us") -|| dnsDomainIs(host, ".k12.md.us") -|| dnsDomainIs(host, ".k12.ma.us") -|| dnsDomainIs(host, ".k12.mi.us") -|| dnsDomainIs(host, ".k12.mn.us") -|| dnsDomainIs(host, ".k12.ms.us") -|| dnsDomainIs(host, ".k12.mo.us") -|| dnsDomainIs(host, ".k12.mt.us") -|| dnsDomainIs(host, ".k12.ne.us") -|| dnsDomainIs(host, ".k12.nv.us") -|| dnsDomainIs(host, ".k12.nh.us") -|| dnsDomainIs(host, ".k12.nj.us") -|| dnsDomainIs(host, ".k12.nm.us") -|| dnsDomainIs(host, ".k12.ny.us") -|| dnsDomainIs(host, ".k12.nc.us") -|| dnsDomainIs(host, ".k12.nd.us") -|| dnsDomainIs(host, ".k12.oh.us") -|| dnsDomainIs(host, ".k12.ok.us") -|| dnsDomainIs(host, ".k12.or.us") -|| dnsDomainIs(host, ".k12.pa.us") -|| dnsDomainIs(host, ".k12.ri.us") -|| dnsDomainIs(host, ".k12.sc.us") -|| dnsDomainIs(host, ".k12.sd.us") -|| dnsDomainIs(host, ".k12.tn.us") -|| dnsDomainIs(host, ".k12.tx.us") -|| dnsDomainIs(host, ".k12.ut.us") -|| dnsDomainIs(host, ".k12.vt.us") -|| dnsDomainIs(host, ".k12.va.us") -|| dnsDomainIs(host, ".k12.wa.us") -|| dnsDomainIs(host, ".k12.wv.us") -|| dnsDomainIs(host, ".k12.wi.us") -|| dnsDomainIs(host, ".k12.wy.us") - -// U.S. Libraries -|| dnsDomainIs(host, ".lib.al.us") -|| dnsDomainIs(host, ".lib.ak.us") -|| dnsDomainIs(host, ".lib.ar.us") -|| dnsDomainIs(host, ".lib.az.us") -|| dnsDomainIs(host, ".lib.ca.us") -|| dnsDomainIs(host, ".lib.co.us") -|| dnsDomainIs(host, ".lib.ct.us") -|| dnsDomainIs(host, ".lib.dc.us") -|| dnsDomainIs(host, ".lib.de.us") -|| dnsDomainIs(host, ".lib.fl.us") -|| dnsDomainIs(host, ".lib.ga.us") -|| dnsDomainIs(host, ".lib.hi.us") -|| dnsDomainIs(host, ".lib.id.us") -|| dnsDomainIs(host, ".lib.il.us") -|| dnsDomainIs(host, ".lib.in.us") -|| dnsDomainIs(host, ".lib.ia.us") -|| dnsDomainIs(host, ".lib.ks.us") -|| dnsDomainIs(host, ".lib.ky.us") -|| dnsDomainIs(host, ".lib.la.us") -|| dnsDomainIs(host, ".lib.me.us") -|| dnsDomainIs(host, ".lib.md.us") -|| dnsDomainIs(host, ".lib.ma.us") -|| dnsDomainIs(host, ".lib.mi.us") -|| dnsDomainIs(host, ".lib.mn.us") -|| dnsDomainIs(host, ".lib.ms.us") -|| dnsDomainIs(host, ".lib.mo.us") -|| dnsDomainIs(host, ".lib.mt.us") -|| dnsDomainIs(host, ".lib.ne.us") -|| dnsDomainIs(host, ".lib.nv.us") -|| dnsDomainIs(host, ".lib.nh.us") -|| dnsDomainIs(host, ".lib.nj.us") -|| dnsDomainIs(host, ".lib.nm.us") -|| dnsDomainIs(host, ".lib.ny.us") -|| dnsDomainIs(host, ".lib.nc.us") -|| dnsDomainIs(host, ".lib.nd.us") -|| dnsDomainIs(host, ".lib.oh.us") -|| dnsDomainIs(host, ".lib.ok.us") -|| dnsDomainIs(host, ".lib.or.us") -|| dnsDomainIs(host, ".lib.pa.us") -|| dnsDomainIs(host, ".lib.ri.us") -|| dnsDomainIs(host, ".lib.sc.us") -|| dnsDomainIs(host, ".lib.sd.us") -|| dnsDomainIs(host, ".lib.tn.us") -|| dnsDomainIs(host, ".lib.tx.us") -|| dnsDomainIs(host, ".lib.ut.us") -|| dnsDomainIs(host, ".lib.vt.us") -|| dnsDomainIs(host, ".lib.va.us") -|| dnsDomainIs(host, ".lib.wa.us") -|| dnsDomainIs(host, ".lib.wv.us") -|| dnsDomainIs(host, ".lib.wi.us") -|| dnsDomainIs(host, ".lib.wy.us") - -// U.S. Cities -|| dnsDomainIs(host, ".ci.al.us") -|| dnsDomainIs(host, ".ci.ak.us") -|| dnsDomainIs(host, ".ci.ar.us") -|| dnsDomainIs(host, ".ci.az.us") -|| dnsDomainIs(host, ".ci.ca.us") -|| dnsDomainIs(host, ".ci.co.us") -|| dnsDomainIs(host, ".ci.ct.us") -|| dnsDomainIs(host, ".ci.dc.us") -|| dnsDomainIs(host, ".ci.de.us") -|| dnsDomainIs(host, ".ci.fl.us") -|| dnsDomainIs(host, ".ci.ga.us") -|| dnsDomainIs(host, ".ci.hi.us") -|| dnsDomainIs(host, ".ci.id.us") -|| dnsDomainIs(host, ".ci.il.us") -|| dnsDomainIs(host, ".ci.in.us") -|| dnsDomainIs(host, ".ci.ia.us") -|| dnsDomainIs(host, ".ci.ks.us") -|| dnsDomainIs(host, ".ci.ky.us") -|| dnsDomainIs(host, ".ci.la.us") -|| dnsDomainIs(host, ".ci.me.us") -|| dnsDomainIs(host, ".ci.md.us") -|| dnsDomainIs(host, ".ci.ma.us") -|| dnsDomainIs(host, ".ci.mi.us") -|| dnsDomainIs(host, ".ci.mn.us") -|| dnsDomainIs(host, ".ci.ms.us") -|| dnsDomainIs(host, ".ci.mo.us") -|| dnsDomainIs(host, ".ci.mt.us") -|| dnsDomainIs(host, ".ci.ne.us") -|| dnsDomainIs(host, ".ci.nv.us") -|| dnsDomainIs(host, ".ci.nh.us") -|| dnsDomainIs(host, ".ci.nj.us") -|| dnsDomainIs(host, ".ci.nm.us") -|| dnsDomainIs(host, ".ci.ny.us") -|| dnsDomainIs(host, ".ci.nc.us") -|| dnsDomainIs(host, ".ci.nd.us") -|| dnsDomainIs(host, ".ci.oh.us") -|| dnsDomainIs(host, ".ci.ok.us") -|| dnsDomainIs(host, ".ci.or.us") -|| dnsDomainIs(host, ".ci.pa.us") -|| dnsDomainIs(host, ".ci.ri.us") -|| dnsDomainIs(host, ".ci.sc.us") -|| dnsDomainIs(host, ".ci.sd.us") -|| dnsDomainIs(host, ".ci.tn.us") -|| dnsDomainIs(host, ".ci.tx.us") -|| dnsDomainIs(host, ".ci.ut.us") -|| dnsDomainIs(host, ".ci.vt.us") -|| dnsDomainIs(host, ".ci.va.us") -|| dnsDomainIs(host, ".ci.wa.us") -|| dnsDomainIs(host, ".ci.wv.us") -|| dnsDomainIs(host, ".ci.wi.us") -|| dnsDomainIs(host, ".ci.wy.us") - -// U.S. Counties -|| dnsDomainIs(host, ".co.al.us") -|| dnsDomainIs(host, ".co.ak.us") -|| dnsDomainIs(host, ".co.ar.us") -|| dnsDomainIs(host, ".co.az.us") -|| dnsDomainIs(host, ".co.ca.us") -|| dnsDomainIs(host, ".co.co.us") -|| dnsDomainIs(host, ".co.ct.us") -|| dnsDomainIs(host, ".co.dc.us") -|| dnsDomainIs(host, ".co.de.us") -|| dnsDomainIs(host, ".co.fl.us") -|| dnsDomainIs(host, ".co.ga.us") -|| dnsDomainIs(host, ".co.hi.us") -|| dnsDomainIs(host, ".co.id.us") -|| dnsDomainIs(host, ".co.il.us") -|| dnsDomainIs(host, ".co.in.us") -|| dnsDomainIs(host, ".co.ia.us") -|| dnsDomainIs(host, ".co.ks.us") -|| dnsDomainIs(host, ".co.ky.us") -|| dnsDomainIs(host, ".co.la.us") -|| dnsDomainIs(host, ".co.me.us") -|| dnsDomainIs(host, ".co.md.us") -|| dnsDomainIs(host, ".co.ma.us") -|| dnsDomainIs(host, ".co.mi.us") -|| dnsDomainIs(host, ".co.mn.us") -|| dnsDomainIs(host, ".co.ms.us") -|| dnsDomainIs(host, ".co.mo.us") -|| dnsDomainIs(host, ".co.mt.us") -|| dnsDomainIs(host, ".co.ne.us") -|| dnsDomainIs(host, ".co.nv.us") -|| dnsDomainIs(host, ".co.nh.us") -|| dnsDomainIs(host, ".co.nj.us") -|| dnsDomainIs(host, ".co.nm.us") -|| dnsDomainIs(host, ".co.ny.us") -|| dnsDomainIs(host, ".co.nc.us") -|| dnsDomainIs(host, ".co.nd.us") -|| dnsDomainIs(host, ".co.oh.us") -|| dnsDomainIs(host, ".co.ok.us") -|| dnsDomainIs(host, ".co.or.us") -|| dnsDomainIs(host, ".co.pa.us") -|| dnsDomainIs(host, ".co.ri.us") -|| dnsDomainIs(host, ".co.sc.us") -|| dnsDomainIs(host, ".co.sd.us") -|| dnsDomainIs(host, ".co.tn.us") -|| dnsDomainIs(host, ".co.tx.us") -|| dnsDomainIs(host, ".co.ut.us") -|| dnsDomainIs(host, ".co.vt.us") -|| dnsDomainIs(host, ".co.va.us") -|| dnsDomainIs(host, ".co.wa.us") -|| dnsDomainIs(host, ".co.wv.us") -|| dnsDomainIs(host, ".co.wi.us") -|| dnsDomainIs(host, ".co.wy.us") - -// U.S. States -|| dnsDomainIs(host, ".state.al.us") -|| dnsDomainIs(host, ".state.ak.us") -|| dnsDomainIs(host, ".state.ar.us") -|| dnsDomainIs(host, ".state.az.us") -|| dnsDomainIs(host, ".state.ca.us") -|| dnsDomainIs(host, ".state.co.us") -|| dnsDomainIs(host, ".state.ct.us") -|| dnsDomainIs(host, ".state.dc.us") -|| dnsDomainIs(host, ".state.de.us") -|| dnsDomainIs(host, ".state.fl.us") -|| dnsDomainIs(host, ".state.ga.us") -|| dnsDomainIs(host, ".state.hi.us") -|| dnsDomainIs(host, ".state.id.us") -|| dnsDomainIs(host, ".state.il.us") -|| dnsDomainIs(host, ".state.in.us") -|| dnsDomainIs(host, ".state.ia.us") -|| dnsDomainIs(host, ".state.ks.us") -|| dnsDomainIs(host, ".state.ky.us") -|| dnsDomainIs(host, ".state.la.us") -|| dnsDomainIs(host, ".state.me.us") -|| dnsDomainIs(host, ".state.md.us") -|| dnsDomainIs(host, ".state.ma.us") -|| dnsDomainIs(host, ".state.mi.us") -|| dnsDomainIs(host, ".state.mn.us") -|| dnsDomainIs(host, ".state.ms.us") -|| dnsDomainIs(host, ".state.mo.us") -|| dnsDomainIs(host, ".state.mt.us") -|| dnsDomainIs(host, ".state.ne.us") -|| dnsDomainIs(host, ".state.nv.us") -|| dnsDomainIs(host, ".state.nh.us") -|| dnsDomainIs(host, ".state.nj.us") -|| dnsDomainIs(host, ".state.nm.us") -|| dnsDomainIs(host, ".state.ny.us") -|| dnsDomainIs(host, ".state.nc.us") -|| dnsDomainIs(host, ".state.nd.us") -|| dnsDomainIs(host, ".state.oh.us") -|| dnsDomainIs(host, ".state.ok.us") -|| dnsDomainIs(host, ".state.or.us") -|| dnsDomainIs(host, ".state.pa.us") -|| dnsDomainIs(host, ".state.ri.us") -|| dnsDomainIs(host, ".state.sc.us") -|| dnsDomainIs(host, ".state.sd.us") -|| dnsDomainIs(host, ".state.tn.us") -|| dnsDomainIs(host, ".state.tx.us") -|| dnsDomainIs(host, ".state.ut.us") -|| dnsDomainIs(host, ".state.vt.us") -|| dnsDomainIs(host, ".state.va.us") -|| dnsDomainIs(host, ".state.wa.us") -|| dnsDomainIs(host, ".state.wv.us") -|| dnsDomainIs(host, ".state.wi.us") -|| dnsDomainIs(host, ".state.wy.us") - -// KidsClick URLs - -|| dnsDomainIs(host, "12.16.163.163") -|| dnsDomainIs(host, "128.59.173.136") -|| dnsDomainIs(host, "165.112.78.61") -|| dnsDomainIs(host, "216.55.23.140") -|| dnsDomainIs(host, "63.111.53.150") -|| dnsDomainIs(host, "64.94.206.8") - -|| dnsDomainIs(host, "abc.go.com") -|| dnsDomainIs(host, "acmepet.petsmart.com") -|| dnsDomainIs(host, "adver-net.com") -|| dnsDomainIs(host, "aint-it-cool-news.com") -|| dnsDomainIs(host, "akidsheart.com") -|| dnsDomainIs(host, "alabanza.com") -|| dnsDomainIs(host, "allerdays.com") -|| dnsDomainIs(host, "allgame.com") -|| dnsDomainIs(host, "allowancenet.com") -|| dnsDomainIs(host, "amish-heartland.com") -|| dnsDomainIs(host, "ancienthistory.about.com") -|| dnsDomainIs(host, "animals.about.com") -|| dnsDomainIs(host, "antenna.nl") -|| dnsDomainIs(host, "arcweb.sos.state.or.us") -|| dnsDomainIs(host, "artistmummer.homestead.com") -|| dnsDomainIs(host, "artists.vh1.com") -|| dnsDomainIs(host, "arts.lausd.k12.ca.us") -|| dnsDomainIs(host, "asiatravel.com") -|| dnsDomainIs(host, "asterius.com") -|| dnsDomainIs(host, "atlas.gc.ca") -|| dnsDomainIs(host, "atschool.eduweb.co.uk") -|| dnsDomainIs(host, "ayya.pd.net") -|| dnsDomainIs(host, "babelfish.altavista.com") -|| dnsDomainIs(host, "babylon5.warnerbros.com") -|| dnsDomainIs(host, "banzai.neosoft.com") -|| dnsDomainIs(host, "barneyonline.com") -|| dnsDomainIs(host, "baroque-music.com") -|| dnsDomainIs(host, "barsoom.msss.com") -|| dnsDomainIs(host, "baseball-almanac.com") -|| dnsDomainIs(host, "bcadventure.com") -|| dnsDomainIs(host, "beadiecritters.hosting4less.com") -|| dnsDomainIs(host, "beverlyscrafts.com") -|| dnsDomainIs(host, "biology.about.com") -|| dnsDomainIs(host, "birding.about.com") -|| dnsDomainIs(host, "boatsafe.com") -|| dnsDomainIs(host, "bombpop.com") -|| dnsDomainIs(host, "boulter.com") -|| dnsDomainIs(host, "bright-ideas-software.com") -|| dnsDomainIs(host, "buckman.pps.k12.or.us") -|| dnsDomainIs(host, "buffalobills.com") -|| dnsDomainIs(host, "bvsd.k12.co.us") -|| dnsDomainIs(host, "cagle.slate.msn.com") -|| dnsDomainIs(host, "calc.entisoft.com") -|| dnsDomainIs(host, "canada.gc.ca") -|| dnsDomainIs(host, "candleandsoap.about.com") -|| dnsDomainIs(host, "caselaw.lp.findlaw.com") -|| dnsDomainIs(host, "catalog.com") -|| dnsDomainIs(host, "catalog.socialstudies.com") -|| dnsDomainIs(host, "cavern.com") -|| dnsDomainIs(host, "cbs.sportsline.com") -|| dnsDomainIs(host, "cc.matsuyama-u.ac.jp") -|| dnsDomainIs(host, "celt.net") -|| dnsDomainIs(host, "cgfa.kelloggcreek.com") -|| dnsDomainIs(host, "channel4000.com") -|| dnsDomainIs(host, "chess.delorie.com") -|| dnsDomainIs(host, "chess.liveonthenet.com") -|| dnsDomainIs(host, "childfun.com") -|| dnsDomainIs(host, "christmas.com") -|| dnsDomainIs(host, "citystar.com") -|| dnsDomainIs(host, "claim.goldrush.com") -|| dnsDomainIs(host, "clairerosemaryjane.com") -|| dnsDomainIs(host, "clevermedia.com") -|| dnsDomainIs(host, "cobblestonepub.com") -|| dnsDomainIs(host, "codebrkr.infopages.net") -|| dnsDomainIs(host, "colitz.com") -|| dnsDomainIs(host, "collections.ic.gc.ca") -|| dnsDomainIs(host, "coloquio.com") -|| dnsDomainIs(host, "come.to") -|| dnsDomainIs(host, "coombs.anu.edu.au") -|| dnsDomainIs(host, "crafterscommunity.com") -|| dnsDomainIs(host, "craftsforkids.about.com") -|| dnsDomainIs(host, "creativity.net") -|| dnsDomainIs(host, "cslewis.drzeus.net") -|| dnsDomainIs(host, "cust.idl.com.au") -|| dnsDomainIs(host, "cvs.anu.edu.au") -|| dnsDomainIs(host, "cybersleuth-kids.com") -|| dnsDomainIs(host, "cybertown.com") -|| dnsDomainIs(host, "darkfish.com") -|| dnsDomainIs(host, "datadragon.com") -|| dnsDomainIs(host, "davesite.com") -|| dnsDomainIs(host, "dbertens.www.cistron.nl") -|| dnsDomainIs(host, "detnews.com") -|| dnsDomainIs(host, "dhr.dos.state.fl.us") -|| dnsDomainIs(host, "dialspace.dial.pipex.com") -|| dnsDomainIs(host, "dictionaries.travlang.com") -|| dnsDomainIs(host, "disney.go.com") -|| dnsDomainIs(host, "disneyland.disney.go.com") -|| dnsDomainIs(host, "district.gresham.k12.or.us") -|| dnsDomainIs(host, "dmarie.com") -|| dnsDomainIs(host, "dreamwater.com") -|| dnsDomainIs(host, "duke.fuse.net") -|| dnsDomainIs(host, "earlyamerica.com") -|| dnsDomainIs(host, "earthsky.com") -|| dnsDomainIs(host, "easyweb.easynet.co.uk") -|| dnsDomainIs(host, "ecards1.bansheeweb.com") -|| dnsDomainIs(host, "edugreen.teri.res.in") -|| dnsDomainIs(host, "edwardlear.tripod.com") -|| dnsDomainIs(host, "eelink.net") -|| dnsDomainIs(host, "elizabethsings.com") -|| dnsDomainIs(host, "enature.com") -|| dnsDomainIs(host, "encarta.msn.com") -|| dnsDomainIs(host, "endangeredspecie.com") -|| dnsDomainIs(host, "enterprise.america.com") -|| dnsDomainIs(host, "ericae.net") -|| dnsDomainIs(host, "esl.about.com") -|| dnsDomainIs(host, "eveander.com") -|| dnsDomainIs(host, "exn.ca") -|| dnsDomainIs(host, "fallscam.niagara.com") -|| dnsDomainIs(host, "family.go.com") -|| dnsDomainIs(host, "family2.go.com") -|| dnsDomainIs(host, "familyeducation.com") -|| dnsDomainIs(host, "finditquick.com") -|| dnsDomainIs(host, "fln-bma.yazigi.com.br") -|| dnsDomainIs(host, "fln-con.yazigi.com.br") -|| dnsDomainIs(host, "food.epicurious.com") -|| dnsDomainIs(host, "forums.sympatico.ca") -|| dnsDomainIs(host, "fotw.vexillum.com") -|| dnsDomainIs(host, "fox.nstn.ca") -|| dnsDomainIs(host, "framingham.com") -|| dnsDomainIs(host, "freevote.com") -|| dnsDomainIs(host, "freeweb.pdq.net") -|| dnsDomainIs(host, "games.yahoo.com") -|| dnsDomainIs(host, "gardening.sierrahome.com") -|| dnsDomainIs(host, "gardenofpraise.com") -|| dnsDomainIs(host, "gcclearn.gcc.cc.va.us") -|| dnsDomainIs(host, "genealogytoday.com") -|| dnsDomainIs(host, "genesis.ne.mediaone.net") -|| dnsDomainIs(host, "geniefind.com") -|| dnsDomainIs(host, "geography.about.com") -|| dnsDomainIs(host, "gf.state.wy.us") -|| dnsDomainIs(host, "gi.grolier.com") -|| dnsDomainIs(host, "golf.com") -|| dnsDomainIs(host, "greatseal.com") -|| dnsDomainIs(host, "guardians.net") -|| dnsDomainIs(host, "hamlet.hypermart.net") -|| dnsDomainIs(host, "happypuppy.com") -|| dnsDomainIs(host, "harcourt.fsc.follett.com") -|| dnsDomainIs(host, "haringkids.com") -|| dnsDomainIs(host, "harrietmaysavitz.com") -|| dnsDomainIs(host, "harrypotter.warnerbros.com") -|| dnsDomainIs(host, "hca.gilead.org.il") -|| dnsDomainIs(host, "header.future.easyspace.com") -|| dnsDomainIs(host, "historymedren.about.com") -|| dnsDomainIs(host, "home.att.net") -|| dnsDomainIs(host, "home.austin.rr.com") -|| dnsDomainIs(host, "home.capu.net") -|| dnsDomainIs(host, "home.cfl.rr.com") -|| dnsDomainIs(host, "home.clara.net") -|| dnsDomainIs(host, "home.clear.net.nz") -|| dnsDomainIs(host, "home.earthlink.net") -|| dnsDomainIs(host, "home.eznet.net") -|| dnsDomainIs(host, "home.flash.net") -|| dnsDomainIs(host, "home.hiwaay.net") -|| dnsDomainIs(host, "home.hkstar.com") -|| dnsDomainIs(host, "home.ici.net") -|| dnsDomainIs(host, "home.inreach.com") -|| dnsDomainIs(host, "home.interlynx.net") -|| dnsDomainIs(host, "home.istar.ca") -|| dnsDomainIs(host, "home.mira.net") -|| dnsDomainIs(host, "home.nycap.rr.com") -|| dnsDomainIs(host, "home.online.no") -|| dnsDomainIs(host, "home.pb.net") -|| dnsDomainIs(host, "home2.pacific.net.sg") -|| dnsDomainIs(host, "homearts.com") -|| dnsDomainIs(host, "homepage.mac.com") -|| dnsDomainIs(host, "hometown.aol.com") -|| dnsDomainIs(host, "homiliesbyemail.com") -|| dnsDomainIs(host, "hotei.fix.co.jp") -|| dnsDomainIs(host, "hotwired.lycos.com") -|| dnsDomainIs(host, "hp.vector.co.jp") -|| dnsDomainIs(host, "hum.amu.edu.pl") -|| dnsDomainIs(host, "i-cias.com") -|| dnsDomainIs(host, "icatapults.freeservers.com") -|| dnsDomainIs(host, "ind.cioe.com") -|| dnsDomainIs(host, "info.ex.ac.uk") -|| dnsDomainIs(host, "infocan.gc.ca") -|| dnsDomainIs(host, "infoservice.gc.ca") -|| dnsDomainIs(host, "interoz.com") -|| dnsDomainIs(host, "ireland.iol.ie") -|| dnsDomainIs(host, "is.dal.ca") -|| dnsDomainIs(host, "itss.raytheon.com") -|| dnsDomainIs(host, "iul.com") -|| dnsDomainIs(host, "jameswhitcombriley.com") -|| dnsDomainIs(host, "jellieszone.com") -|| dnsDomainIs(host, "jordan.sportsline.com") -|| dnsDomainIs(host, "judyanddavid.com") -|| dnsDomainIs(host, "jurai.murdoch.edu.au") -|| dnsDomainIs(host, "just.about.com") -|| dnsDomainIs(host, "kayleigh.tierranet.com") -|| dnsDomainIs(host, "kcwingwalker.tripod.com") -|| dnsDomainIs(host, "kidexchange.about.com") -|| dnsDomainIs(host, "kids-world.colgatepalmolive.com") -|| dnsDomainIs(host, "kids.mysterynet.com") -|| dnsDomainIs(host, "kids.ot.com") -|| dnsDomainIs(host, "kidsartscrafts.about.com") -|| dnsDomainIs(host, "kidsastronomy.about.com") -|| dnsDomainIs(host, "kidscience.about.com") -|| dnsDomainIs(host, "kidscience.miningco.com") -|| dnsDomainIs(host, "kidscollecting.about.com") -|| dnsDomainIs(host, "kidsfun.co.uk") -|| dnsDomainIs(host, "kidsinternet.about.com") -|| dnsDomainIs(host, "kidslangarts.about.com") -|| dnsDomainIs(host, "kidspenpals.about.com") -|| dnsDomainIs(host, "kitecast.com") -|| dnsDomainIs(host, "knight.city.ba.k12.md.us") -|| dnsDomainIs(host, "kodak.com") -|| dnsDomainIs(host, "kwanzaa4kids.homestead.com") -|| dnsDomainIs(host, "lagos.africaonline.com") -|| dnsDomainIs(host, "lancearmstrong.com") -|| dnsDomainIs(host, "landru.i-link-2.net") -|| dnsDomainIs(host, "lang.nagoya-u.ac.jp") -|| dnsDomainIs(host, "lascala.milano.it") -|| dnsDomainIs(host, "latinoculture.about.com") -|| dnsDomainIs(host, "litcal.yasuda-u.ac.jp") -|| dnsDomainIs(host, "littlebit.com") -|| dnsDomainIs(host, "live.edventures.com") -|| dnsDomainIs(host, "look.net") -|| dnsDomainIs(host, "lycoskids.infoplease.com") -|| dnsDomainIs(host, "lynx.uio.no") -|| dnsDomainIs(host, "macdict.dict.mq.edu.au") -|| dnsDomainIs(host, "maori.culture.co.nz") -|| dnsDomainIs(host, "marktwain.about.com") -|| dnsDomainIs(host, "marktwain.miningco.com") -|| dnsDomainIs(host, "mars2030.net") -|| dnsDomainIs(host, "martin.parasitology.mcgill.ca") -|| dnsDomainIs(host, "martinlutherking.8m.com") -|| dnsDomainIs(host, "mastercollector.com") -|| dnsDomainIs(host, "mathcentral.uregina.ca") -|| dnsDomainIs(host, "members.aol.com") -|| dnsDomainIs(host, "members.carol.net") -|| dnsDomainIs(host, "members.cland.net") -|| dnsDomainIs(host, "members.cruzio.com") -|| dnsDomainIs(host, "members.easyspace.com") -|| dnsDomainIs(host, "members.eisa.net.au") -|| dnsDomainIs(host, "members.home.net") -|| dnsDomainIs(host, "members.iinet.net.au") -|| dnsDomainIs(host, "members.nbci.com") -|| dnsDomainIs(host, "members.ozemail.com.au") -|| dnsDomainIs(host, "members.surfsouth.com") -|| dnsDomainIs(host, "members.theglobe.com") -|| dnsDomainIs(host, "members.tripod.com") -|| dnsDomainIs(host, "mexplaza.udg.mx") -|| dnsDomainIs(host, "mgfx.com") -|| dnsDomainIs(host, "microimg.com") -|| dnsDomainIs(host, "midusa.net") -|| dnsDomainIs(host, "mildan.com") -|| dnsDomainIs(host, "millennianet.com") -|| dnsDomainIs(host, "mindbreakers.e-fun.nu") -|| dnsDomainIs(host, "missjanet.xs4all.nl") -|| dnsDomainIs(host, "mistral.culture.fr") -|| dnsDomainIs(host, "mobileation.com") -|| dnsDomainIs(host, "mrshowbiz.go.com") -|| dnsDomainIs(host, "ms.simplenet.com") -|| dnsDomainIs(host, "museum.gov.ns.ca") -|| dnsDomainIs(host, "music.excite.com") -|| dnsDomainIs(host, "musicfinder.yahoo.com") -|| dnsDomainIs(host, "my.freeway.net") -|| dnsDomainIs(host, "mytrains.com") -|| dnsDomainIs(host, "nativeauthors.com") -|| dnsDomainIs(host, "nba.com") -|| dnsDomainIs(host, "nch.ari.net") -|| dnsDomainIs(host, "neonpeach.tripod.com") -|| dnsDomainIs(host, "net.indra.com") -|| dnsDomainIs(host, "ngeorgia.com") -|| dnsDomainIs(host, "ngp.ngpc.state.ne.us") -|| dnsDomainIs(host, "nhd.heinle.com") -|| dnsDomainIs(host, "nick.com") -|| dnsDomainIs(host, "normandy.eb.com") -|| dnsDomainIs(host, "northshore.shore.net") -|| dnsDomainIs(host, "now2000.com") -|| dnsDomainIs(host, "npc.nunavut.ca") -|| dnsDomainIs(host, "ns2.carib-link.net") -|| dnsDomainIs(host, "ntl.sympatico.ca") -|| dnsDomainIs(host, "oceanographer.navy.mil") -|| dnsDomainIs(host, "oddens.geog.uu.nl") -|| dnsDomainIs(host, "officialcitysites.com") -|| dnsDomainIs(host, "oneida-nation.net") -|| dnsDomainIs(host, "onlinegeorgia.com") -|| dnsDomainIs(host, "originator_2.tripod.com") -|| dnsDomainIs(host, "ortech-engr.com") -|| dnsDomainIs(host, "osage.voorhees.k12.nj.us") -|| dnsDomainIs(host, "osiris.sund.ac.uk") -|| dnsDomainIs(host, "ourworld.compuserve.com") -|| dnsDomainIs(host, "outdoorphoto.com") -|| dnsDomainIs(host, "pages.map.com") -|| dnsDomainIs(host, "pages.prodigy.com") -|| dnsDomainIs(host, "pages.prodigy.net") -|| dnsDomainIs(host, "pages.tca.net") -|| dnsDomainIs(host, "parcsafari.qc.ca") -|| dnsDomainIs(host, "parenthoodweb.com") -|| dnsDomainIs(host, "pathfinder.com") -|| dnsDomainIs(host, "people.clarityconnect.com") -|| dnsDomainIs(host, "people.enternet.com.au") -|| dnsDomainIs(host, "people.ne.mediaone.net") -|| dnsDomainIs(host, "phonics.jazzles.com") -|| dnsDomainIs(host, "pibburns.com") -|| dnsDomainIs(host, "pilgrims.net") -|| dnsDomainIs(host, "pinenet.com") -|| dnsDomainIs(host, "place.scholastic.com") -|| dnsDomainIs(host, "playground.kodak.com") -|| dnsDomainIs(host, "politicalgraveyard.com") -|| dnsDomainIs(host, "polk.ga.net") -|| dnsDomainIs(host, "pompstory.home.mindspring.com") -|| dnsDomainIs(host, "popularmechanics.com") -|| dnsDomainIs(host, "projects.edtech.sandi.net") -|| dnsDomainIs(host, "psyche.usno.navy.mil") -|| dnsDomainIs(host, "pubweb.parc.xerox.com") -|| dnsDomainIs(host, "puzzlemaker.school.discovery.com") -|| dnsDomainIs(host, "quest.classroom.com") -|| dnsDomainIs(host, "quilting.about.com") -|| dnsDomainIs(host, "rabbitmoon.home.mindspring.com") -|| dnsDomainIs(host, "radio.cbc.ca") -|| dnsDomainIs(host, "rats2u.com") -|| dnsDomainIs(host, "rbcm1.rbcm.gov.bc.ca") -|| dnsDomainIs(host, "readplay.com") -|| dnsDomainIs(host, "recipes4children.homestead.com") -|| dnsDomainIs(host, "redsox.com") -|| dnsDomainIs(host, "renaissance.district96.k12.il.us") -|| dnsDomainIs(host, "rhyme.lycos.com") -|| dnsDomainIs(host, "rhythmweb.com") -|| dnsDomainIs(host, "riverresource.com") -|| dnsDomainIs(host, "rockhoundingar.com") -|| dnsDomainIs(host, "rockies.mlb.com") -|| dnsDomainIs(host, "rosecity.net") -|| dnsDomainIs(host, "rr-vs.informatik.uni-ulm.de") -|| dnsDomainIs(host, "rubens.anu.edu.au") -|| dnsDomainIs(host, "rummelplatz.uni-mannheim.de") -|| dnsDomainIs(host, "sandbox.xerox.com") -|| dnsDomainIs(host, "sarah.fredart.com") -|| dnsDomainIs(host, "schmidel.com") -|| dnsDomainIs(host, "scholastic.com") -|| dnsDomainIs(host, "school.discovery.com") -|| dnsDomainIs(host, "schoolcentral.com") -|| dnsDomainIs(host, "seattletimes.nwsource.com") -|| dnsDomainIs(host, "sericulum.com") -|| dnsDomainIs(host, "sf.airforce.com") -|| dnsDomainIs(host, "shop.usps.com") -|| dnsDomainIs(host, "showcase.netins.net") -|| dnsDomainIs(host, "sikids.com") -|| dnsDomainIs(host, "sites.huji.ac.il") -|| dnsDomainIs(host, "sjliving.com") -|| dnsDomainIs(host, "skullduggery.com") -|| dnsDomainIs(host, "skyways.lib.ks.us") -|| dnsDomainIs(host, "snowdaymovie.nick.com") -|| dnsDomainIs(host, "sosa21.hypermart.net") -|| dnsDomainIs(host, "soundamerica.com") -|| dnsDomainIs(host, "spaceboy.nasda.go.jp") -|| dnsDomainIs(host, "sports.nfl.com") -|| dnsDomainIs(host, "sportsillustrated.cnn.com") -|| dnsDomainIs(host, "starwars.hasbro.com") -|| dnsDomainIs(host, "statelibrary.dcr.state.nc.us") -|| dnsDomainIs(host, "streetplay.com") -|| dnsDomainIs(host, "sts.gsc.nrcan.gc.ca") -|| dnsDomainIs(host, "sunniebunniezz.com") -|| dnsDomainIs(host, "sunsite.nus.edu.sg") -|| dnsDomainIs(host, "sunsite.sut.ac.jp") -|| dnsDomainIs(host, "superm.bart.nl") -|| dnsDomainIs(host, "surf.to") -|| dnsDomainIs(host, "svinet2.fs.fed.us") -|| dnsDomainIs(host, "swiminfo.com") -|| dnsDomainIs(host, "tabletennis.about.com") -|| dnsDomainIs(host, "teacher.scholastic.com") -|| dnsDomainIs(host, "theforce.net") -|| dnsDomainIs(host, "thejessicas.homestead.com") -|| dnsDomainIs(host, "themes.editthispage.com") -|| dnsDomainIs(host, "theory.uwinnipeg.ca") -|| dnsDomainIs(host, "theshadowlands.net") -|| dnsDomainIs(host, "thinks.com") -|| dnsDomainIs(host, "thryomanes.tripod.com") -|| dnsDomainIs(host, "time_zone.tripod.com") -|| dnsDomainIs(host, "titania.cobuild.collins.co.uk") -|| dnsDomainIs(host, "torre.duomo.pisa.it") -|| dnsDomainIs(host, "touregypt.net") -|| dnsDomainIs(host, "toycollecting.about.com") -|| dnsDomainIs(host, "trace.ntu.ac.uk") -|| dnsDomainIs(host, "travelwithkids.about.com") -|| dnsDomainIs(host, "tukids.tucows.com") -|| dnsDomainIs(host, "tv.yahoo.com") -|| dnsDomainIs(host, "tycho.usno.navy.mil") -|| dnsDomainIs(host, "ubl.artistdirect.com") -|| dnsDomainIs(host, "uk-pages.net") -|| dnsDomainIs(host, "ukraine.uazone.net") -|| dnsDomainIs(host, "unmuseum.mus.pa.us") -|| dnsDomainIs(host, "us.imdb.com") -|| dnsDomainIs(host, "userpage.chemie.fu-berlin.de") -|| dnsDomainIs(host, "userpage.fu-berlin.de") -|| dnsDomainIs(host, "userpages.aug.com") -|| dnsDomainIs(host, "users.aol.com") -|| dnsDomainIs(host, "users.bigpond.net.au") -|| dnsDomainIs(host, "users.breathemail.net") -|| dnsDomainIs(host, "users.erols.com") -|| dnsDomainIs(host, "users.imag.net") -|| dnsDomainIs(host, "users.inetw.net") -|| dnsDomainIs(host, "users.massed.net") -|| dnsDomainIs(host, "users.skynet.be") -|| dnsDomainIs(host, "users.uniserve.com") -|| dnsDomainIs(host, "venus.spaceports.com") -|| dnsDomainIs(host, "vgstrategies.about.com") -|| dnsDomainIs(host, "victorian.fortunecity.com") -|| dnsDomainIs(host, "vilenski.com") -|| dnsDomainIs(host, "village.infoweb.ne.jp") -|| dnsDomainIs(host, "virtual.finland.fi") -|| dnsDomainIs(host, "vrml.fornax.hu") -|| dnsDomainIs(host, "vvv.com") -|| dnsDomainIs(host, "w1.xrefer.com") -|| dnsDomainIs(host, "w3.one.net") -|| dnsDomainIs(host, "w3.rz-berlin.mpg.de") -|| dnsDomainIs(host, "w3.trib.com") -|| dnsDomainIs(host, "wallofsound.go.com") -|| dnsDomainIs(host, "web.aimnet.com") -|| dnsDomainIs(host, "web.ccsd.k12.wy.us") -|| dnsDomainIs(host, "web.cs.ualberta.ca") -|| dnsDomainIs(host, "web.idirect.com") -|| dnsDomainIs(host, "web.kyoto-inet.or.jp") -|| dnsDomainIs(host, "web.macam98.ac.il") -|| dnsDomainIs(host, "web.massvacation.com") -|| dnsDomainIs(host, "web.one.net.au") -|| dnsDomainIs(host, "web.qx.net") -|| dnsDomainIs(host, "web.uvic.ca") -|| dnsDomainIs(host, "web2.airmail.net") -|| dnsDomainIs(host, "webcoast.com") -|| dnsDomainIs(host, "webgames.kalisto.com") -|| dnsDomainIs(host, "webhome.idirect.com") -|| dnsDomainIs(host, "webpages.homestead.com") -|| dnsDomainIs(host, "webrum.uni-mannheim.de") -|| dnsDomainIs(host, "webusers.anet-stl.com") -|| dnsDomainIs(host, "welcome.to") -|| dnsDomainIs(host, "wgntv.com") -|| dnsDomainIs(host, "whales.magna.com.au") -|| dnsDomainIs(host, "wildheart.com") -|| dnsDomainIs(host, "wilstar.net") -|| dnsDomainIs(host, "winter-wonderland.com") -|| dnsDomainIs(host, "women.com") -|| dnsDomainIs(host, "woodrow.mpls.frb.fed.us") -|| dnsDomainIs(host, "wordzap.com") -|| dnsDomainIs(host, "worldkids.net") -|| dnsDomainIs(host, "worldwideguide.net") -|| dnsDomainIs(host, "ww3.bay.k12.fl.us") -|| dnsDomainIs(host, "ww3.sportsline.com") -|| dnsDomainIs(host, "www-groups.dcs.st-and.ac.uk") -|| dnsDomainIs(host, "www-public.rz.uni-duesseldorf.de") -|| dnsDomainIs(host, "www.1stkids.com") -|| dnsDomainIs(host, "www.2020tech.com") -|| dnsDomainIs(host, "www.21stcenturytoys.com") -|| dnsDomainIs(host, "www.4adventure.com") -|| dnsDomainIs(host, "www.50states.com") -|| dnsDomainIs(host, "www.800padutch.com") -|| dnsDomainIs(host, "www.88.com") -|| dnsDomainIs(host, "www.a-better.com") -|| dnsDomainIs(host, "www.aaa.com.au") -|| dnsDomainIs(host, "www.aacca.com") -|| dnsDomainIs(host, "www.aalbc.com") -|| dnsDomainIs(host, "www.aardman.com") -|| dnsDomainIs(host, "www.aardvarkelectric.com") -|| dnsDomainIs(host, "www.aawc.com") -|| dnsDomainIs(host, "www.ababmx.com") -|| dnsDomainIs(host, "www.abbeville.com") -|| dnsDomainIs(host, "www.abc.net.au") -|| dnsDomainIs(host, "www.abcb.com") -|| dnsDomainIs(host, "www.abctooncenter.com") -|| dnsDomainIs(host, "www.about.ch") -|| dnsDomainIs(host, "www.accessart.org.uk") -|| dnsDomainIs(host, "www.accu.or.jp") -|| dnsDomainIs(host, "www.accuweather.com") -|| dnsDomainIs(host, "www.achuka.co.uk") -|| dnsDomainIs(host, "www.acmecity.com") -|| dnsDomainIs(host, "www.acorn-group.com") -|| dnsDomainIs(host, "www.acs.ucalgary.ca") -|| dnsDomainIs(host, "www.actden.com") -|| dnsDomainIs(host, "www.actionplanet.com") -|| dnsDomainIs(host, "www.activityvillage.co.uk") -|| dnsDomainIs(host, "www.actwin.com") -|| dnsDomainIs(host, "www.adequate.com") -|| dnsDomainIs(host, "www.adidas.com") -|| dnsDomainIs(host, "www.advent-calendars.com") -|| dnsDomainIs(host, "www.aegis.com") -|| dnsDomainIs(host, "www.af.mil") -|| dnsDomainIs(host, "www.africaindex.africainfo.no") -|| dnsDomainIs(host, "www.africam.com") -|| dnsDomainIs(host, "www.africancrafts.com") -|| dnsDomainIs(host, "www.aggressive.com") -|| dnsDomainIs(host, "www.aghines.com") -|| dnsDomainIs(host, "www.agirlsworld.com") -|| dnsDomainIs(host, "www.agora.stm.it") -|| dnsDomainIs(host, "www.agriculture.com") -|| dnsDomainIs(host, "www.aikidofaq.com") -|| dnsDomainIs(host, "www.ajkids.com") -|| dnsDomainIs(host, "www.akfkoala.gil.com.au") -|| dnsDomainIs(host, "www.akhlah.com") -|| dnsDomainIs(host, "www.alabamainfo.com") -|| dnsDomainIs(host, "www.aland.fi") -|| dnsDomainIs(host, "www.albion.com") -|| dnsDomainIs(host, "www.alcoholismhelp.com") -|| dnsDomainIs(host, "www.alcottweb.com") -|| dnsDomainIs(host, "www.alfanet.it") -|| dnsDomainIs(host, "www.alfy.com") -|| dnsDomainIs(host, "www.algebra-online.com") -|| dnsDomainIs(host, "www.alienexplorer.com") -|| dnsDomainIs(host, "www.aliensatschool.com") -|| dnsDomainIs(host, "www.all-links.com") -|| dnsDomainIs(host, "www.alldetroit.com") -|| dnsDomainIs(host, "www.allexperts.com") -|| dnsDomainIs(host, "www.allmixedup.com") -|| dnsDomainIs(host, "www.allmusic.com") -|| dnsDomainIs(host, "www.almanac.com") -|| dnsDomainIs(host, "www.almaz.com") -|| dnsDomainIs(host, "www.almondseed.com") -|| dnsDomainIs(host, "www.aloha.com") -|| dnsDomainIs(host, "www.aloha.net") -|| dnsDomainIs(host, "www.altonweb.com") -|| dnsDomainIs(host, "www.alyeska-pipe.com") -|| dnsDomainIs(host, "www.am-wood.com") -|| dnsDomainIs(host, "www.amazingadventure.com") -|| dnsDomainIs(host, "www.amazon.com") -|| dnsDomainIs(host, "www.americancheerleader.com") -|| dnsDomainIs(host, "www.americancowboy.com") -|| dnsDomainIs(host, "www.americangirl.com") -|| dnsDomainIs(host, "www.americanparknetwork.com") -|| dnsDomainIs(host, "www.americansouthwest.net") -|| dnsDomainIs(host, "www.americanwest.com") -|| dnsDomainIs(host, "www.ameritech.net") -|| dnsDomainIs(host, "www.amtexpo.com") -|| dnsDomainIs(host, "www.anbg.gov.au") -|| dnsDomainIs(host, "www.anc.org.za") -|| dnsDomainIs(host, "www.ancientegypt.co.uk") -|| dnsDomainIs(host, "www.angelfire.com") -|| dnsDomainIs(host, "www.angelsbaseball.com") -|| dnsDomainIs(host, "www.anholt.co.uk") -|| dnsDomainIs(host, "www.animabets.com") -|| dnsDomainIs(host, "www.animalnetwork.com") -|| dnsDomainIs(host, "www.animalpicturesarchive.com") -|| dnsDomainIs(host, "www.anime-genesis.com") -|| dnsDomainIs(host, "www.annefrank.com") -|| dnsDomainIs(host, "www.annefrank.nl") -|| dnsDomainIs(host, "www.annie75.com") -|| dnsDomainIs(host, "www.antbee.com") -|| dnsDomainIs(host, "www.antiquetools.com") -|| dnsDomainIs(host, "www.antiquetoy.com") -|| dnsDomainIs(host, "www.anzsbeg.org.au") -|| dnsDomainIs(host, "www.aol.com") -|| dnsDomainIs(host, "www.aone.com") -|| dnsDomainIs(host, "www.aphids.com") -|| dnsDomainIs(host, "www.apl.com") -|| dnsDomainIs(host, "www.aplusmath.com") -|| dnsDomainIs(host, "www.applebookshop.co.uk") -|| dnsDomainIs(host, "www.appropriatesoftware.com") -|| dnsDomainIs(host, "www.appukids.com") -|| dnsDomainIs(host, "www.april-joy.com") -|| dnsDomainIs(host, "www.arab.net") -|| dnsDomainIs(host, "www.aracnet.com") -|| dnsDomainIs(host, "www.arborday.com") -|| dnsDomainIs(host, "www.arcadevillage.com") -|| dnsDomainIs(host, "www.archiecomics.com") -|| dnsDomainIs(host, "www.archives.state.al.us") -|| dnsDomainIs(host, "www.arctic.ca") -|| dnsDomainIs(host, "www.ardenjohnson.com") -|| dnsDomainIs(host, "www.aristotle.net") -|| dnsDomainIs(host, "www.arizhwys.com") -|| dnsDomainIs(host, "www.arizonaguide.com") -|| dnsDomainIs(host, "www.arlingtoncemetery.com") -|| dnsDomainIs(host, "www.armory.com") -|| dnsDomainIs(host, "www.armwrestling.com") -|| dnsDomainIs(host, "www.arnprior.com") -|| dnsDomainIs(host, "www.artabunga.com") -|| dnsDomainIs(host, "www.artcarte.com") -|| dnsDomainIs(host, "www.artchive.com") -|| dnsDomainIs(host, "www.artcontest.com") -|| dnsDomainIs(host, "www.artcyclopedia.com") -|| dnsDomainIs(host, "www.artisandevelopers.com") -|| dnsDomainIs(host, "www.artlex.com") -|| dnsDomainIs(host, "www.artsandkids.com") -|| dnsDomainIs(host, "www.artyastro.com") -|| dnsDomainIs(host, "www.arwhead.com") -|| dnsDomainIs(host, "www.asahi-net.or.jp") -|| dnsDomainIs(host, "www.asap.unimelb.edu.au") -|| dnsDomainIs(host, "www.ascpl.lib.oh.us") -|| dnsDomainIs(host, "www.asia-art.net") -|| dnsDomainIs(host, "www.asiabigtime.com") -|| dnsDomainIs(host, "www.asianart.com") -|| dnsDomainIs(host, "www.asiatour.com") -|| dnsDomainIs(host, "www.asiaweek.com") -|| dnsDomainIs(host, "www.askanexpert.com") -|| dnsDomainIs(host, "www.askbasil.com") -|| dnsDomainIs(host, "www.assa.org.au") -|| dnsDomainIs(host, "www.ast.cam.ac.uk") -|| dnsDomainIs(host, "www.astronomy.com") -|| dnsDomainIs(host, "www.astros.com") -|| dnsDomainIs(host, "www.atek.com") -|| dnsDomainIs(host, "www.athlete.com") -|| dnsDomainIs(host, "www.athropolis.com") -|| dnsDomainIs(host, "www.atkielski.com") -|| dnsDomainIs(host, "www.atlantabraves.com") -|| dnsDomainIs(host, "www.atlantafalcons.com") -|| dnsDomainIs(host, "www.atlantathrashers.com") -|| dnsDomainIs(host, "www.atlanticus.com") -|| dnsDomainIs(host, "www.atm.ch.cam.ac.uk") -|| dnsDomainIs(host, "www.atom.co.jp") -|| dnsDomainIs(host, "www.atomicarchive.com") -|| dnsDomainIs(host, "www.att.com") -|| dnsDomainIs(host, "www.audreywood.com") -|| dnsDomainIs(host, "www.auntannie.com") -|| dnsDomainIs(host, "www.auntie.com") -|| dnsDomainIs(host, "www.avi-writer.com") -|| dnsDomainIs(host, "www.awesomeclipartforkids.com") -|| dnsDomainIs(host, "www.awhitehorse.com") -|| dnsDomainIs(host, "www.axess.com") -|| dnsDomainIs(host, "www.ayles.com") -|| dnsDomainIs(host, "www.ayn.ca") -|| dnsDomainIs(host, "www.azcardinals.com") -|| dnsDomainIs(host, "www.azdiamondbacks.com") -|| dnsDomainIs(host, "www.azsolarcenter.com") -|| dnsDomainIs(host, "www.azstarnet.com") -|| dnsDomainIs(host, "www.aztecafoods.com") -|| dnsDomainIs(host, "www.b-witched.com") -|| dnsDomainIs(host, "www.baberuthmuseum.com") -|| dnsDomainIs(host, "www.backstreetboys.com") -|| dnsDomainIs(host, "www.bagheera.com") -|| dnsDomainIs(host, "www.bahamas.com") -|| dnsDomainIs(host, "www.baileykids.com") -|| dnsDomainIs(host, "www.baldeagleinfo.com") -|| dnsDomainIs(host, "www.balloonhq.com") -|| dnsDomainIs(host, "www.balloonzone.com") -|| dnsDomainIs(host, "www.ballparks.com") -|| dnsDomainIs(host, "www.balmoralsoftware.com") -|| dnsDomainIs(host, "www.banja.com") -|| dnsDomainIs(host, "www.banph.com") -|| dnsDomainIs(host, "www.barbie.com") -|| dnsDomainIs(host, "www.barkingbuddies.com") -|| dnsDomainIs(host, "www.barnsdle.demon.co.uk") -|| dnsDomainIs(host, "www.barrysclipart.com") -|| dnsDomainIs(host, "www.bartleby.com") -|| dnsDomainIs(host, "www.baseplate.com") -|| dnsDomainIs(host, "www.batman-superman.com") -|| dnsDomainIs(host, "www.batmanbeyond.com") -|| dnsDomainIs(host, "www.bbc.co.uk") -|| dnsDomainIs(host, "www.bbhighway.com") -|| dnsDomainIs(host, "www.bboy.com") -|| dnsDomainIs(host, "www.bcit.tec.nj.us") -|| dnsDomainIs(host, "www.bconnex.net") -|| dnsDomainIs(host, "www.bcpl.net") -|| dnsDomainIs(host, "www.beach-net.com") -|| dnsDomainIs(host, "www.beachboys.com") -|| dnsDomainIs(host, "www.beakman.com") -|| dnsDomainIs(host, "www.beano.co.uk") -|| dnsDomainIs(host, "www.beans.demon.co.uk") -|| dnsDomainIs(host, "www.beartime.com") -|| dnsDomainIs(host, "www.bearyspecial.co.uk") -|| dnsDomainIs(host, "www.bedtime.com") -|| dnsDomainIs(host, "www.beingme.com") -|| dnsDomainIs(host, "www.belizeexplorer.com") -|| dnsDomainIs(host, "www.bell-labs.com") -|| dnsDomainIs(host, "www.bemorecreative.com") -|| dnsDomainIs(host, "www.bengals.com") -|| dnsDomainIs(host, "www.benjerry.com") -|| dnsDomainIs(host, "www.bennygoodsport.com") -|| dnsDomainIs(host, "www.berenstainbears.com") -|| dnsDomainIs(host, "www.beringia.com") -|| dnsDomainIs(host, "www.beritsbest.com") -|| dnsDomainIs(host, "www.berksweb.com") -|| dnsDomainIs(host, "www.best.com") -|| dnsDomainIs(host, "www.betsybyars.com") -|| dnsDomainIs(host, "www.bfro.net") -|| dnsDomainIs(host, "www.bgmm.com") -|| dnsDomainIs(host, "www.bibliography.com") -|| dnsDomainIs(host, "www.bigblue.com.au") -|| dnsDomainIs(host, "www.bigchalk.com") -|| dnsDomainIs(host, "www.bigidea.com") -|| dnsDomainIs(host, "www.bigtop.com") -|| dnsDomainIs(host, "www.bikecrawler.com") -|| dnsDomainIs(host, "www.billboard.com") -|| dnsDomainIs(host, "www.billybear4kids.com") -|| dnsDomainIs(host, "www.biography.com") -|| dnsDomainIs(host, "www.birdnature.com") -|| dnsDomainIs(host, "www.birdsnways.com") -|| dnsDomainIs(host, "www.birdtimes.com") -|| dnsDomainIs(host, "www.birminghamzoo.com") -|| dnsDomainIs(host, "www.birthdaypartyideas.com") -|| dnsDomainIs(host, "www.bis.arachsys.com") -|| dnsDomainIs(host, "www.bkgm.com") -|| dnsDomainIs(host, "www.blackbaseball.com") -|| dnsDomainIs(host, "www.blackbeardthepirate.com") -|| dnsDomainIs(host, "www.blackbeltmag.com") -|| dnsDomainIs(host, "www.blackfacts.com") -|| dnsDomainIs(host, "www.blackfeetnation.com") -|| dnsDomainIs(host, "www.blackhills-info.com") -|| dnsDomainIs(host, "www.blackholegang.com") -|| dnsDomainIs(host, "www.blaque.net") -|| dnsDomainIs(host, "www.blarg.net") -|| dnsDomainIs(host, "www.blasternaut.com") -|| dnsDomainIs(host, "www.blizzard.com") -|| dnsDomainIs(host, "www.blocksite.com") -|| dnsDomainIs(host, "www.bluejackets.com") -|| dnsDomainIs(host, "www.bluejays.ca") -|| dnsDomainIs(host, "www.bluemountain.com") -|| dnsDomainIs(host, "www.blupete.com") -|| dnsDomainIs(host, "www.blyton.co.uk") -|| dnsDomainIs(host, "www.boatnerd.com") -|| dnsDomainIs(host, "www.boatsafe.com") -|| dnsDomainIs(host, "www.bonus.com") -|| dnsDomainIs(host, "www.boowakwala.com") -|| dnsDomainIs(host, "www.bostonbruins.com") -|| dnsDomainIs(host, "www.braceface.com") -|| dnsDomainIs(host, "www.bracesinfo.com") -|| dnsDomainIs(host, "www.bradkent.com") -|| dnsDomainIs(host, "www.brainium.com") -|| dnsDomainIs(host, "www.brainmania.com") -|| dnsDomainIs(host, "www.brainpop.com") -|| dnsDomainIs(host, "www.bridalcave.com") -|| dnsDomainIs(host, "www.brightmoments.com") -|| dnsDomainIs(host, "www.britannia.com") -|| dnsDomainIs(host, "www.britannica.com") -|| dnsDomainIs(host, "www.british-museum.ac.uk") -|| dnsDomainIs(host, "www.brookes.ac.uk") -|| dnsDomainIs(host, "www.brookfieldreader.com") -|| dnsDomainIs(host, "www.btinternet.com") -|| dnsDomainIs(host, "www.bubbledome.co.nz") -|| dnsDomainIs(host, "www.buccaneers.com") -|| dnsDomainIs(host, "www.buffy.com") -|| dnsDomainIs(host, "www.bullying.co.uk") -|| dnsDomainIs(host, "www.bumply.com") -|| dnsDomainIs(host, "www.bungi.com") -|| dnsDomainIs(host, "www.burlco.lib.nj.us") -|| dnsDomainIs(host, "www.burlingamepezmuseum.com") -|| dnsDomainIs(host, "www.bus.ualberta.ca") -|| dnsDomainIs(host, "www.busprod.com") -|| dnsDomainIs(host, "www.butlerart.com") -|| dnsDomainIs(host, "www.butterflies.com") -|| dnsDomainIs(host, "www.butterflyfarm.co.cr") -|| dnsDomainIs(host, "www.bway.net") -|| dnsDomainIs(host, "www.bydonovan.com") -|| dnsDomainIs(host, "www.ca-mall.com") -|| dnsDomainIs(host, "www.cabinessence.com") -|| dnsDomainIs(host, "www.cablecarmuseum.com") -|| dnsDomainIs(host, "www.cadbury.co.uk") -|| dnsDomainIs(host, "www.calendarzone.com") -|| dnsDomainIs(host, "www.calgaryflames.com") -|| dnsDomainIs(host, "www.californiamissions.com") -|| dnsDomainIs(host, "www.camalott.com") -|| dnsDomainIs(host, "www.camelotintl.com") -|| dnsDomainIs(host, "www.campbellsoup.com") -|| dnsDomainIs(host, "www.camvista.com") -|| dnsDomainIs(host, "www.canadiens.com") -|| dnsDomainIs(host, "www.canals.state.ny.us") -|| dnsDomainIs(host, "www.candlelightstories.com") -|| dnsDomainIs(host, "www.candles-museum.com") -|| dnsDomainIs(host, "www.candystand.com") -|| dnsDomainIs(host, "www.caneshockey.com") -|| dnsDomainIs(host, "www.canismajor.com") -|| dnsDomainIs(host, "www.canucks.com") -|| dnsDomainIs(host, "www.capecod.net") -|| dnsDomainIs(host, "www.capital.net") -|| dnsDomainIs(host, "www.capstonestudio.com") -|| dnsDomainIs(host, "www.cardblvd.com") -|| dnsDomainIs(host, "www.caro.net") -|| dnsDomainIs(host, "www.carolhurst.com") -|| dnsDomainIs(host, "www.carr.lib.md.us") -|| dnsDomainIs(host, "www.cartooncorner.com") -|| dnsDomainIs(host, "www.cartooncritters.com") -|| dnsDomainIs(host, "www.cartoonnetwork.com") -|| dnsDomainIs(host, "www.carvingpatterns.com") -|| dnsDomainIs(host, "www.cashuniversity.com") -|| dnsDomainIs(host, "www.castles-of-britain.com") -|| dnsDomainIs(host, "www.castlewales.com") -|| dnsDomainIs(host, "www.catholic-forum.com") -|| dnsDomainIs(host, "www.catholic.net") -|| dnsDomainIs(host, "www.cattle.guelph.on.ca") -|| dnsDomainIs(host, "www.cavedive.com") -|| dnsDomainIs(host, "www.caveofthewinds.com") -|| dnsDomainIs(host, "www.cbc4kids.ca") -|| dnsDomainIs(host, "www.ccer.ggl.ruu.nl") -|| dnsDomainIs(host, "www.ccnet.com") -|| dnsDomainIs(host, "www.celineonline.com") -|| dnsDomainIs(host, "www.cellsalive.com") -|| dnsDomainIs(host, "www.centuryinshoes.com") -|| dnsDomainIs(host, "www.cfl.ca") -|| dnsDomainIs(host, "www.channel4.com") -|| dnsDomainIs(host, "www.channel8.net") -|| dnsDomainIs(host, "www.chanukah99.com") -|| dnsDomainIs(host, "www.charged.com") -|| dnsDomainIs(host, "www.chargers.com") -|| dnsDomainIs(host, "www.charlotte.com") -|| dnsDomainIs(host, "www.chaseday.com") -|| dnsDomainIs(host, "www.chateauversailles.fr") -|| dnsDomainIs(host, "www.cheatcc.com") -|| dnsDomainIs(host, "www.cheerleading.net") -|| dnsDomainIs(host, "www.cheese.com") -|| dnsDomainIs(host, "www.chem4kids.com") -|| dnsDomainIs(host, "www.chemicool.com") -|| dnsDomainIs(host, "www.cherbearsden.com") -|| dnsDomainIs(host, "www.chesskids.com") -|| dnsDomainIs(host, "www.chessvariants.com") -|| dnsDomainIs(host, "www.cheungswingchun.com") -|| dnsDomainIs(host, "www.chevroncars.com") -|| dnsDomainIs(host, "www.chibi.simplenet.com") -|| dnsDomainIs(host, "www.chicagobears.com") -|| dnsDomainIs(host, "www.chicagoblackhawks.com") -|| dnsDomainIs(host, "www.chickasaw.net") -|| dnsDomainIs(host, "www.childrensmusic.co.uk") -|| dnsDomainIs(host, "www.childrenssoftware.com") -|| dnsDomainIs(host, "www.childrenstory.com") -|| dnsDomainIs(host, "www.childrenwithdiabetes.com") -|| dnsDomainIs(host, "www.chinapage.com") -|| dnsDomainIs(host, "www.chinatoday.com") -|| dnsDomainIs(host, "www.chinavista.com") -|| dnsDomainIs(host, "www.chinnet.net") -|| dnsDomainIs(host, "www.chiquita.com") -|| dnsDomainIs(host, "www.chisox.com") -|| dnsDomainIs(host, "www.chivalry.com") -|| dnsDomainIs(host, "www.christiananswers.net") -|| dnsDomainIs(host, "www.christianity.com") -|| dnsDomainIs(host, "www.christmas.com") -|| dnsDomainIs(host, "www.christmas98.com") -|| dnsDomainIs(host, "www.chron.com") -|| dnsDomainIs(host, "www.chronique.com") -|| dnsDomainIs(host, "www.chuckecheese.com") -|| dnsDomainIs(host, "www.chucklebait.com") -|| dnsDomainIs(host, "www.chunkymonkey.com") -|| dnsDomainIs(host, "www.ci.chi.il.us") -|| dnsDomainIs(host, "www.ci.nyc.ny.us") -|| dnsDomainIs(host, "www.ci.phoenix.az.us") -|| dnsDomainIs(host, "www.ci.san-diego.ca.us") -|| dnsDomainIs(host, "www.cibc.com") -|| dnsDomainIs(host, "www.ciderpresspottery.com") -|| dnsDomainIs(host, "www.cincinnatireds.com") -|| dnsDomainIs(host, "www.circusparade.com") -|| dnsDomainIs(host, "www.circusweb.com") -|| dnsDomainIs(host, "www.cirquedusoleil.com") -|| dnsDomainIs(host, "www.cit.state.vt.us") -|| dnsDomainIs(host, "www.citycastles.com") -|| dnsDomainIs(host, "www.cityu.edu.hk") -|| dnsDomainIs(host, "www.civicmind.com") -|| dnsDomainIs(host, "www.civil-war.net") -|| dnsDomainIs(host, "www.civilization.ca") -|| dnsDomainIs(host, "www.cl.cam.ac.uk") -|| dnsDomainIs(host, "www.clantongang.com") -|| dnsDomainIs(host, "www.clark.net") -|| dnsDomainIs(host, "www.classicgaming.com") -|| dnsDomainIs(host, "www.claus.com") -|| dnsDomainIs(host, "www.clayz.com") -|| dnsDomainIs(host, "www.clearcf.uvic.ca") -|| dnsDomainIs(host, "www.clearlight.com") -|| dnsDomainIs(host, "www.clemusart.com") -|| dnsDomainIs(host, "www.clevelandbrowns.com") -|| dnsDomainIs(host, "www.clipartcastle.com") -|| dnsDomainIs(host, "www.clubi.ie") -|| dnsDomainIs(host, "www.cnn.com") -|| dnsDomainIs(host, "www.co.henrico.va.us") -|| dnsDomainIs(host, "www.coax.net") -|| dnsDomainIs(host, "www.cocacola.com") -|| dnsDomainIs(host, "www.cocori.com") -|| dnsDomainIs(host, "www.codesmiths.com") -|| dnsDomainIs(host, "www.codetalk.fed.us") -|| dnsDomainIs(host, "www.coin-gallery.com") -|| dnsDomainIs(host, "www.colinthompson.com") -|| dnsDomainIs(host, "www.collectoronline.com") -|| dnsDomainIs(host, "www.colonialhall.com") -|| dnsDomainIs(host, "www.coloradoavalanche.com") -|| dnsDomainIs(host, "www.coloradorockies.com") -|| dnsDomainIs(host, "www.colormathpink.com") -|| dnsDomainIs(host, "www.colts.com") -|| dnsDomainIs(host, "www.comet.net") -|| dnsDomainIs(host, "www.cometsystems.com") -|| dnsDomainIs(host, "www.comicbookresources.com") -|| dnsDomainIs(host, "www.comicspage.com") -|| dnsDomainIs(host, "www.compassnet.com") -|| dnsDomainIs(host, "www.compleatbellairs.com") -|| dnsDomainIs(host, "www.comptons.com") -|| dnsDomainIs(host, "www.concentric.net") -|| dnsDomainIs(host, "www.congogorillaforest.com") -|| dnsDomainIs(host, "www.conjuror.com") -|| dnsDomainIs(host, "www.conk.com") -|| dnsDomainIs(host, "www.conservation.state.mo.us") -|| dnsDomainIs(host, "www.contracostatimes.com") -|| dnsDomainIs(host, "www.control.chalmers.se") -|| dnsDomainIs(host, "www.cookierecipe.com") -|| dnsDomainIs(host, "www.cooljapanesetoys.com") -|| dnsDomainIs(host, "www.cooper.com") -|| dnsDomainIs(host, "www.corpcomm.net") -|| dnsDomainIs(host, "www.corrietenboom.com") -|| dnsDomainIs(host, "www.corynet.com") -|| dnsDomainIs(host, "www.corypaints.com") -|| dnsDomainIs(host, "www.cosmosmith.com") -|| dnsDomainIs(host, "www.countdown2000.com") -|| dnsDomainIs(host, "www.cowboy.net") -|| dnsDomainIs(host, "www.cowboypal.com") -|| dnsDomainIs(host, "www.cowcreek.com") -|| dnsDomainIs(host, "www.cowgirl.net") -|| dnsDomainIs(host, "www.cowgirls.com") -|| dnsDomainIs(host, "www.cp.duluth.mn.us") -|| dnsDomainIs(host, "www.cpsweb.com") -|| dnsDomainIs(host, "www.craftideas.com") -|| dnsDomainIs(host, "www.craniamania.com") -|| dnsDomainIs(host, "www.crater.lake.national-park.com") -|| dnsDomainIs(host, "www.crayoncrawler.com") -|| dnsDomainIs(host, "www.crazybone.com") -|| dnsDomainIs(host, "www.crazybones.com") -|| dnsDomainIs(host, "www.crd.ge.com") -|| dnsDomainIs(host, "www.create4kids.com") -|| dnsDomainIs(host, "www.creativemusic.com") -|| dnsDomainIs(host, "www.crocodilian.com") -|| dnsDomainIs(host, "www.crop.cri.nz") -|| dnsDomainIs(host, "www.cruzio.com") -|| dnsDomainIs(host, "www.crwflags.com") -|| dnsDomainIs(host, "www.cryptograph.com") -|| dnsDomainIs(host, "www.cryst.bbk.ac.uk") -|| dnsDomainIs(host, "www.cs.bilkent.edu.tr") -|| dnsDomainIs(host, "www.cs.man.ac.uk") -|| dnsDomainIs(host, "www.cs.sfu.ca") -|| dnsDomainIs(host, "www.cs.ubc.ca") -|| dnsDomainIs(host, "www.csd.uu.se") -|| dnsDomainIs(host, "www.csmonitor.com") -|| dnsDomainIs(host, "www.csse.monash.edu.au") -|| dnsDomainIs(host, "www.cstone.net") -|| dnsDomainIs(host, "www.csu.edu.au") -|| dnsDomainIs(host, "www.cubs.com") -|| dnsDomainIs(host, "www.culture.fr") -|| dnsDomainIs(host, "www.cultures.com") -|| dnsDomainIs(host, "www.curtis-collection.com") -|| dnsDomainIs(host, "www.cut-the-knot.com") -|| dnsDomainIs(host, "www.cws-scf.ec.gc.ca") -|| dnsDomainIs(host, "www.cyber-dyne.com") -|| dnsDomainIs(host, "www.cyberbee.com") -|| dnsDomainIs(host, "www.cyberbee.net") -|| dnsDomainIs(host, "www.cybercom.net") -|| dnsDomainIs(host, "www.cybercomm.net") -|| dnsDomainIs(host, "www.cybercomm.nl") -|| dnsDomainIs(host, "www.cybercorp.co.nz") -|| dnsDomainIs(host, "www.cybercs.com") -|| dnsDomainIs(host, "www.cybergoal.com") -|| dnsDomainIs(host, "www.cyberkids.com") -|| dnsDomainIs(host, "www.cyberspaceag.com") -|| dnsDomainIs(host, "www.cyberteens.com") -|| dnsDomainIs(host, "www.cybertours.com") -|| dnsDomainIs(host, "www.cybiko.com") -|| dnsDomainIs(host, "www.czweb.com") -|| dnsDomainIs(host, "www.d91.k12.id.us") -|| dnsDomainIs(host, "www.dailygrammar.com") -|| dnsDomainIs(host, "www.dakidz.com") -|| dnsDomainIs(host, "www.dalejarrettonline.com") -|| dnsDomainIs(host, "www.dallascowboys.com") -|| dnsDomainIs(host, "www.dallasdogndisc.com") -|| dnsDomainIs(host, "www.dallasstars.com") -|| dnsDomainIs(host, "www.damnyankees.com") -|| dnsDomainIs(host, "www.danceart.com") -|| dnsDomainIs(host, "www.daniellesplace.com") -|| dnsDomainIs(host, "www.dare-america.com") -|| dnsDomainIs(host, "www.darkfish.com") -|| dnsDomainIs(host, "www.darsbydesign.com") -|| dnsDomainIs(host, "www.datadragon.com") -|| dnsDomainIs(host, "www.davidreilly.com") -|| dnsDomainIs(host, "www.dccomics.com") -|| dnsDomainIs(host, "www.dcn.davis.ca.us") -|| dnsDomainIs(host, "www.deepseaworld.com") -|| dnsDomainIs(host, "www.delawaretribeofindians.nsn.us") -|| dnsDomainIs(host, "www.demon.co.uk") -|| dnsDomainIs(host, "www.denverbroncos.com") -|| dnsDomainIs(host, "www.denverpost.com") -|| dnsDomainIs(host, "www.dep.state.pa.us") -|| dnsDomainIs(host, "www.desert-fairy.com") -|| dnsDomainIs(host, "www.desert-storm.com") -|| dnsDomainIs(host, "www.desertusa.com") -|| dnsDomainIs(host, "www.designltd.com") -|| dnsDomainIs(host, "www.designsbykat.com") -|| dnsDomainIs(host, "www.detnews.com") -|| dnsDomainIs(host, "www.detroitlions.com") -|| dnsDomainIs(host, "www.detroitredwings.com") -|| dnsDomainIs(host, "www.detroittigers.com") -|| dnsDomainIs(host, "www.deutsches-museum.de") -|| dnsDomainIs(host, "www.devilray.com") -|| dnsDomainIs(host, "www.dhorse.com") -|| dnsDomainIs(host, "www.diana-ross.co.uk") -|| dnsDomainIs(host, "www.dianarossandthesupremes.net") -|| dnsDomainIs(host, "www.diaryproject.com") -|| dnsDomainIs(host, "www.dickbutkus.com") -|| dnsDomainIs(host, "www.dickshovel.com") -|| dnsDomainIs(host, "www.dictionary.com") -|| dnsDomainIs(host, "www.didyouknow.com") -|| dnsDomainIs(host, "www.diegorivera.com") -|| dnsDomainIs(host, "www.digitalcentury.com") -|| dnsDomainIs(host, "www.digitaldog.com") -|| dnsDomainIs(host, "www.digiweb.com") -|| dnsDomainIs(host, "www.dimdima.com") -|| dnsDomainIs(host, "www.dinodon.com") -|| dnsDomainIs(host, "www.dinosauria.com") -|| dnsDomainIs(host, "www.discovereso.com") -|| dnsDomainIs(host, "www.discovergalapagos.com") -|| dnsDomainIs(host, "www.discovergames.com") -|| dnsDomainIs(host, "www.discoveringarchaeology.com") -|| dnsDomainIs(host, "www.discoveringmontana.com") -|| dnsDomainIs(host, "www.discoverlearning.com") -|| dnsDomainIs(host, "www.discovery.com") -|| dnsDomainIs(host, "www.disknet.com") -|| dnsDomainIs(host, "www.disney.go.com") -|| dnsDomainIs(host, "www.distinguishedwomen.com") -|| dnsDomainIs(host, "www.dkonline.com") -|| dnsDomainIs(host, "www.dltk-kids.com") -|| dnsDomainIs(host, "www.dmgi.com") -|| dnsDomainIs(host, "www.dnr.state.md.us") -|| dnsDomainIs(host, "www.dnr.state.mi.us") -|| dnsDomainIs(host, "www.dnr.state.wi.us") -|| dnsDomainIs(host, "www.dodgers.com") -|| dnsDomainIs(host, "www.dodoland.com") -|| dnsDomainIs(host, "www.dog-play.com") -|| dnsDomainIs(host, "www.dogbreedinfo.com") -|| dnsDomainIs(host, "www.doginfomat.com") -|| dnsDomainIs(host, "www.dole5aday.com") -|| dnsDomainIs(host, "www.dollart.com") -|| dnsDomainIs(host, "www.dolliedish.com") -|| dnsDomainIs(host, "www.dome2000.co.uk") -|| dnsDomainIs(host, "www.domtar.com") -|| dnsDomainIs(host, "www.donegal.k12.pa.us") -|| dnsDomainIs(host, "www.dorneypark.com") -|| dnsDomainIs(host, "www.dorothyhinshawpatent.com") -|| dnsDomainIs(host, "www.dougweb.com") -|| dnsDomainIs(host, "www.dps.state.ak.us") -|| dnsDomainIs(host, "www.draw3d.com") -|| dnsDomainIs(host, "www.dreamgate.com") -|| dnsDomainIs(host, "www.dreamkitty.com") -|| dnsDomainIs(host, "www.dreamscape.com") -|| dnsDomainIs(host, "www.dreamtime.net.au") -|| dnsDomainIs(host, "www.drpeppermuseum.com") -|| dnsDomainIs(host, "www.drscience.com") -|| dnsDomainIs(host, "www.drseward.com") -|| dnsDomainIs(host, "www.drtoy.com") -|| dnsDomainIs(host, "www.dse.nl") -|| dnsDomainIs(host, "www.dtic.mil") -|| dnsDomainIs(host, "www.duracell.com") -|| dnsDomainIs(host, "www.dustbunny.com") -|| dnsDomainIs(host, "www.dynanet.com") -|| dnsDomainIs(host, "www.eagerreaders.com") -|| dnsDomainIs(host, "www.eaglekids.com") -|| dnsDomainIs(host, "www.earthcalendar.net") -|| dnsDomainIs(host, "www.earthday.net") -|| dnsDomainIs(host, "www.earthdog.com") -|| dnsDomainIs(host, "www.earthwatch.com") -|| dnsDomainIs(host, "www.ease.com") -|| dnsDomainIs(host, "www.eastasia.ws") -|| dnsDomainIs(host, "www.easytype.com") -|| dnsDomainIs(host, "www.eblewis.com") -|| dnsDomainIs(host, "www.ebs.hw.ac.uk") -|| dnsDomainIs(host, "www.eclipse.net") -|| dnsDomainIs(host, "www.eco-pros.com") -|| dnsDomainIs(host, "www.edbydesign.com") -|| dnsDomainIs(host, "www.eddytheeco-dog.com") -|| dnsDomainIs(host, "www.edgate.com") -|| dnsDomainIs(host, "www.edmontonoilers.com") -|| dnsDomainIs(host, "www.edu-source.com") -|| dnsDomainIs(host, "www.edu.gov.on.ca") -|| dnsDomainIs(host, "www.edu4kids.com") -|| dnsDomainIs(host, "www.educ.uvic.ca") -|| dnsDomainIs(host, "www.educate.org.uk") -|| dnsDomainIs(host, "www.education-world.com") -|| dnsDomainIs(host, "www.edunet.com") -|| dnsDomainIs(host, "www.eduplace.com") -|| dnsDomainIs(host, "www.edupuppy.com") -|| dnsDomainIs(host, "www.eduweb.com") -|| dnsDomainIs(host, "www.ee.ryerson.ca") -|| dnsDomainIs(host, "www.ee.surrey.ac.uk") -|| dnsDomainIs(host, "www.eeggs.com") -|| dnsDomainIs(host, "www.efes.com") -|| dnsDomainIs(host, "www.egalvao.com") -|| dnsDomainIs(host, "www.egypt.com") -|| dnsDomainIs(host, "www.egyptology.com") -|| dnsDomainIs(host, "www.ehobbies.com") -|| dnsDomainIs(host, "www.ehow.com") -|| dnsDomainIs(host, "www.eia.brad.ac.uk") -|| dnsDomainIs(host, "www.elbalero.gob.mx") -|| dnsDomainIs(host, "www.eliki.com") -|| dnsDomainIs(host, "www.elnino.com") -|| dnsDomainIs(host, "www.elok.com") -|| dnsDomainIs(host, "www.emf.net") -|| dnsDomainIs(host, "www.emsphone.com") -|| dnsDomainIs(host, "www.emulateme.com") -|| dnsDomainIs(host, "www.en.com") -|| dnsDomainIs(host, "www.enature.com") -|| dnsDomainIs(host, "www.enchantedlearning.com") -|| dnsDomainIs(host, "www.encyclopedia.com") -|| dnsDomainIs(host, "www.endex.com") -|| dnsDomainIs(host, "www.enjoyillinois.com") -|| dnsDomainIs(host, "www.enn.com") -|| dnsDomainIs(host, "www.enriqueig.com") -|| dnsDomainIs(host, "www.enteract.com") -|| dnsDomainIs(host, "www.epals.com") -|| dnsDomainIs(host, "www.equine-world.co.uk") -|| dnsDomainIs(host, "www.eric-carle.com") -|| dnsDomainIs(host, "www.ericlindros.net") -|| dnsDomainIs(host, "www.escape.com") -|| dnsDomainIs(host, "www.eskimo.com") -|| dnsDomainIs(host, "www.essentialsofmusic.com") -|| dnsDomainIs(host, "www.etch-a-sketch.com") -|| dnsDomainIs(host, "www.ethanallen.together.com") -|| dnsDomainIs(host, "www.etoys.com") -|| dnsDomainIs(host, "www.eurekascience.com") -|| dnsDomainIs(host, "www.euronet.nl") -|| dnsDomainIs(host, "www.everyrule.com") -|| dnsDomainIs(host, "www.ex.ac.uk") -|| dnsDomainIs(host, "www.excite.com") -|| dnsDomainIs(host, "www.execpc.com") -|| dnsDomainIs(host, "www.execulink.com") -|| dnsDomainIs(host, "www.exn.net") -|| dnsDomainIs(host, "www.expa.hvu.nl") -|| dnsDomainIs(host, "www.expage.com") -|| dnsDomainIs(host, "www.explode.to") -|| dnsDomainIs(host, "www.explorescience.com") -|| dnsDomainIs(host, "www.explorezone.com") -|| dnsDomainIs(host, "www.extremescience.com") -|| dnsDomainIs(host, "www.eyelid.co.uk") -|| dnsDomainIs(host, "www.eyeneer.com") -|| dnsDomainIs(host, "www.eyesofachild.com") -|| dnsDomainIs(host, "www.eyesofglory.com") -|| dnsDomainIs(host, "www.ezschool.com") -|| dnsDomainIs(host, "www.f1-live.com") -|| dnsDomainIs(host, "www.fables.co.uk") -|| dnsDomainIs(host, "www.factmonster.com") -|| dnsDomainIs(host, "www.fairygodmother.com") -|| dnsDomainIs(host, "www.familybuzz.com") -|| dnsDomainIs(host, "www.familygames.com") -|| dnsDomainIs(host, "www.familygardening.com") -|| dnsDomainIs(host, "www.familyinternet.com") -|| dnsDomainIs(host, "www.familymoney.com") -|| dnsDomainIs(host, "www.familyplay.com") -|| dnsDomainIs(host, "www.famousbirthdays.com") -|| dnsDomainIs(host, "www.fandom.com") -|| dnsDomainIs(host, "www.fansites.com") -|| dnsDomainIs(host, "www.faoschwarz.com") -|| dnsDomainIs(host, "www.fbe.unsw.edu.au") -|| dnsDomainIs(host, "www.fcps.k12.va.us") -|| dnsDomainIs(host, "www.fellersartsfactory.com") -|| dnsDomainIs(host, "www.ferrari.it") -|| dnsDomainIs(host, "www.fertnel.com") -|| dnsDomainIs(host, "www.fh-konstanz.de") -|| dnsDomainIs(host, "www.fhw.gr") -|| dnsDomainIs(host, "www.fibblesnork.com") -|| dnsDomainIs(host, "www.fidnet.com") -|| dnsDomainIs(host, "www.fieldhockey.com") -|| dnsDomainIs(host, "www.fieldhockeytraining.com") -|| dnsDomainIs(host, "www.fieler.com") -|| dnsDomainIs(host, "www.finalfour.net") -|| dnsDomainIs(host, "www.finifter.com") -|| dnsDomainIs(host, "www.fireworks-safety.com") -|| dnsDomainIs(host, "www.firstcut.com") -|| dnsDomainIs(host, "www.firstnations.com") -|| dnsDomainIs(host, "www.fishbc.com") -|| dnsDomainIs(host, "www.fisher-price.com") -|| dnsDomainIs(host, "www.fisheyeview.com") -|| dnsDomainIs(host, "www.fishgeeks.com") -|| dnsDomainIs(host, "www.fishindex.com") -|| dnsDomainIs(host, "www.fitzgeraldstudio.com") -|| dnsDomainIs(host, "www.flags.net") -|| dnsDomainIs(host, "www.flail.com") -|| dnsDomainIs(host, "www.flamarlins.com") -|| dnsDomainIs(host, "www.flausa.com") -|| dnsDomainIs(host, "www.floodlight-findings.com") -|| dnsDomainIs(host, "www.floridahistory.com") -|| dnsDomainIs(host, "www.floridapanthers.com") -|| dnsDomainIs(host, "www.fng.fi") -|| dnsDomainIs(host, "www.foodsci.uoguelph.ca") -|| dnsDomainIs(host, "www.foremost.com") -|| dnsDomainIs(host, "www.fortress.am") -|| dnsDomainIs(host, "www.fortunecity.com") -|| dnsDomainIs(host, "www.fosterclub.com") -|| dnsDomainIs(host, "www.foundus.com") -|| dnsDomainIs(host, "www.fourmilab.ch") -|| dnsDomainIs(host, "www.fox.com") -|| dnsDomainIs(host, "www.foxfamilychannel.com") -|| dnsDomainIs(host, "www.foxhome.com") -|| dnsDomainIs(host, "www.foxkids.com") -|| dnsDomainIs(host, "www.franceway.com") -|| dnsDomainIs(host, "www.fred.net") -|| dnsDomainIs(host, "www.fredpenner.com") -|| dnsDomainIs(host, "www.freedomknot.com") -|| dnsDomainIs(host, "www.freejigsawpuzzles.com") -|| dnsDomainIs(host, "www.freenet.edmonton.ab.ca") -|| dnsDomainIs(host, "www.frii.com") -|| dnsDomainIs(host, "www.frisbee.com") -|| dnsDomainIs(host, "www.fritolay.com") -|| dnsDomainIs(host, "www.frogsonice.com") -|| dnsDomainIs(host, "www.frontiernet.net") -|| dnsDomainIs(host, "www.fs.fed.us") -|| dnsDomainIs(host, "www.funattic.com") -|| dnsDomainIs(host, ".funbrain.com") -|| dnsDomainIs(host, "www.fundango.com") -|| dnsDomainIs(host, "www.funisland.com") -|| dnsDomainIs(host, "www.funkandwagnalls.com") -|| dnsDomainIs(host, "www.funorama.com") -|| dnsDomainIs(host, "www.funschool.com") -|| dnsDomainIs(host, "www.funster.com") -|| dnsDomainIs(host, "www.furby.com") -|| dnsDomainIs(host, "www.fusion.org.uk") -|| dnsDomainIs(host, "www.futcher.com") -|| dnsDomainIs(host, "www.futurescan.com") -|| dnsDomainIs(host, "www.fyi.net") -|| dnsDomainIs(host, "www.gailgibbons.com") -|| dnsDomainIs(host, "www.galegroup.com") -|| dnsDomainIs(host, "www.gambia.com") -|| dnsDomainIs(host, "www.gamecabinet.com") -|| dnsDomainIs(host, "www.gamecenter.com") -|| dnsDomainIs(host, "www.gamefaqs.com") -|| dnsDomainIs(host, "www.garfield.com") -|| dnsDomainIs(host, "www.garyharbo.com") -|| dnsDomainIs(host, "www.gatefish.com") -|| dnsDomainIs(host, "www.gateway-va.com") -|| dnsDomainIs(host, "www.gazillionaire.com") -|| dnsDomainIs(host, "www.gearhead.com") -|| dnsDomainIs(host, "www.genesplicing.com") -|| dnsDomainIs(host, "www.genhomepage.com") -|| dnsDomainIs(host, "www.geobop.com") -|| dnsDomainIs(host, "www.geocities.com") -|| dnsDomainIs(host, "www.geographia.com") -|| dnsDomainIs(host, "www.georgeworld.com") -|| dnsDomainIs(host, "www.georgian.net") -|| dnsDomainIs(host, "www.german-way.com") -|| dnsDomainIs(host, "www.germanfortravellers.com") -|| dnsDomainIs(host, "www.germantown.k12.il.us") -|| dnsDomainIs(host, "www.germany-tourism.de") -|| dnsDomainIs(host, "www.getmusic.com") -|| dnsDomainIs(host, "www.gettysburg.com") -|| dnsDomainIs(host, "www.ghirardellisq.com") -|| dnsDomainIs(host, "www.ghosttowngallery.com") -|| dnsDomainIs(host, "www.ghosttownsusa.com") -|| dnsDomainIs(host, "www.giants.com") -|| dnsDomainIs(host, "www.gibraltar.gi") -|| dnsDomainIs(host, "www.gigglepoetry.com") -|| dnsDomainIs(host, "www.gilchriststudios.com") -|| dnsDomainIs(host, "www.gillslap.freeserve.co.uk") -|| dnsDomainIs(host, "www.gilmer.net") -|| dnsDomainIs(host, "www.gio.gov.tw") -|| dnsDomainIs(host, "www.girltech.com") -|| dnsDomainIs(host, "www.girlzone.com") -|| dnsDomainIs(host, "www.globalgang.org.uk") -|| dnsDomainIs(host, "www.globalindex.com") -|| dnsDomainIs(host, "www.globalinfo.com") -|| dnsDomainIs(host, "www.gloriafan.com") -|| dnsDomainIs(host, "www.gms.ocps.k12.fl.us") -|| dnsDomainIs(host, "www.go-go-diggity.com") -|| dnsDomainIs(host, "www.goals.com") -|| dnsDomainIs(host, "www.godiva.com") -|| dnsDomainIs(host, "www.golden-retriever.com") -|| dnsDomainIs(host, "www.goldenbooks.com") -|| dnsDomainIs(host, "www.goldeneggs.com.au") -|| dnsDomainIs(host, "www.golfonline.com") -|| dnsDomainIs(host, "www.goobo.com") -|| dnsDomainIs(host, "www.goodearthgraphics.com") -|| dnsDomainIs(host, "www.goodyear.com") -|| dnsDomainIs(host, "www.gopbi.com") -|| dnsDomainIs(host, "www.gorge.net") -|| dnsDomainIs(host, "www.gorp.com") -|| dnsDomainIs(host, "www.got-milk.com") -|| dnsDomainIs(host, "www.gov.ab.ca") -|| dnsDomainIs(host, "www.gov.nb.ca") -|| dnsDomainIs(host, "www.grammarbook.com") -|| dnsDomainIs(host, "www.grammarlady.com") -|| dnsDomainIs(host, "www.grandparents-day.com") -|| dnsDomainIs(host, "www.granthill.com") -|| dnsDomainIs(host, "www.grayweb.com") -|| dnsDomainIs(host, "www.greatbuildings.com") -|| dnsDomainIs(host, "www.greatkids.com") -|| dnsDomainIs(host, "www.greatscience.com") -|| dnsDomainIs(host, "www.greeceny.com") -|| dnsDomainIs(host, "www.greenkeepers.com") -|| dnsDomainIs(host, "www.greylabyrinth.com") -|| dnsDomainIs(host, "www.grimmy.com") -|| dnsDomainIs(host, "www.gsrg.nmh.ac.uk") -|| dnsDomainIs(host, "www.gti.net") -|| dnsDomainIs(host, "www.guinnessworldrecords.com") -|| dnsDomainIs(host, "www.guitar.net") -|| dnsDomainIs(host, "www.guitarplaying.com") -|| dnsDomainIs(host, "www.gumbyworld.com") -|| dnsDomainIs(host, "www.gurlwurld.com") -|| dnsDomainIs(host, "www.gwi.net") -|| dnsDomainIs(host, "www.gymn-forum.com") -|| dnsDomainIs(host, "www.gzkidzone.com") -|| dnsDomainIs(host, "www.haemibalgassi.com") -|| dnsDomainIs(host, "www.hairstylist.com") -|| dnsDomainIs(host, "www.halcyon.com") -|| dnsDomainIs(host, "www.halifax.cbc.ca") -|| dnsDomainIs(host, "www.halloween-online.com") -|| dnsDomainIs(host, "www.halloweenkids.com") -|| dnsDomainIs(host, "www.halloweenmagazine.com") -|| dnsDomainIs(host, "www.hamill.co.uk") -|| dnsDomainIs(host, "www.hamsterdance2.com") -|| dnsDomainIs(host, "www.hamsters.co.uk") -|| dnsDomainIs(host, "www.hamstertours.com") -|| dnsDomainIs(host, "www.handsonmath.com") -|| dnsDomainIs(host, "www.handspeak.com") -|| dnsDomainIs(host, "www.hansonline.com") -|| dnsDomainIs(host, "www.happychild.org.uk") -|| dnsDomainIs(host, "www.happyfamilies.com") -|| dnsDomainIs(host, "www.happytoy.com") -|| dnsDomainIs(host, "www.harley-davidson.com") -|| dnsDomainIs(host, "www.harmonicalessons.com") -|| dnsDomainIs(host, "www.harperchildrens.com") -|| dnsDomainIs(host, "www.harvey.com") -|| dnsDomainIs(host, "www.hasbro-interactive.com") -|| dnsDomainIs(host, "www.haynet.net") -|| dnsDomainIs(host, "www.hbc.com") -|| dnsDomainIs(host, "www.hblewis.com") -|| dnsDomainIs(host, "www.hbook.com") -|| dnsDomainIs(host, "www.he.net") -|| dnsDomainIs(host, "www.headbone.com") -|| dnsDomainIs(host, "www.healthatoz.com") -|| dnsDomainIs(host, "www.healthypet.com") -|| dnsDomainIs(host, "www.heartfoundation.com.au") -|| dnsDomainIs(host, "www.heatersworld.com") -|| dnsDomainIs(host, "www.her-online.com") -|| dnsDomainIs(host, "www.heroesofhistory.com") -|| dnsDomainIs(host, "www.hersheypa.com") -|| dnsDomainIs(host, "www.hersheys.com") -|| dnsDomainIs(host, "www.hevanet.com") -|| dnsDomainIs(host, "www.heynetwork.com") -|| dnsDomainIs(host, "www.hgo.com") -|| dnsDomainIs(host, "www.hhof.com") -|| dnsDomainIs(host, "www.hideandseekpuppies.com") -|| dnsDomainIs(host, "www.hifusion.com") -|| dnsDomainIs(host, "www.highbridgepress.com") -|| dnsDomainIs(host, "www.his.com") -|| dnsDomainIs(host, "www.history.navy.mil") -|| dnsDomainIs(host, "www.historychannel.com") -|| dnsDomainIs(host, "www.historyhouse.com") -|| dnsDomainIs(host, "www.historyplace.com") -|| dnsDomainIs(host, "www.hisurf.com") -|| dnsDomainIs(host, "www.hiyah.com") -|| dnsDomainIs(host, "www.hmnet.com") -|| dnsDomainIs(host, "www.hoboes.com") -|| dnsDomainIs(host, "www.hockeydb.com") -|| dnsDomainIs(host, "www.hohnerusa.com") -|| dnsDomainIs(host, "www.holidaychannel.com") -|| dnsDomainIs(host, "www.holidayfestival.com") -|| dnsDomainIs(host, "www.holidays.net") -|| dnsDomainIs(host, "www.hollywood.com") -|| dnsDomainIs(host, "www.holoworld.com") -|| dnsDomainIs(host, "www.homepagers.com") -|| dnsDomainIs(host, "www.homeschoolzone.com") -|| dnsDomainIs(host, "www.homestead.com") -|| dnsDomainIs(host, "www.homeworkspot.com") -|| dnsDomainIs(host, "www.hompro.com") -|| dnsDomainIs(host, "www.honey.com") -|| dnsDomainIs(host, "www.hooked.net") -|| dnsDomainIs(host, "www.hoophall.com") -|| dnsDomainIs(host, "www.hooverdam.com") -|| dnsDomainIs(host, "www.hopepaul.com") -|| dnsDomainIs(host, "www.horse-country.com") -|| dnsDomainIs(host, "www.horsechat.com") -|| dnsDomainIs(host, "www.horsefun.com") -|| dnsDomainIs(host, "www.horus.ics.org.eg") -|| dnsDomainIs(host, "www.hotbraille.com") -|| dnsDomainIs(host, "www.hotwheels.com") -|| dnsDomainIs(host, "www.howstuffworks.com") -|| dnsDomainIs(host, "www.hpdigitalbookclub.com") -|| dnsDomainIs(host, "www.hpj.com") -|| dnsDomainIs(host, "www.hpl.hp.com") -|| dnsDomainIs(host, "www.hpl.lib.tx.us") -|| dnsDomainIs(host, "www.hpnetwork.f2s.com") -|| dnsDomainIs(host, "www.hsswp.com") -|| dnsDomainIs(host, "www.hsx.com") -|| dnsDomainIs(host, "www.humboldt1.com") -|| dnsDomainIs(host, "www.humongous.com") -|| dnsDomainIs(host, "www.humph3.freeserve.co.uk") -|| dnsDomainIs(host, "www.humphreybear.com ") -|| dnsDomainIs(host, "www.hurricanehunters.com") -|| dnsDomainIs(host, "www.hyperhistory.com") -|| dnsDomainIs(host, "www.i2k.com") -|| dnsDomainIs(host, "www.ibhof.com") -|| dnsDomainIs(host, "www.ibiscom.com") -|| dnsDomainIs(host, "www.ibm.com") -|| dnsDomainIs(host, "www.icangarden.com") -|| dnsDomainIs(host, "www.icecreamusa.com") -|| dnsDomainIs(host, "www.icn.co.uk") -|| dnsDomainIs(host, "www.icomm.ca") -|| dnsDomainIs(host, "www.idfishnhunt.com") -|| dnsDomainIs(host, "www.iditarod.com") -|| dnsDomainIs(host, "www.iei.net") -|| dnsDomainIs(host, "www.iemily.com") -|| dnsDomainIs(host, "www.iir.com") -|| dnsDomainIs(host, "www.ika.com") -|| dnsDomainIs(host, "www.ikoala.com") -|| dnsDomainIs(host, "www.iln.net") -|| dnsDomainIs(host, "www.imagine5.com") -|| dnsDomainIs(host, "www.imes.boj.or.jp") -|| dnsDomainIs(host, "www.inch.com") -|| dnsDomainIs(host, "www.incwell.com") -|| dnsDomainIs(host, "www.indian-river.fl.us") -|| dnsDomainIs(host, "www.indians.com") -|| dnsDomainIs(host, "www.indo.com") -|| dnsDomainIs(host, "www.indyracingleague.com") -|| dnsDomainIs(host, "www.indyzoo.com") -|| dnsDomainIs(host, "www.info-canada.com") -|| dnsDomainIs(host, "www.infomagic.net") -|| dnsDomainIs(host, "www.infoplease.com") -|| dnsDomainIs(host, "www.infoporium.com") -|| dnsDomainIs(host, "www.infostuff.com") -|| dnsDomainIs(host, "www.inhandmuseum.com") -|| dnsDomainIs(host, "www.inil.com") -|| dnsDomainIs(host, "www.inkspot.com") -|| dnsDomainIs(host, "www.inkyfingers.com") -|| dnsDomainIs(host, "www.innerauto.com") -|| dnsDomainIs(host, "www.innerbody.com") -|| dnsDomainIs(host, "www.inqpub.com") -|| dnsDomainIs(host, "www.insecta-inspecta.com") -|| dnsDomainIs(host, "www.insectclopedia.com") -|| dnsDomainIs(host, "www.inside-mexico.com") -|| dnsDomainIs(host, "www.insiders.com") -|| dnsDomainIs(host, "www.insteam.com") -|| dnsDomainIs(host, "www.intel.com") -|| dnsDomainIs(host, "www.intellicast.com") -|| dnsDomainIs(host, "www.interads.co.uk") -|| dnsDomainIs(host, "www.intercot.com") -|| dnsDomainIs(host, "www.intergraffix.com") -|| dnsDomainIs(host, "www.interknowledge.com") -|| dnsDomainIs(host, "www.interlog.com") -|| dnsDomainIs(host, "www.internet4kids.com") -|| dnsDomainIs(host, "www.intersurf.com") -|| dnsDomainIs(host, "www.inthe80s.com") -|| dnsDomainIs(host, "www.inventorsmuseum.com") -|| dnsDomainIs(host, "www.inwap.com") -|| dnsDomainIs(host, "www.ioa.com") -|| dnsDomainIs(host, "www.ionet.net") -|| dnsDomainIs(host, "www.iowacity.com") -|| dnsDomainIs(host, "www.ireland-now.com") -|| dnsDomainIs(host, "www.ireland.com") -|| dnsDomainIs(host, "www.irelandseye.com") -|| dnsDomainIs(host, "www.irlgov.ie") -|| dnsDomainIs(host, "www.isd.net") -|| dnsDomainIs(host, "www.islandnet.com") -|| dnsDomainIs(host, "www.isomedia.com") -|| dnsDomainIs(host, "www.itftennis.com") -|| dnsDomainIs(host, "www.itpi.dpi.state.nc.us") -|| dnsDomainIs(host, "www.itskwanzaatime.com") -|| dnsDomainIs(host, "www.itss.raytheon.com") -|| dnsDomainIs(host, "www.iuma.com") -|| dnsDomainIs(host, "www.iwaynet.net") -|| dnsDomainIs(host, "www.iwc.com") -|| dnsDomainIs(host, "www.iwight.gov.uk") -|| dnsDomainIs(host, "www.ixpres.com") -|| dnsDomainIs(host, "www.j.b.allen.btinternet.co.uk") -|| dnsDomainIs(host, "www.jabuti.com") -|| dnsDomainIs(host, "www.jackinthebox.com") -|| dnsDomainIs(host, "www.jaffebros.com") -|| dnsDomainIs(host, "www.jaguars.com") -|| dnsDomainIs(host, "www.jamaica-gleaner.com") -|| dnsDomainIs(host, "www.jamm.com") -|| dnsDomainIs(host, "www.janbrett.com") -|| dnsDomainIs(host, "www.janetstevens.com") -|| dnsDomainIs(host, "www.japan-guide.com") -|| dnsDomainIs(host, "www.jargon.net") -|| dnsDomainIs(host, "www.javelinamx.com") -|| dnsDomainIs(host, "www.jayjay.com") -|| dnsDomainIs(host, "www.jazclass.aust.com") -|| dnsDomainIs(host, "www.jedinet.com") -|| dnsDomainIs(host, "www.jenniferlopez.com") -|| dnsDomainIs(host, "www.jlpanagopoulos.com") -|| dnsDomainIs(host, "www.jmarshall.com") -|| dnsDomainIs(host, "www.jmccall.demon.co.uk") -|| dnsDomainIs(host, "www.jmts.com") -|| dnsDomainIs(host, "www.joesherlock.com") -|| dnsDomainIs(host, "www.jorvik-viking-centre.co.uk") -|| dnsDomainIs(host, "www.joycecarolthomas.com") -|| dnsDomainIs(host, "www.joycone.com") -|| dnsDomainIs(host, "www.joyrides.com") -|| dnsDomainIs(host, "www.jps.net") -|| dnsDomainIs(host, "www.jspub.com") -|| dnsDomainIs(host, "www.judaica.com") -|| dnsDomainIs(host, "www.judyblume.com") -|| dnsDomainIs(host, "www.julen.net") -|| dnsDomainIs(host, "www.june29.com") -|| dnsDomainIs(host, "www.juneteenth.com") -|| dnsDomainIs(host, "www.justuskidz.com") -|| dnsDomainIs(host, "www.justwomen.com") -|| dnsDomainIs(host, "www.jwindow.net") -|| dnsDomainIs(host, "www.k9web.com") -|| dnsDomainIs(host, "www.kaercher.de") -|| dnsDomainIs(host, "www.kaleidoscapes.com") -|| dnsDomainIs(host, "www.kapili.com") -|| dnsDomainIs(host, "www.kcchiefs.com") -|| dnsDomainIs(host, "www.kcpl.lib.mo.us") -|| dnsDomainIs(host, "www.kcroyals.com") -|| dnsDomainIs(host, "www.kcsd.k12.pa.us") -|| dnsDomainIs(host, "www.kdu.com") -|| dnsDomainIs(host, "www.kelloggs.com") -|| dnsDomainIs(host, "www.kentuckyfriedchicken.com") -|| dnsDomainIs(host, "www.kenyaweb.com") -|| dnsDomainIs(host, "www.keypals.com") -|| dnsDomainIs(host, "www.kfn.com") -|| dnsDomainIs(host, "www.kid-at-art.com") -|| dnsDomainIs(host, "www.kid-channel.com") -|| dnsDomainIs(host, "www.kidallergy.com") -|| dnsDomainIs(host, "www.kidbibs.com") -|| dnsDomainIs(host, "www.kidcomics.com") -|| dnsDomainIs(host, "www.kiddesafety.com") -|| dnsDomainIs(host, "www.kiddiecampus.com") -|| dnsDomainIs(host, "www.kididdles.com") -|| dnsDomainIs(host, "www.kidnews.com") -|| dnsDomainIs(host, "www.kidocracy.com") -|| dnsDomainIs(host, "www.kidport.com") -|| dnsDomainIs(host, "www.kids-channel.co.uk") -|| dnsDomainIs(host, "www.kids-drawings.com") -|| dnsDomainIs(host, "www.kids-in-mind.com") -|| dnsDomainIs(host, "www.kids4peace.com") -|| dnsDomainIs(host, "www.kidsandcomputers.com") -|| dnsDomainIs(host, "www.kidsart.co.uk") -|| dnsDomainIs(host, "www.kidsastronomy.com") -|| dnsDomainIs(host, "www.kidsbank.com") -|| dnsDomainIs(host, "www.kidsbookshelf.com") -|| dnsDomainIs(host, "www.kidsclick.com") -|| dnsDomainIs(host, "www.kidscom.com") -|| dnsDomainIs(host, "www.kidscook.com") -|| dnsDomainIs(host, "www.kidsdoctor.com") -|| dnsDomainIs(host, "www.kidsdomain.com") -|| dnsDomainIs(host, "www.kidsfarm.com") -|| dnsDomainIs(host, "www.kidsfreeware.com") -|| dnsDomainIs(host, "www.kidsfun.tv") -|| dnsDomainIs(host, "www.kidsgolf.com") -|| dnsDomainIs(host, "www.kidsgowild.com") -|| dnsDomainIs(host, "www.kidsjokes.com") -|| dnsDomainIs(host, "www.kidsloveamystery.com") -|| dnsDomainIs(host, "www.kidsmoneycents.com") -|| dnsDomainIs(host, "www.kidsnewsroom.com") -|| dnsDomainIs(host, "www.kidsource.com") -|| dnsDomainIs(host, "www.kidsparties.com") -|| dnsDomainIs(host, "www.kidsplaytown.com") -|| dnsDomainIs(host, "www.kidsreads.com") -|| dnsDomainIs(host, "www.kidsreport.com") -|| dnsDomainIs(host, "www.kidsrunning.com") -|| dnsDomainIs(host, "www.kidstamps.com") -|| dnsDomainIs(host, "www.kidsvideogames.com") -|| dnsDomainIs(host, "www.kidsway.com") -|| dnsDomainIs(host, "www.kidswithcancer.com") -|| dnsDomainIs(host, "www.kidszone.ourfamily.com") -|| dnsDomainIs(host, "www.kidzup.com") -|| dnsDomainIs(host, "www.kinderart.com") -|| dnsDomainIs(host, "www.kineticcity.com") -|| dnsDomainIs(host, "www.kings.k12.ca.us") -|| dnsDomainIs(host, "www.kiplinger.com") -|| dnsDomainIs(host, "www.kiwirecovery.org.nz") -|| dnsDomainIs(host, "www.klipsan.com") -|| dnsDomainIs(host, "www.klutz.com") -|| dnsDomainIs(host, "www.kn.pacbell.com") -|| dnsDomainIs(host, "www.knex.com") -|| dnsDomainIs(host, "www.knowledgeadventure.com") -|| dnsDomainIs(host, "www.knto.or.kr") -|| dnsDomainIs(host, "www.kodak.com") -|| dnsDomainIs(host, "www.konica.co.jp") -|| dnsDomainIs(host, "www.kraftfoods.com") -|| dnsDomainIs(host, "www.kudzukids.com") -|| dnsDomainIs(host, "www.kulichki.com") -|| dnsDomainIs(host, "www.kuttu.com") -|| dnsDomainIs(host, "www.kv5.com") -|| dnsDomainIs(host, "www.kyes-world.com") -|| dnsDomainIs(host, "www.kyohaku.go.jp") -|| dnsDomainIs(host, "www.kyrene.k12.az.us") -|| dnsDomainIs(host, "www.kz") -|| dnsDomainIs(host, "www.la-hq.org.uk") -|| dnsDomainIs(host, "www.labs.net") -|| dnsDomainIs(host, "www.labyrinth.net.au") -|| dnsDomainIs(host, "www.laffinthedark.com") -|| dnsDomainIs(host, "www.lakhota.com") -|| dnsDomainIs(host, "www.lakings.com") -|| dnsDomainIs(host, "www.lam.mus.ca.us") -|| dnsDomainIs(host, "www.lampstras.k12.pa.us") -|| dnsDomainIs(host, "www.lams.losalamos.k12.nm.us") -|| dnsDomainIs(host, "www.landofcadbury.ca") -|| dnsDomainIs(host, "www.larry-boy.com") -|| dnsDomainIs(host, "www.lasersite.com") -|| dnsDomainIs(host, "www.last-word.com") -|| dnsDomainIs(host, "www.latimes.com") -|| dnsDomainIs(host, "www.laughon.com") -|| dnsDomainIs(host, "www.laurasmidiheaven.com") -|| dnsDomainIs(host, "www.lausd.k12.ca.us") -|| dnsDomainIs(host, "www.learn2.com") -|| dnsDomainIs(host, "www.learn2type.com") -|| dnsDomainIs(host, "www.learnfree-hobbies.com") -|| dnsDomainIs(host, "www.learningkingdom.com") -|| dnsDomainIs(host, "www.learningplanet.com") -|| dnsDomainIs(host, "www.leftjustified.com") -|| dnsDomainIs(host, "www.legalpadjr.com") -|| dnsDomainIs(host, "www.legendarysurfers.com") -|| dnsDomainIs(host, "www.legends.dm.net") -|| dnsDomainIs(host, "www.legis.state.wi.us") -|| dnsDomainIs(host, "www.legis.state.wv.us") -|| dnsDomainIs(host, "www.lego.com") -|| dnsDomainIs(host, "www.leje.com") -|| dnsDomainIs(host, "www.leonardodicaprio.com") -|| dnsDomainIs(host, "www.lessonplanspage.com") -|| dnsDomainIs(host, "www.letour.fr") -|| dnsDomainIs(host, "www.levins.com") -|| dnsDomainIs(host, "www.levistrauss.com") -|| dnsDomainIs(host, "www.libertystatepark.com") -|| dnsDomainIs(host, "www.libraryspot.com") -|| dnsDomainIs(host, "www.lifelong.com") -|| dnsDomainIs(host, "www.lighthouse.cc") -|| dnsDomainIs(host, "www.lightlink.com") -|| dnsDomainIs(host, "www.lightspan.com") -|| dnsDomainIs(host, "www.lil-fingers.com") -|| dnsDomainIs(host, "www.linc.or.jp") -|| dnsDomainIs(host, "www.lindsaysbackyard.com") -|| dnsDomainIs(host, "www.lindtchocolate.com") -|| dnsDomainIs(host, "www.lineone.net") -|| dnsDomainIs(host, "www.lionel.com") -|| dnsDomainIs(host, "www.lisafrank.com") -|| dnsDomainIs(host, "www.lissaexplains.com") -|| dnsDomainIs(host, "www.literacycenter.net") -|| dnsDomainIs(host, "www.littleartist.com") -|| dnsDomainIs(host, "www.littlechiles.com") -|| dnsDomainIs(host, "www.littlecritter.com") -|| dnsDomainIs(host, "www.littlecrowtoys.com") -|| dnsDomainIs(host, "www.littlehousebooks.com") -|| dnsDomainIs(host, "www.littlejason.com") -|| dnsDomainIs(host, "www.littleplanettimes.com") -|| dnsDomainIs(host, "www.liveandlearn.com") -|| dnsDomainIs(host, "www.loadstar.prometeus.net") -|| dnsDomainIs(host, "www.localaccess.com") -|| dnsDomainIs(host, "www.lochness.co.uk") -|| dnsDomainIs(host, "www.lochness.scotland.net") -|| dnsDomainIs(host, "www.logos.it") -|| dnsDomainIs(host, "www.lonelyplanet.com") -|| dnsDomainIs(host, "www.looklearnanddo.com") -|| dnsDomainIs(host, "www.loosejocks.com") -|| dnsDomainIs(host, "www.lost-worlds.com") -|| dnsDomainIs(host, "www.love-story.com") -|| dnsDomainIs(host, "www.lpga.com") -|| dnsDomainIs(host, "www.lsjunction.com") -|| dnsDomainIs(host, "www.lucasarts.com") -|| dnsDomainIs(host, "www.lucent.com") -|| dnsDomainIs(host, "www.lucie.com") -|| dnsDomainIs(host, "www.lunaland.co.za") -|| dnsDomainIs(host, "www.luth.se") -|| dnsDomainIs(host, "www.lyricalworks.com") -|| dnsDomainIs(host, "www.infoporium.com") -|| dnsDomainIs(host, "www.infostuff.com") -|| dnsDomainIs(host, "www.inhandmuseum.com") -|| dnsDomainIs(host, "www.inil.com") -|| dnsDomainIs(host, "www.inkspot.com") -|| dnsDomainIs(host, "www.inkyfingers.com") -|| dnsDomainIs(host, "www.innerauto.com") -|| dnsDomainIs(host, "www.innerbody.com") -|| dnsDomainIs(host, "www.inqpub.com") -|| dnsDomainIs(host, "www.insecta-inspecta.com") -|| dnsDomainIs(host, "www.insectclopedia.com") -|| dnsDomainIs(host, "www.inside-mexico.com") -|| dnsDomainIs(host, "www.insiders.com") -|| dnsDomainIs(host, "www.insteam.com") -|| dnsDomainIs(host, "www.intel.com") -|| dnsDomainIs(host, "www.intellicast.com") -|| dnsDomainIs(host, "www.interads.co.uk") -|| dnsDomainIs(host, "www.intercot.com") -|| dnsDomainIs(host, "www.intergraffix.com") -|| dnsDomainIs(host, "www.interknowledge.com") -|| dnsDomainIs(host, "www.interlog.com") -|| dnsDomainIs(host, "www.internet4kids.com") -|| dnsDomainIs(host, "www.intersurf.com") -|| dnsDomainIs(host, "www.inthe80s.com") -|| dnsDomainIs(host, "www.inventorsmuseum.com") -|| dnsDomainIs(host, "www.inwap.com") -|| dnsDomainIs(host, "www.ioa.com") -|| dnsDomainIs(host, "www.ionet.net") -|| dnsDomainIs(host, "www.iowacity.com") -|| dnsDomainIs(host, "www.ireland-now.com") -|| dnsDomainIs(host, "www.ireland.com") -|| dnsDomainIs(host, "www.irelandseye.com") -|| dnsDomainIs(host, "www.irlgov.ie") -|| dnsDomainIs(host, "www.isd.net") -|| dnsDomainIs(host, "www.islandnet.com") -|| dnsDomainIs(host, "www.isomedia.com") -|| dnsDomainIs(host, "www.itftennis.com") -|| dnsDomainIs(host, "www.itpi.dpi.state.nc.us") -|| dnsDomainIs(host, "www.itskwanzaatime.com") -|| dnsDomainIs(host, "www.itss.raytheon.com") -|| dnsDomainIs(host, "www.iuma.com") -|| dnsDomainIs(host, "www.iwaynet.net") -|| dnsDomainIs(host, "www.iwc.com") -|| dnsDomainIs(host, "www.iwight.gov.uk") -|| dnsDomainIs(host, "www.ixpres.com") -|| dnsDomainIs(host, "www.j.b.allen.btinternet.co.uk") -|| dnsDomainIs(host, "www.jabuti.com") -|| dnsDomainIs(host, "www.jackinthebox.com") -|| dnsDomainIs(host, "www.jaffebros.com") -|| dnsDomainIs(host, "www.jaguars.com") -|| dnsDomainIs(host, "www.jamaica-gleaner.com") -|| dnsDomainIs(host, "www.jamm.com") -|| dnsDomainIs(host, "www.janbrett.com") -|| dnsDomainIs(host, "www.janetstevens.com") -|| dnsDomainIs(host, "www.japan-guide.com") -|| dnsDomainIs(host, "www.jargon.net") -|| dnsDomainIs(host, "www.javelinamx.com") -|| dnsDomainIs(host, "www.jayjay.com") -|| dnsDomainIs(host, "www.jazclass.aust.com") - -) -return "PROXY proxy.hclib.org:80"; -else -return "PROXY 172.16.100.20:8080"; -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-89474.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-89474.js deleted file mode 100644 index 4ed9f67..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-89474.js +++ /dev/null @@ -1,62 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS -* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or -* implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. All -* Rights Reserved. -* -* Contributors:darren.deridder@icarusproject.com, -* pschwartau@netscape.com -* Date: 07 July 2001 -* -* SUMMARY: Regression test for Bugzilla bug 89474 -* See http://bugzilla.mozilla.org/show_bug.cgi?id=89474 -* -* This test used to crash the JS shell. This was discovered -* by Darren DeRidder <darren.deridder@icarusproject.com -*/ -//------------------------------------------------------------------------------------------------- -var bug = 89474; -var summary = "Testing the JS shell doesn't crash on it.item()"; -var cnTest = 'it.item()'; - - -//------------------------------------------------------------------------------------------------- -test(); -//------------------------------------------------------------------------------------------------- - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - tryThis(cnTest); // Just testing that we don't crash on this - - exitFunc ('test'); -} - - -function tryThis(sEval) -{ - try - { - eval(sEval); - } - catch(e) - { - // If we get here, we didn't crash. - } -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-90445.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-90445.js deleted file mode 100644 index d628ce9..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-90445.js +++ /dev/null @@ -1,306 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an -* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either expressed -* or implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. -* All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* Date: 2001-07-12 -* -* SUMMARY: Regression test for bug 90445 -* See http://bugzilla.mozilla.org/show_bug.cgi?id=90445 -* -* Just seeing if this script will compile without crashing. -*/ -//------------------------------------------------------------------------------------------------- -var bug = 90445; -var summary = 'Testing this script will compile without crashing'; - -printBugNumber (bug); -printStatus (summary); - - -// The big function - -function compte() { - var mois = getValueFromOption(document.formtest.mois); - var region = document.formtest.region.options.selectedIndex; - var confort = document.formtest.confort.options.selectedIndex; - var encadrement = document.formtest.encadrement.options.selectedIndex; - var typeVillage = document.formtest.type_village.options.selectedIndex; - var budget = document.formtest.budget.value; - var sport1 = document.formtest.sport1.options.selectedIndex; - var sport2 = document.formtest.sport2.options.selectedIndex; - var sport3 = document.formtest.sport3.options.selectedIndex; - var activite1 = document.formtest.activite1.options.selectedIndex; - var activite2 = document.formtest.activite2.options.selectedIndex; - var activite3 = document.formtest.activite3.options.selectedIndex; - - var ret = 0; - var liste; - var taille; - var bl; - var i; - var j; - V=[ - [1,14,19,1,3,3,3,0,[10,13,17,18,22,23,26,27,29,9],[13,17,18,20,4,5,6,7,8]], - [1,14,18,1,1,3,3,0,[1,11,13,22,23,26,27,28,29,3,4,9],[13,17,18,20,6]], - [1,14,19,1,3,4,3,0,[13,17,18,22,23,25,26,27,4,9],[11,17,12,2,20,3,21,9,6]], - [1,14,19,1,1,3,3,0,[1,10,13,22,23,24,25,26,27,28,4,8,9],[13,17,6,9]], - [1,14,18,1,3,4,3,0,[12,13,22,23,27,28,7,9],[13,17,2,20,6,7,9]], - [1,14,19,5,4,2,3,0,[12,13,17,18,2,21,22,23,24,26,27,28,3,5,8,9],[1,10,13,17,18,19,20,5,21,7,8,9]], - [1,14,20,6,2,2,3,0,[11,13,2,22,23,26,27,3,4,5,8,9],[13,17,18,20,6,9]], - [1,14,19,6,3,4,3,0,[10,13,2,22,23,26,27,3,4,5,8,9],[13,17,18,19,20,21,9,6,5]], - [1,14,19,4,2,4,3,0,[13,17,2,22,26,28,3,5,6,7,8,9],[10,13,15,17,19,2,20,3,5,6,9]], - [1,14,19,8,4,4,3,0,[13,2,22,26,3,28,4,5,6,8,9],[14,15,17,18,19,2,20,21,9,7]], - [1,15,18,6,1,4,3,0,[10,11,13,14,15,2,23,26,27,5,8,9,6],[13,17,2,20,6,9]], - [1,14,19,2,3,5,3,0,[10,13,17,2,22,26,27,28,3,5,6,7,8,9],[1,10,13,15,17,18,19,20,6,7,9,22]], - [1,15,18,6,1,3,3,0,[12,13,15,2,22,23,26,4,5,9],[13,15,6,17,2,21,9]], - [1,19,21,1,4,4,3,0,[11,13,18,22,23,27,28,4],[17,2,20,21,9]], - [1,14,19,4,3,3,3,0,[10,13,17,2,22,23,24,26,27,3,4,6,8,9],[10,13,17,19,20,3,5,6,7,9]], - [1,13,19,6,3,3,3,0,[11,13,15,2,22,23,26,27,28,3,4,8,9],[1,13,17,18,20,6,9,22]], - [1,15,19,6,1,5,3,0,[10,13,2,22,23,26,27,4,5,8,11],[10,13,17,20,5,6,9]], - [1,15,18,6,3,2,1,0,[10,17,21,22,23,25,26,9],[13,16,17,20,21,8,9]], - [1,14,19,8,2,2,3,0,[13,16,21,22,23,24,26,27,3,4,5,6,8,9],[15,17,20,3,6,9]], - [1,14,19,5,3,2,3,0,[10,11,13,16,17,2,21,22,23,24,26,27,3,4,8,9],[1,10,13,17,18,19,20,5,6,7,9]], - [1,14,19,4,4,4,3,0,[10,13,2,22,23,26,27,3,4,5,6,7,8,9],[13,14,17,19,20,21,7,9]], - [1,14,19,1,3,2,3,0,[10,13,22,23,26,27,28,3,4,5,6,8,9],[15,17,18,2,20,6,8,9]], - [1,14,19,6,1,5,3,0,[10,11,13,22,25,26,4,5,7,8,9],[10,13,17,2,20,5,6,9]], - [1,14,19,6,4,4,3,0,[10,13,17,18,22,23,26,27,4,9,5],[1,13,14,17,18,20,3,21,7,8,9]], - [1,12,20,6,3,4,2,0,[10,13,14,17,18,22,23,25,26,27,29,9],[13,14,16,17,20,3,8,7,9]], - [1,14,19,1,3,3,3,0,[10,11,13,17,2,22,23,26,27,29,3,4,8,9],[1,10,13,14,15,17,18,20,5,21,7,8,9,25]], - [1,14,20,1,2,5,3,0,[12,13,17,22,23,26,28,3,4,8,9,27],[10,13,17,18,20,5,6,9,22]], - [1,14,19,1,2,3,3,0,[13,17,22,23,26,27,28,29,3,4,8,19],[13,17,18,20,6,7,8,9]], - [1,14,18,6,1,3,3,0,[12,13,15,2,22,23,26,27,28,4,9],[13,17,6,9]], - [1,14,19,5,3,4,3,0,[13,2,26,27,28,3,4,5,6],[1,10,13,15,17,18,2,20,3,21,7]], - [1,14,18,6,3,3,3,0,[13,2,22,23,26,27,8,3,4,5,9],[1,13,17,18,19,2,20,6,8,9,22]], - [1,14,19,6,4,3,2,0,[10,13,17,18,22,23,25,26,27,29],[13,14,16,17,3,7,8]], - [1,14,18,6,3,3,3,0,[13,22,23,26,27,28,3,4,5,7,8,9],[13,17,18,2,20,3,5,6,9]], - [1,14,20,1,3,2,3,0,[10,13,15,17,19,2,22,23,24,26,27,3,4,8,9],[13,17,18,20,6,7,8,9]], - [1,14,20,6,3,1,3,0,[10,13,16,2,22,23,26,27,3,4,6,8,9],[13,17,20,5,6,9]], - [1,14,19,3,3,3,3,0,[10,12,13,18,21,22,23,24,26,27,29,3,4,8,9],[1,10,17,20,6,8,9]], - [1,14,19,2,3,1,3,0,[12,13,17,2,22,23,24,26,27,28,4,8,9,19],[1,13,17,18,19,20,6,9]], - [1,14,19,5,4,2,3,0,[10,11,13,17,2,21,3,22,23,24,25,26,27,5,6,8,9],[13,17,20,3,21,9]], - [1,14,19,6,2,3,3,0,[13,22,23,26,27,28,3,4,5,7,8,9],[13,17,18,20,5,6,9]], - [1,14,20,6,3,2,3,0,[10,12,13,19,2,22,23,24,25,1,26,27,28,3,4,8,9],[10,13,17,18,20,3,5,6,7,8,9]], - [1,14,19,5,3,4,3,0,[12,13,2,26,27,28,3,4,5,6,8,9],[10,13,17,18,2,20,3,21,7]], - [1,14,19,6,3,4,3,0,[13,16,22,23,26,27,28,3,5,7,8,9],[10,13,17,18,19,2,20,5,6,7,8,9]], - [1,14,19,6,3,2,3,0,[10,13,22,23,24,25,26,27,3,4,7,8,9],[1,13,17,20,5,21,9,23]], - [1,14,18,6,2,2,3,0,[11,13,2,22,23,26,27,3,4,8,9],[1,13,14,15,17,18,19,2,20,6,7,8,5]], - [1,14,19,6,2,3,3,0,[13,17,2,22,23,26,27,4,5,7,9],[13,14,16,17,9,22]], - [1,14,19,8,3,2,3,0,[13,18,22,23,24,27,28,3,4,5,8,9],[15,16,17,18,19,2,20,6,9]], - [1,14,19,1,3,4,2,0,[13,17,18,22,23,26,27,29,9,11,8],[13,17,20,3,21,7,8,9,6]], - [1,15,18,6,4,4,1,0,[13,17,22,25,27,29],[14,16,3,7,8]], - [1,14,18,6,3,1,3,0,[12,13,16,17,18,19,2,22,23,26,27,3,4,9],[13,17,20,3,6,9]], - [1,14,19,6,2,3,2,0,[13,2,22,23,26,27,9],[13,16,17,9]], - [1,14,19,8,3,4,3,0,[13,22,26,5,6,7,8,9],[13,15,17,18,19,2,20,6,9]], - [1,14,20,1,2,2,3,0,[11,13,22,23,26,27,28,29,3,4,9],[13,17,18,20,6,9]], - [1,14,19,6,3,2,2,0,[10,13,17,18,22,23,24,25,26,27,9],[1,13,14,16,17,20,3,6,7,8,9]], - [1,14,18,6,3,5,3,0,[11,13,18,22,23,26,27,4,5,2],[1,10,13,17,2,20,5,6,9,22]], - [1,14,19,1,3,4,2,0,[17,22,23,26,27,13],[13,16,17,18,2,20,11,6,7,8,9]], - [1,15,18,6,1,2,3,0,[13,15,2,22,23,26,3,4,5,6,9],[1,13,17,20,6,9,5]], - [1,14,20,6,3,2,3,0,[10,11,24,13,2,22,23,26,27,3,4,5,7,8,9],[1,10,13,17,18,19,2,20,5,6,7,8,9,23]], - [1,14,19,4,4,4,3,0,[10,13,17,18,2,22,26,27,28,3,4,5,6,8,9,23],[14,15,17,19,2,20,3,21,7,9,10]], - [1,14,19,5,4,3,3,0,[10,13,17,21,22,23,26,27,5,8,9],[10,13,17,18,19,2,20,21,7,9]], - [1,14,19,7,4,4,3,0,[13,17,2,22,23,26,27,18,28,3,4,5,7,9],[10,13,17,18,19,2,20,3,21,9]], - [1,12,20,6,2,2,2,0,[10,11,13,17,18,22,23,25,26,27,29,8,9],[1,13,16,17,3,6,8,9,24]], - [1,14,18,6,3,3,1,0,[13,16,17,22,25,26,27,9],[13,16,17,20,21,8]], - [1,14,19,6,2,5,3,0,[13,17,2,22,23,26,27,4,5,9],[10,13,17,2,20,5,6,9]], - [1,14,19,6,2,3,3,0,[1,13,17,22,23,26,27,28,4,6,9],[13,17,18,20,6,9]], - [1,14,19,4,3,2,3,0,[12,13,17,19,2,22,23,24,26,27,28,3,4,5,8,9],[13,15,17,19,20,21,9,5]], - [1,14,19,5,4,2,3,0,[10,17,2,21,22,23,24,26,27,28,3,4,6,8,9],[1,10,13,14,17,19,20,3,21,7,8,9]], - [1,14,19,3,4,3,3,0,[10,12,13,2,21,22,23,26,27,4,7,8,9],[1,13,17,20,6,8,9]], - [1,14,19,5,3,2,1,0,[13,17,19,21,22,23,24,25,26,27,8,9],[1,14,17,3,6,8,13]], - [1,14,19,2,3,1,3,0,[10,11,13,17,18,19,22,24,26,27,4,7,8,9],[13,17,19,20,3,6,9]], - [1,14,19,6,2,3,3,0,[13,2,22,23,26,27,4,5,9],[1,13,17,18,20,6,9,24]], - [1,14,18,6,2,2,3,0,[11,13,22,23,24,25,26,27,3,4,5,6,8,9],[1,13,17,20,3,5,6,9]], - [1,14,18,1,2,2,3,0,[1,11,13,15,17,2,22,23,26,27,4,9],[1,13,17,18,20,6,9]], - [1,14,19,2,3,4,3,0,[10,13,22,26,27,28,29,3,4,5,6,7,8,9,36],[1,13,15,17,18,19,20,5,6,7,8,9]], - [1,14,19,6,2,1,2,0,[13,17,21,22,26,27,3,8,9],[13,17,20,6]], - [1,15,18,6,4,3,1,0,[10,13,16,17,20,22,25,27],[16,17,3,6,7,8,9]], - [1,14,19,4,3,5,3,0,[10,11,13,17,22,24,26,27,28,3,4,5,6,7,8,9],[10,13,15,17,2,20,3,6,7,9]], - [1,14,20,6,3,1,2,0,[10,11,17,18,19,22,23,25,26,27,29,8,9],[1,10,13,14,16,17,3,4,6,7,8,9]], - [1,15,18,6,3,3,1,0,[13,16,22,26,27,9,23],[13,16,17,20,21,6]], - [1,15,18,1,3,4,3,0,[10,13,17,2,22,23,25,26,27,28,29,4,9,12],[13,17,18,20,6,9,5]], - [1,21,25,6,2,1,4,0,[30,31,34,35],[6,3]], - [1,21,25,6,3,4,4,0,[30,31,34,35],[6,3]], - [1,20,25,1,3,3,3,0,[9,10,13,17,18,22,23,26,27,29],[20,18,17,13,8,7,6,5,4]], - [1,21,25,6,2,5,4,0,[30,31,34,35],[6,3]], - [1,21,25,6,3,3,4,0,[30,31,96,79,34,35],[6,7]], - [1,21,25,1,3,4,3,0,[4,9,13,17,18,22,23,25,26,27],[21,20,17,12,11,9,3,2]], - [1,21,25,6,2,3,4,0,[30,34],[6,3]], - [1,22,25,1,3,4,3,0,[7,9,12,13,22,23,27,28],[20,17,13,9,7,6,2]], - [1,21,25,6,3,3,4,0,[30,31,34,35],[6]], - [1,20,25,5,4,2,3,0,[2,3,5,8,9,12,13,17,18,21,22,23,24,26,27,28],[21,20,19,18,17,13,10,9,8,7,5,1]], - [1,20,25,8,4,4,3,0,[2,3,4,5,6,9,13,22,26,28],[21,20,19,18,17,15,9]], - [1,24,25,6,2,2,3,0,[2,3,4,5,6,8,9,11,13,22,23,26,27,29],[20,18,17,13,9,8,7,6]], - [1,20,25,4,2,4,3,0,[2,3,5,6,7,8,9,12,13,17,22,26,28],[20,19,17,15,13,10,9,6,5,3,2]], - [1,20,25,2,3,5,3,0,[2,3,5,6,7,8,9,10,13,17,22,26,27,28],[20,19,18,17,13,10,9,7,6,1]], - [1,20,25,4,3,3,3,0,[2,3,4,6,8,9,13,17,22,23,24,26,27],[20,19,17,13,10,9,7,6,5,3]], - [1,20,25,1,3,2,3,0,[3,4,5,6,8,9,10,13,22,23,26,27,28],[20,18,17,15,9,8,6,2]], - [1,21,25,2,3,3,4,0,[30,31,34,35],[6,3,7]], - [1,21,25,6,3,2,4,0,[30,34],[6,3]], - [1,20,25,5,3,2,3,0,[8,9,10,11,13,16,17,21,22,23,24,26,27],[20,19,18,17,13,10,9,7,6,5,1]], - [1,20,25,2,2,5,4,0,[30,31,34],[6,3,7]], - [1,20,25,4,4,4,3,0,[2,3,4,5,6,8,9,10,13,22,23,26,27],[21,20,19,17,14,13,9,7]], - [1,24,25,6,3,3,3,0,[2,3,4,8,9,11,13,15,22,23,26,27,28],[20,18,17,13,9,6,1]], - [1,22,25,1,4,4,3,0,[4,11,13,18,22,23,27,28],[21,20,17,9]], - [1,21,25,6,2,1,4,0,[30,34,35],[6,3]], - [1,20,25,6,4,4,3,0,[9,10,13,17,18,22,23,26,27],[21,20,18,17,14,13,9,8,7,3,1]], - [1,24,25,6,3,4,2,0,[9,10,13,17,18,22,23,25,26,27,29],[20,17,16,14,13,9,8,7,3]], - [1,20,25,1,3,3,3,0,[2,3,4,8,9,10,11,13,17,22,23,26,27,29],[21,20,18,17,15,14,13,10,9,8,7,5,1]], - [1,20,25,1,2,3,3,0,[3,4,8,11,13,17,22,23,26,27,28,29],[20,18,17,13,9,8,7,6]], - [1,20,25,5,3,4,3,0,[2,3,4,5,6,13,26,27,28],[21,20,18,17,15,13,10,3,2,1]], - [1,20,25,6,4,3,2,0,[10,13,17,18,22,23,25,26,27,29],[17,16,14,13,8,7,3]], - [1,21,25,6,2,1,4,0,[30,34,35],[6,3]], - [1,21,25,1,3,2,3,0,[2,3,4,8,9,10,13,15,17,19,22,23,24,26,27],[20,18,17,13,8,9,7,6]], - [1,20,25,2,3,3,3,0,[11,13,2,21,22,23,24,26,27,28,29,3,4,5,8,9],[1,13,17,18,19,2,20,3,6,7,9]], - [1,24,25,6,3,1,3,0,[2,3,4,6,8,9,10,13,16,22,23,26,27],[20,17,13,9,6,5]], - [1,20,25,3,3,3,3,0,[3,4,8,9,10,12,13,18,21,22,23,24,26,27,29],[20,17,10,9,8,6,1]], - [1,20,25,2,3,1,3,0,[2,4,8,9,12,13,17,22,23,24,26,27,28],[20,19,18,17,13,9,6,1]], - [1,20,25,5,4,2,3,0,[2,3,5,6,8,9,10,11,13,17,21,22,23,24,25,26,27],[21,20,17,13,9,3]], - [1,24,25,6,3,2,3,0,[2,3,4,8,9,10,13,19,22,23,24,25,26,27,28],[20,18,17,13,10,9,8,7,6,5,3]], - [1,21,25,6,2,1,4,0,[30,31,33,34],[6]], - [1,20,25,8,3,2,3,0,[3,4,5,8,9,13,17,18,22,23,24,27,28],[20,19,18,17,15,9,6]], - [1,21,25,6,4,4,4,0,[30,31,27,10,34],[6,3,7]], - [1,21,25,6,4,4,4,0,[30,31,34],[6,3,7]], - [1,20,25,1,3,4,2,0,[9,13,17,18,22,23,26,27,29],[20,17,13,9,8,7,6,3]], - [1,20,25,7,4,4,3,0,[2,3,4,5,7,9,13,17,18,22,23,26,27,28],[21,20,19,18,17,13,10,9,3,2]], - [1,21,25,6,4,4,4,0,[30,31,34],[6,7]], - [1,21,25,6,3,3,4,0,[30,31,35],[6,3]], - [1,20,25,8,3,4,3,0,[5,6,7,8,9,13,22,26,28],[20,19,18,17,15,13,9,6,2]], - [1,21,25,1,2,2,3,0,[3,4,9,11,13,22,23,26,27,28,29],[20,18,17,13,9,6]], - [1,20,25,6,3,2,2,0,[9,10,13,17,18,22,23,25,26,27],[20,17,16,14,13,9,8,7,6,3,1]], - [1,24,25,6,3,2,3,0,[2,3,4,5,7,8,9,10,11,13,22,23,24,26,27],[20,19,18,17,13,10,9,8,7,6,5,2,1]], - [1,20,25,2,3,5,3,0,[29,24,13,4,5,22,23,16,2,28,9,10],[7,13,5,1,15,3,9,6,17]], - [1,20,25,4,3,2,3,0,[2,3,4,5,6,8,9,12,13,17,19,22,23,24,26,27,28],[20,19,17,13,9]], - [1,20,25,5,4,3,3,0,[3,4,5,8,9,10,13,17,21,22,23,26,27],[21,20,19,18,17,13,10,9,7,2]], - [1,20,25,4,4,4,3,0,[2,3,4,5,6,8,9,10,13,17,18,22,23,26,27,28],[21,20,19,17,15,14,9,7,3,2]], - [1,21,25,6,3,3,4,0,[30,31,10,34],[6,3,7]], - [1,20,25,6,2,3,3,0,[1,4,6,9,13,17,22,23,26,27,28],[20,18,17,13,9,6]], - [1,21,25,6,2,2,2,0,[8,9,10,11,13,17,18,22,23,25,26,27,29],[17,16,13,9,8,6,3,1]], - [1,21,25,6,3,4,4,0,[30,32,33,27,34],[6,7]], - [1,20,25,3,4,3,3,0,[2,4,7,8,9,10,12,13,21,22,23,26,27],[20,17,13,9,8,6,1]], - [1,20,25,6,2,3,3,0,[],[20,18,17,13,9,6,1]], - [1,20,25,2,3,1,3,0,[4,7,8,9,10,11,13,17,18,19,22,24,26,27],[20,19,17,13,9,6,3]], - [1,20,25,5,3,2,4,0,[30,31,96],[6,3,7]], - [1,20,25,2,3,4,3,0,[3,4,5,6,7,8,9,10,13,22,26,27,28,29],[20,19,18,17,13,9,8,7,6,5,1]], - [1,21,25,6,3,3,4,0,[30,31,27,10,34],[6,7]], - [1,21,25,4,3,2,3,0,[3,4,5,6,8,9,10,11,13,18,19,22,23,26,27],[20,17,13,9]], - [1,21,25,6,4,3,4,0,[30,31,27,10,35],[6,7]], - [1,21,25,6,2,2,4,0,[30,34],[6,3]], - [1,24,25,6,2,1,2,0,[3,8,9,13,17,21,22,26,27],[20,17,13,6]], - [1,20,25,4,3,5,3,0,[3,4,5,6,7,8,9,10,11,13,17,22,24,26,27,28],[20,17,15,13,10,9,7,6,3,2]], - [1,20,26,6,4,3,4,0,[30,31,27,10,34,35],[6,3,7]], - [1,21,25,6,2,3,4,0,[30,33,34],[6]], - [1,21,25,6,3,1,2,0,[8,9,10,11,17,18,19,22,23,25,26,27,29],[17,16,14,13,10,9,8,7,6,4,3,1]], - [1,21,25,6,4,4,4,0,[30,31,10,34,35],[6,7]], - [1,21,25,6,3,2,4,0,[30,31,33,34],[6,3]], - [1,21,26,6,3,5,4,0,[30,31],[6,3]], - [1,21,25,6,2,1,4,0,[30,34,35],[6,3]], - [1,21,25,6,3,3,4,0,[30,34],[6]], - [1,20,25,8,2,2,3,0,[3,4,5,6,8,9,13,16,21,22,23,24,26,27],[20,17,15,9,6,3]], - [1,20,25,5,3,4,3,0,[2,3,4,5,6,8,9,12,13,26,27,28],[21,20,18,17,13,10,3,2]], - [1,20,25,5,4,2,3,0,[3,4,6,8,9,10,17,21,22,23,24,26,27,28],[21,20,19,17,14,13,10,9,8,7,3,1]], - [1,13,19,6,2,3,3,0,[2,3,13,22,19,8,9,12,27],[9,6,17,20]], - [1,15,18,2,3,3,1,0,[25,24,13,16,19,8,9,10,17,22,29,23],[16,8,3,21,17,19]], - [1,14,19,2,3,3,3,0,[13,2,21,22,23,24,26,27,28,29,3,4,5,8,9,17],[1,13,17,18,19,2,20,3,6,7,9]], - [1,15,18,6,4,4,1,0,[29,16,17,22,27,10],[16,8,3,14,7]], - [1,14,20,6,3,4,3,0,[3,4,2,5,13,22,23,27,8,9],[20,7,8,2,9,21,17]], - [1,14,19,2,3,5,3,0,[29,24,13,4,5,22,23,16,2,28,9,10],[7,13,5,1,15,3,9,6,17]], - [1,15,18,6,3,2,1,0,[25,13,22,23,17,29,16,9],[16,21,17,20]], - [1,24,25,6,2,3,3,0,[],[]], - [1,21,25,1,2,5,3,0,[],[]], - [1,21,25,6,3,4,3,0,[],[]] - ]; - - var nbVillages = V.length; - - for (i=0; i<nbVillages; i++) { - if ((((mois == 0) && (1==V[i][0])) || ((mois >= V[i][1]) && (mois <= V[i][2]))) && - ((region == 0) || (region == V[i][3] )) && - ((confort == 0) || (confort == V[i][4] )) && - ((encadrement == 0) || - ((encadrement==3)&&((V[i][5]==1)||(V[i][5]==2)||(V[i][5] == 3))) || - ((encadrement==2)&&((V[i][5]==1)||(V[i][5]==2) )) || - ((encadrement==1)&&(encadrement==V[i][5]) ) || - ((encadrement>3)&&(encadrement==V[i][5]) )) && - ((typeVillage == 0) || (typeVillage == V[i][6] )) && - ((budget == 0) || (budget == V[i][7] ))) { - - bl = 1; - if ((sport1 != 0) || (sport2 != 0) || (sport3 != 0)) { - bl = 0; - liste = V[i][8]; - taille = liste.length; - for (j=0; j<taille; j++) { - if ((sport1 == 0) || ((sport1 != 0) && (sport1 == liste[j]))) { - bl = 1; - break; - } - } - if (bl == 1) { - bl = 0; - for (j=0; j<taille; j++) { - if ((sport2 == 0) || ((sport2 != 0) && (sport2 == liste[j]))) { - bl = 1; - break; - } - } - } - if (bl == 1) { - bl = 0; - for (j=0; j<taille; j++) { - if ((sport3 == 0) || ((sport3 != 0) && (sport3 == liste[j]))) { - bl = 1; - break; - } - } - } - } - if ((bl==1) && ((activite1 != 0) || (activite2 != 0) || (activite3 != 0))) { - bl = 0; - liste = V[i][9]; - taille = liste.length; - for (j=0; j<taille; j++) { - if ((activite1 == 0) || ((activite1 != 0) && (activite1 == liste[j]))) { - bl = 1; - break; - } - } - if (bl == 1) { - bl = 0; - for (j=0; j<taille; j++) { - if ((activite2 == 0) || ((activite2 != 0) && (activite2 == liste[j]))) { - bl = 1; - break; - } - } - } - if (bl == 1) { - bl = 0; - for (j=0; j<taille; j++) { - if ((activite3 == 0) || ((activite3 != 0) && (activite3 == liste[j]))) { - bl = 1; - break; - } - } - } - } - if (1 == bl) { - ret++; - } - } - } -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-96128-n.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-96128-n.js deleted file mode 100644 index 76987c2..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-96128-n.js +++ /dev/null @@ -1,64 +0,0 @@ -/* -* The contents of this file are subject to the Netscape Public -* License Version 1.1 (the "License"); you may not use this file -* except in compliance with the License. You may obtain a copy of -* the License at http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS -* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or -* implied. See the License for the specific language governing -* rights and limitations under the License. -* -* The Original Code is mozilla.org code. -* -* The Initial Developer of the Original Code is Netscape -* Communications Corporation. Portions created by Netscape are -* Copyright (C) 1998 Netscape Communications Corporation. -* All Rights Reserved. -* -* Contributor(s): jband@netscape.com, pschwartau@netscape.com -* Date: 29 Aug 2001 -* -* SUMMARY: Negative test that JS infinite recursion protection works. -* We expect the code here to fail (i.e. exit code 3), but NOT crash. -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=96128 -*/ -//----------------------------------------------------------------------------- -var bug = 96128; -var summary = 'Testing that JS infinite recursion protection works'; - - -function objRecurse() -{ - /* - * jband: - * - * Causes a stack overflow crash in debug builds of both the browser - * and the shell. In the release builds this is safely caught by the - * "too much recursion" mechanism. If I remove the 'new' from the code below - * this is safely caught in both debug and release builds. The 'new' causes a - * lookup for the Constructor name and seems to (at least) double the number - * of items on the C stack for the given interpLevel depth. - */ - return new objRecurse(); -} - - - -//----------------------------------------------------------------------------- -test(); -//----------------------------------------------------------------------------- - - -function test() -{ - enterFunc ('test'); - printBugNumber (bug); - printStatus (summary); - - // we expect this to fail (exit code 3), but NOT crash. - - var obj = new objRecurse(); - - exitFunc ('test'); -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-96526-001.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-96526-001.js deleted file mode 100644 index 8e8549b..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-96526-001.js +++ /dev/null @@ -1,530 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 04 Sep 2002 -* SUMMARY: Just seeing that we don't crash when compiling this script - -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=96526 -* -*/ -//----------------------------------------------------------------------------- -printBugNumber(96526); -printStatus("Just seeing that we don't crash when compiling this script -"); - - -/* - * Function definition with lots of branches, from http://www.newyankee.com - */ -function setaction(jumpto) -{ - if (jumpto == 0) window.location = "http://www.newyankee.com/GetYankees2.cgi?1.jpg"; - else if (jumpto == [0]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ImageName"; - else if (jumpto == [1]) window.location = "http://www.newyankee.com/GetYankees2.cgi?1.jpg"; - else if (jumpto == [2]) window.location = "http://www.newyankee.com/GetYankees2.cgi?arsrferguson.jpg"; - else if (jumpto == [3]) window.location = "http://www.newyankee.com/GetYankees2.cgi?akjamesmartin.jpg"; - else if (jumpto == [4]) window.location = "http://www.newyankee.com/GetYankees2.cgi?aldaverackett.jpg"; - else if (jumpto == [5]) window.location = "http://www.newyankee.com/GetYankees2.cgi?alericbrasher.jpg"; - else if (jumpto == [6]) window.location = "http://www.newyankee.com/GetYankees2.cgi?algeorgewatkins.jpg"; - else if (jumpto == [7]) window.location = "http://www.newyankee.com/GetYankees2.cgi?altoddcruise.jpg"; - else if (jumpto == [8]) window.location = "http://www.newyankee.com/GetYankees2.cgi?arkevinc.jpg"; - else if (jumpto == [9]) window.location = "http://www.newyankee.com/GetYankees2.cgi?arpaulmoore.jpg"; - else if (jumpto == [10]) window.location = "http://www.newyankee.com/GetYankees2.cgi?auphillaird.jpg"; - else if (jumpto == [11]) window.location = "http://www.newyankee.com/GetYankees2.cgi?azbillhensley.jpg"; - else if (jumpto == [12]) window.location = "http://www.newyankee.com/GetYankees2.cgi?azcharleshollandjr.jpg"; - else if (jumpto == [13]) window.location = "http://www.newyankee.com/GetYankees2.cgi?azdaveholland.jpg"; - else if (jumpto == [14]) window.location = "http://www.newyankee.com/GetYankees2.cgi?azdavidholland.jpg"; - else if (jumpto == [15]) window.location = "http://www.newyankee.com/GetYankees2.cgi?azdonaldvogt.jpg"; - else if (jumpto == [16]) window.location = "http://www.newyankee.com/GetYankees2.cgi?azernestortega.jpg"; - else if (jumpto == [17]) window.location = "http://www.newyankee.com/GetYankees2.cgi?azjeromekeller.jpg"; - else if (jumpto == [18]) window.location = "http://www.newyankee.com/GetYankees2.cgi?azjimpegfulton.jpg"; - else if (jumpto == [19]) window.location = "http://www.newyankee.com/GetYankees2.cgi?azjohnbelcher.jpg"; - else if (jumpto == [20]) window.location = "http://www.newyankee.com/GetYankees2.cgi?azmikejordan.jpg"; - else if (jumpto == [21]) window.location = "http://www.newyankee.com/GetYankees2.cgi?azrickemry.jpg"; - else if (jumpto == [22]) window.location = "http://www.newyankee.com/GetYankees2.cgi?azstephensavage.jpg"; - else if (jumpto == [23]) window.location = "http://www.newyankee.com/GetYankees2.cgi?azsteveferguson.jpg"; - else if (jumpto == [24]) window.location = "http://www.newyankee.com/GetYankees2.cgi?aztjhorrall.jpg"; - else if (jumpto == [25]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cabillmeiners.jpg"; - else if (jumpto == [26]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cabobhadley.jpg"; - else if (jumpto == [27]) window.location = "http://www.newyankee.com/GetYankees2.cgi?caboblennox.jpg"; - else if (jumpto == [28]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cabryanshurtz.jpg"; - else if (jumpto == [29]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cabyroncleveland.jpg"; - else if (jumpto == [30]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cacesarjimenez.jpg"; - else if (jumpto == [31]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cadalekirstine.jpg"; - else if (jumpto == [32]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cadavidlgoeffrion.jpg"; - else if (jumpto == [33]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cadennisnocerini.jpg"; - else if (jumpto == [34]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cadianemason.jpg"; - else if (jumpto == [35]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cadominicpieranunzio.jpg"; - else if (jumpto == [36]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cadonaldmotter.jpg"; - else if (jumpto == [37]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cadoncroner.jpg"; - else if (jumpto == [38]) window.location = "http://www.newyankee.com/GetYankees2.cgi?caelizabethwright.jpg"; - else if (jumpto == [39]) window.location = "http://www.newyankee.com/GetYankees2.cgi?caericlew.jpg"; - else if (jumpto == [40]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cafrancissmith.jpg"; - else if (jumpto == [41]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cafranklombano.jpg"; - else if (jumpto == [42]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cajaredweaver.jpg"; - else if (jumpto == [43]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cajerrythompson.jpg"; - else if (jumpto == [44]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cajimjanssen"; - else if (jumpto == [45]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cajohncopolillo.jpg"; - else if (jumpto == [46]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cajohnmessick.jpg"; - else if (jumpto == [47]) window.location = "http://www.newyankee.com/GetYankees2.cgi?calaynedicker.jpg"; - else if (jumpto == [48]) window.location = "http://www.newyankee.com/GetYankees2.cgi?caleeannrucker.jpg"; - else if (jumpto == [49]) window.location = "http://www.newyankee.com/GetYankees2.cgi?camathewsscharch.jpg"; - else if (jumpto == [50]) window.location = "http://www.newyankee.com/GetYankees2.cgi?camikedunn.jpg"; - else if (jumpto == [51]) window.location = "http://www.newyankee.com/GetYankees2.cgi?camikeshay.jpg"; - else if (jumpto == [52]) window.location = "http://www.newyankee.com/GetYankees2.cgi?camikeshepherd.jpg"; - else if (jumpto == [53]) window.location = "http://www.newyankee.com/GetYankees2.cgi?caphillipfreer.jpg"; - else if (jumpto == [54]) window.location = "http://www.newyankee.com/GetYankees2.cgi?carandy.jpg"; - else if (jumpto == [55]) window.location = "http://www.newyankee.com/GetYankees2.cgi?carichardwilliams.jpg"; - else if (jumpto == [56]) window.location = "http://www.newyankee.com/GetYankees2.cgi?carickgruen.jpg"; - else if (jumpto == [57]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cascottbartsch.jpg"; - else if (jumpto == [58]) window.location = "http://www.newyankee.com/GetYankees2.cgi?castevestrapac.jpg"; - else if (jumpto == [59]) window.location = "http://www.newyankee.com/GetYankees2.cgi?catimwest.jpg"; - else if (jumpto == [60]) window.location = "http://www.newyankee.com/GetYankees2.cgi?catomrietveld.jpg"; - else if (jumpto == [61]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnalainpaquette.jpg"; - else if (jumpto == [62]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnalanhill.jpg"; - else if (jumpto == [63]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnalguerette.jpg"; - else if (jumpto == [64]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnbrianhogg.jpg"; - else if (jumpto == [65]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnbrucebeard.jpg"; - else if (jumpto == [66]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cncraigdavey.jpg"; - else if (jumpto == [67]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cndanielpattison.jpg"; - else if (jumpto == [68]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cndenisstjean.jpg"; - else if (jumpto == [69]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnglenngray.jpg"; - else if (jumpto == [70]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnjeansebastienduguay.jpg"; - else if (jumpto == [71]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnjohnbritz.jpg"; - else if (jumpto == [72]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnkevinmclean.jpg"; - else if (jumpto == [73]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnmarcandrecartier.jpg"; - else if (jumpto == [74]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnmarcleblanc.jpg"; - else if (jumpto == [75]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnmatthewgiles.jpg"; - else if (jumpto == [76]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnmichelrauzon.jpg"; - else if (jumpto == [77]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnpierrelalonde.jpg"; - else if (jumpto == [78]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnraytyson.jpg"; - else if (jumpto == [79]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnrichardboucher.jpg"; - else if (jumpto == [80]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnrodbuike.jpg"; - else if (jumpto == [81]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnscottpitkeathly.jpg"; - else if (jumpto == [82]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnshawndavis.jpg"; - else if (jumpto == [83]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnstephanepelletier.jpg"; - else if (jumpto == [84]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cntodddesroches.jpg"; - else if (jumpto == [85]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cntonyharnum.jpg"; - else if (jumpto == [86]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cnwayneconabree.jpg"; - else if (jumpto == [87]) window.location = "http://www.newyankee.com/GetYankees2.cgi?codavidjbarber.jpg"; - else if (jumpto == [88]) window.location = "http://www.newyankee.com/GetYankees2.cgi?codonrandquist.jpg"; - else if (jumpto == [89]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cojeffpalese.jpg"; - else if (jumpto == [90]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cojohnlowell.jpg"; - else if (jumpto == [91]) window.location = "http://www.newyankee.com/GetYankees2.cgi?cotroytorgerson.jpg"; - else if (jumpto == [92]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ctgerrygranatowski.jpg"; - else if (jumpto == [93]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ctjasonklein.jpg"; - else if (jumpto == [94]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ctkevinkiss.jpg"; - else if (jumpto == [95]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ctmikekennedy.jpg"; - else if (jumpto == [96]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flalancanfield.jpg"; - else if (jumpto == [97]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flalbertgonzalez.jpg"; - else if (jumpto == [98]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flbruceloy.jpg"; - else if (jumpto == [99]) window.location = "http://www.newyankee.com/GetYankees2.cgi?fldandevault.jpg"; - else if (jumpto == [100]) window.location = "http://www.newyankee.com/GetYankees2.cgi?fldonstclair.jpg"; - else if (jumpto == [101]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flernestbonnell.jpg"; - else if (jumpto == [102]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flgeorgebarg.jpg"; - else if (jumpto == [103]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flgregslavinski.jpg"; - else if (jumpto == [104]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flgregwaters.jpg"; - else if (jumpto == [105]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flharoldmiller.jpg"; - else if (jumpto == [106]) window.location = "http://www.newyankee.com/GetYankees2.cgi?fljackwelch.jpg"; - else if (jumpto == [107]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flmichaelostrowski.jpg"; - else if (jumpto == [108]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flpauldoman.jpg"; - else if (jumpto == [109]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flpaulsessions.jpg"; - else if (jumpto == [110]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flrandymys.jpg"; - else if (jumpto == [111]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flraysarnowski.jpg"; - else if (jumpto == [112]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flrobertcahill.jpg"; - else if (jumpto == [113]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flstevemorrison.jpg"; - else if (jumpto == [114]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flstevezellner.jpg"; - else if (jumpto == [115]) window.location = "http://www.newyankee.com/GetYankees2.cgi?flterryjennings.jpg"; - else if (jumpto == [116]) window.location = "http://www.newyankee.com/GetYankees2.cgi?fltimmcwilliams.jpg"; - else if (jumpto == [117]) window.location = "http://www.newyankee.com/GetYankees2.cgi?fltomstellhorn.jpg"; - else if (jumpto == [118]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gabobkoch.jpg"; - else if (jumpto == [119]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gabrucekinney.jpg"; - else if (jumpto == [120]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gadickbesemer.jpg"; - else if (jumpto == [121]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gajackclunen.jpg"; - else if (jumpto == [122]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gajayhart.jpg"; - else if (jumpto == [123]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gajjgeller.jpg"; - else if (jumpto == [124]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gakeithlacey.jpg"; - else if (jumpto == [125]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gamargieminutello.jpg"; - else if (jumpto == [126]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gamarvinearnest.jpg"; - else if (jumpto == [127]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gamikeschwarz.jpg"; - else if (jumpto == [128]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gamikeyee.jpg"; - else if (jumpto == [129]) window.location = "http://www.newyankee.com/GetYankees2.cgi?garickdubree.jpg"; - else if (jumpto == [130]) window.location = "http://www.newyankee.com/GetYankees2.cgi?garobimartin.jpg"; - else if (jumpto == [131]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gastevewaddell.jpg"; - else if (jumpto == [132]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gathorwiggins.jpg"; - else if (jumpto == [133]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gawadewylie.jpg"; - else if (jumpto == [134]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gawaynerobinson.jpg"; - else if (jumpto == [135]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gepaulwestbury.jpg"; - else if (jumpto == [136]) window.location = "http://www.newyankee.com/GetYankees2.cgi?grstewartcwolfe.jpg"; - else if (jumpto == [137]) window.location = "http://www.newyankee.com/GetYankees2.cgi?gugregmesa.jpg"; - else if (jumpto == [138]) window.location = "http://www.newyankee.com/GetYankees2.cgi?hibriantokunaga.jpg"; - else if (jumpto == [139]) window.location = "http://www.newyankee.com/GetYankees2.cgi?himatthewgrady.jpg"; - else if (jumpto == [140]) window.location = "http://www.newyankee.com/GetYankees2.cgi?iabobparnell.jpg"; - else if (jumpto == [141]) window.location = "http://www.newyankee.com/GetYankees2.cgi?iadougleonard.jpg"; - else if (jumpto == [142]) window.location = "http://www.newyankee.com/GetYankees2.cgi?iajayharmon.jpg"; - else if (jumpto == [143]) window.location = "http://www.newyankee.com/GetYankees2.cgi?iajohnbevier.jpg"; - else if (jumpto == [144]) window.location = "http://www.newyankee.com/GetYankees2.cgi?iamartywitt.jpg"; - else if (jumpto == [145]) window.location = "http://www.newyankee.com/GetYankees2.cgi?idjasonbartschi.jpg"; - else if (jumpto == [146]) window.location = "http://www.newyankee.com/GetYankees2.cgi?idkellyklaas.jpg"; - else if (jumpto == [147]) window.location = "http://www.newyankee.com/GetYankees2.cgi?idmikegagnon.jpg"; - else if (jumpto == [148]) window.location = "http://www.newyankee.com/GetYankees2.cgi?idrennieheuer.jpg"; - else if (jumpto == [149]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilbenshakman.jpg"; - else if (jumpto == [150]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilcraigstocks.jpg"; - else if (jumpto == [151]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ildaverubini.jpg"; - else if (jumpto == [152]) window.location = "http://www.newyankee.com/GetYankees2.cgi?iledpepin.jpg"; - else if (jumpto == [153]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilfredkirpec.jpg"; - else if (jumpto == [154]) window.location = "http://www.newyankee.com/GetYankees2.cgi?iljoecreed.jpg"; - else if (jumpto == [155]) window.location = "http://www.newyankee.com/GetYankees2.cgi?iljohnknuth.jpg"; - else if (jumpto == [156]) window.location = "http://www.newyankee.com/GetYankees2.cgi?iljoshhill.jpg"; - else if (jumpto == [157]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilkeithrichard.jpg"; - else if (jumpto == [158]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilkrystleweber.jpg"; - else if (jumpto == [159]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilmattmusich.jpg"; - else if (jumpto == [160]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilmichaellane.jpg"; - else if (jumpto == [161]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilrodneyschwandt.jpg"; - else if (jumpto == [162]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilrogeraukerman.jpg"; - else if (jumpto == [163]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilscottbreeden.jpg"; - else if (jumpto == [164]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilscottgerami.jpg"; - else if (jumpto == [165]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilsteveritt.jpg"; - else if (jumpto == [166]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilthomasfollin.jpg"; - else if (jumpto == [167]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ilwaynesmith.jpg"; - else if (jumpto == [168]) window.location = "http://www.newyankee.com/GetYankees2.cgi?inallenwimberly.jpg"; - else if (jumpto == [169]) window.location = "http://www.newyankee.com/GetYankees2.cgi?inbutchmyers.jpg"; - else if (jumpto == [170]) window.location = "http://www.newyankee.com/GetYankees2.cgi?inderrickbentley.jpg"; - else if (jumpto == [171]) window.location = "http://www.newyankee.com/GetYankees2.cgi?inedmeissler.jpg"; - else if (jumpto == [172]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ingarymartin.jpg"; - else if (jumpto == [173]) window.location = "http://www.newyankee.com/GetYankees2.cgi?injasondavis.jpg"; - else if (jumpto == [174]) window.location = "http://www.newyankee.com/GetYankees2.cgi?injeffjones.jpg"; - else if (jumpto == [175]) window.location = "http://www.newyankee.com/GetYankees2.cgi?injeffwilliams.jpg"; - else if (jumpto == [176]) window.location = "http://www.newyankee.com/GetYankees2.cgi?injpreslyharrington.jpg"; - else if (jumpto == [177]) window.location = "http://www.newyankee.com/GetYankees2.cgi?inrichardlouden.jpg"; - else if (jumpto == [178]) window.location = "http://www.newyankee.com/GetYankees2.cgi?inronmorrell.jpg"; - else if (jumpto == [179]) window.location = "http://www.newyankee.com/GetYankees2.cgi?insearsweaver.jpg"; - else if (jumpto == [180]) window.location = "http://www.newyankee.com/GetYankees2.cgi?irpaullaverty.jpg"; - else if (jumpto == [181]) window.location = "http://www.newyankee.com/GetYankees2.cgi?irseamusmcbride.jpg"; - else if (jumpto == [182]) window.location = "http://www.newyankee.com/GetYankees2.cgi?isazrielmorag.jpg"; - else if (jumpto == [183]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ksalankreifels.jpg"; - else if (jumpto == [184]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ksbrianbudden.jpg"; - else if (jumpto == [185]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ksgarypahls.jpg"; - else if (jumpto == [186]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ksmikefarnet.jpg"; - else if (jumpto == [187]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ksmikethomas.jpg"; - else if (jumpto == [188]) window.location = "http://www.newyankee.com/GetYankees2.cgi?kstomzillig.jpg"; - else if (jumpto == [189]) window.location = "http://www.newyankee.com/GetYankees2.cgi?kybillyandrews.jpg"; - else if (jumpto == [190]) window.location = "http://www.newyankee.com/GetYankees2.cgi?kydaveryno.jpg"; - else if (jumpto == [191]) window.location = "http://www.newyankee.com/GetYankees2.cgi?kygreglaramore.jpg"; - else if (jumpto == [192]) window.location = "http://www.newyankee.com/GetYankees2.cgi?kywilliamanderson.jpg"; - else if (jumpto == [193]) window.location = "http://www.newyankee.com/GetYankees2.cgi?kyzachschuyler.jpg"; - else if (jumpto == [194]) window.location = "http://www.newyankee.com/GetYankees2.cgi?laadriankliebert.jpg"; - else if (jumpto == [195]) window.location = "http://www.newyankee.com/GetYankees2.cgi?labarryhumphus.jpg"; - else if (jumpto == [196]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ladennisanders.jpg"; - else if (jumpto == [197]) window.location = "http://www.newyankee.com/GetYankees2.cgi?larichardeckert.jpg"; - else if (jumpto == [198]) window.location = "http://www.newyankee.com/GetYankees2.cgi?laronjames.jpg"; - else if (jumpto == [199]) window.location = "http://www.newyankee.com/GetYankees2.cgi?lasheldonstutes.jpg"; - else if (jumpto == [200]) window.location = "http://www.newyankee.com/GetYankees2.cgi?lastephenstarbuck.jpg"; - else if (jumpto == [201]) window.location = "http://www.newyankee.com/GetYankees2.cgi?latroyestonich.jpg"; - else if (jumpto == [202]) window.location = "http://www.newyankee.com/GetYankees2.cgi?lavaughntrosclair.jpg"; - else if (jumpto == [203]) window.location = "http://www.newyankee.com/GetYankees2.cgi?maalexbrown.jpg"; - else if (jumpto == [204]) window.location = "http://www.newyankee.com/GetYankees2.cgi?maalwencl.jpg"; - else if (jumpto == [205]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mabrentmills.jpg"; - else if (jumpto == [206]) window.location = "http://www.newyankee.com/GetYankees2.cgi?madangodziff.jpg"; - else if (jumpto == [207]) window.location = "http://www.newyankee.com/GetYankees2.cgi?madanielwilusz.jpg"; - else if (jumpto == [208]) window.location = "http://www.newyankee.com/GetYankees2.cgi?madavidreis.jpg"; - else if (jumpto == [209]) window.location = "http://www.newyankee.com/GetYankees2.cgi?madougrecko.jpg"; - else if (jumpto == [210]) window.location = "http://www.newyankee.com/GetYankees2.cgi?majasonhaley.jpg"; - else if (jumpto == [211]) window.location = "http://www.newyankee.com/GetYankees2.cgi?maklausjensen.jpg"; - else if (jumpto == [212]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mamikemarland.jpg"; - else if (jumpto == [213]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mapetersilvestre.jpg"; - else if (jumpto == [214]) window.location = "http://www.newyankee.com/GetYankees2.cgi?maraysweeney.jpg"; - else if (jumpto == [215]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mdallenbarnett.jpg"; - else if (jumpto == [216]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mdcharleswasson.jpg"; - else if (jumpto == [217]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mdedbaranowski.jpg"; - else if (jumpto == [218]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mdfranktate.jpg"; - else if (jumpto == [219]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mdfredschock.jpg"; - else if (jumpto == [220]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mdianstjohn.jpg"; - else if (jumpto == [221]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mdjordanevans.jpg"; - else if (jumpto == [222]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mdpaulwjones.jpg"; - else if (jumpto == [223]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mestevesandelier.jpg"; - else if (jumpto == [224]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mewilbertrbrown.jpg"; - else if (jumpto == [225]) window.location = "http://www.newyankee.com/GetYankees2.cgi?midavidkeller.jpg"; - else if (jumpto == [226]) window.location = "http://www.newyankee.com/GetYankees2.cgi?migaryvandenberg.jpg"; - else if (jumpto == [227]) window.location = "http://www.newyankee.com/GetYankees2.cgi?migeorgeberlinger.jpg"; - else if (jumpto == [228]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mijamesstapleton.jpg"; - else if (jumpto == [229]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mijerryhaney.jpg"; - else if (jumpto == [230]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mijohnrybarczyk.jpg"; - else if (jumpto == [231]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mikeithvalliere.jpg"; - else if (jumpto == [232]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mikevinpodsiadlik.jpg"; - else if (jumpto == [233]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mimarkandrews.jpg"; - else if (jumpto == [234]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mimikedecaussin.jpg"; - else if (jumpto == [235]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mimikesegorski.jpg"; - else if (jumpto == [236]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mirobertwolgast.jpg"; - else if (jumpto == [237]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mitimothybruner.jpg"; - else if (jumpto == [238]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mitomweaver.jpg"; - else if (jumpto == [239]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mnbobgontarek.jpg"; - else if (jumpto == [240]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mnbradbuffington.jpg"; - else if (jumpto == [241]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mndavewilson.jpg"; - else if (jumpto == [242]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mngenerajanen.jpg"; - else if (jumpto == [243]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mnjohnkempkes.jpg"; - else if (jumpto == [244]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mnkevinhurbanis.jpg"; - else if (jumpto == [245]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mnmarklansink.jpg"; - else if (jumpto == [246]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mnpaulmayer.jpg"; - else if (jumpto == [247]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mnpauloman.jpg"; - else if (jumpto == [248]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mnwoodylobnitz.jpg"; - else if (jumpto == [249]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mocurtkempf.jpg"; - else if (jumpto == [250]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mojerryhenry.jpg"; - else if (jumpto == [251]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mojimfinney.jpg"; - else if (jumpto == [252]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mojimrecamper.jpg"; - else if (jumpto == [253]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mojohntimmons.jpg"; - else if (jumpto == [254]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mojohnvaughan.jpg"; - else if (jumpto == [255]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mokenroberts.jpg"; - else if (jumpto == [256]) window.location = "http://www.newyankee.com/GetYankees2.cgi?momacvoss.jpg"; - else if (jumpto == [257]) window.location = "http://www.newyankee.com/GetYankees2.cgi?momarktemmer.jpg"; - else if (jumpto == [258]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mopaulzerjav.jpg"; - else if (jumpto == [259]) window.location = "http://www.newyankee.com/GetYankees2.cgi?morobtigner.jpg"; - else if (jumpto == [260]) window.location = "http://www.newyankee.com/GetYankees2.cgi?motomantrim.jpg"; - else if (jumpto == [261]) window.location = "http://www.newyankee.com/GetYankees2.cgi?mscharleshahn.jpg"; - else if (jumpto == [262]) window.location = "http://www.newyankee.com/GetYankees2.cgi?msjohnjohnson.jpg"; - else if (jumpto == [263]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ncandrelopez.jpg"; - else if (jumpto == [264]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ncedorisak.jpg"; - else if (jumpto == [265]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ncjimisbell.jpg"; - else if (jumpto == [266]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ncjohnnydark.jpg"; - else if (jumpto == [267]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nckevinebert.jpg"; - else if (jumpto == [268]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nckevinulmer.jpg"; - else if (jumpto == [269]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ncpeteparis.jpg"; - else if (jumpto == [270]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ncstevelindsley.jpg"; - else if (jumpto == [271]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nctimsmith.jpg"; - else if (jumpto == [272]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nctonylawrence.jpg"; - else if (jumpto == [273]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ncwyneaston.jpg"; - else if (jumpto == [274]) window.location = "http://www.newyankee.com/GetYankees2.cgi?neberniedevlin.jpg"; - else if (jumpto == [275]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nebrentesmoil.jpg"; - else if (jumpto == [276]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nescottmccullough.jpg"; - else if (jumpto == [277]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nhalantarring.jpg"; - else if (jumpto == [278]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nhbjmolinari.jpg"; - else if (jumpto == [279]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nhbrianmolinari.jpg"; - else if (jumpto == [280]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nhdanhorning.jpg"; - else if (jumpto == [281]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nhdonblackden.jpg"; - else if (jumpto == [282]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nhjimcalandriello.jpg"; - else if (jumpto == [283]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nhjohngunterman.jpg"; - else if (jumpto == [284]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nhjohnmagyar.jpg"; - else if (jumpto == [285]) window.location = "http://www.newyankee.com/GetYankees2.cgi?njbudclarity.jpg"; - else if (jumpto == [286]) window.location = "http://www.newyankee.com/GetYankees2.cgi?njcraigjones.jpg"; - else if (jumpto == [287]) window.location = "http://www.newyankee.com/GetYankees2.cgi?njericrowland.jpg"; - else if (jumpto == [288]) window.location = "http://www.newyankee.com/GetYankees2.cgi?njjimsnyder.jpg"; - else if (jumpto == [289]) window.location = "http://www.newyankee.com/GetYankees2.cgi?njlarrylevinson.jpg"; - else if (jumpto == [290]) window.location = "http://www.newyankee.com/GetYankees2.cgi?njlouisdispensiere.jpg"; - else if (jumpto == [291]) window.location = "http://www.newyankee.com/GetYankees2.cgi?njmarksoloff.jpg"; - else if (jumpto == [292]) window.location = "http://www.newyankee.com/GetYankees2.cgi?njmichaelhalko.jpg"; - else if (jumpto == [293]) window.location = "http://www.newyankee.com/GetYankees2.cgi?njmichaelmalkasian.jpg"; - else if (jumpto == [294]) window.location = "http://www.newyankee.com/GetYankees2.cgi?njnigelmartin.jpg"; - else if (jumpto == [295]) window.location = "http://www.newyankee.com/GetYankees2.cgi?njrjmolinari.jpg"; - else if (jumpto == [296]) window.location = "http://www.newyankee.com/GetYankees2.cgi?njtommurasky.jpg"; - else if (jumpto == [297]) window.location = "http://www.newyankee.com/GetYankees2.cgi?njtomputnam.jpg"; - else if (jumpto == [298]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nmdalepage.jpg"; - else if (jumpto == [299]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nmmikethompson.jpg"; - else if (jumpto == [300]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nvclydekemp.jpg"; - else if (jumpto == [301]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nvharveyklene.jpg"; - else if (jumpto == [302]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nvlonsimons.jpg"; - else if (jumpto == [303]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nyabeweisfelner.jpg"; - else if (jumpto == [304]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nyanthonygiudice.jpg"; - else if (jumpto == [305]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nyaustinpierce.jpg"; - else if (jumpto == [306]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nybrianmonks.jpg"; - else if (jumpto == [307]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nycharlieporter.jpg"; - else if (jumpto == [308]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nycorneliuswoglum.jpg"; - else if (jumpto == [309]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nydennishartwell.jpg"; - else if (jumpto == [310]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nydennissgheerdt.jpg"; - else if (jumpto == [311]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nygeorgepettitt.jpg"; - else if (jumpto == [312]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nyjohndrewes.jpg"; - else if (jumpto == [313]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nyjohnminichiello.jpg"; - else if (jumpto == [314]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nykevinwoolever.jpg"; - else if (jumpto == [315]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nymartyrubinstein.jpg"; - else if (jumpto == [316]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nyraysicina.jpg"; - else if (jumpto == [317]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nyrobbartley.jpg"; - else if (jumpto == [318]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nyrobertkosty.jpg"; - else if (jumpto == [319]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nystephenbagnato.jpg"; - else if (jumpto == [320]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nystevegiamundo.jpg"; - else if (jumpto == [321]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nystevekelly.jpg"; - else if (jumpto == [322]) window.location = "http://www.newyankee.com/GetYankees2.cgi?nywayneadelkoph.jpg"; - else if (jumpto == [323]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohbriannimmo.jpg"; - else if (jumpto == [324]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohdavehyman.jpg"; - else if (jumpto == [325]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohdavidconant.jpg"; - else if (jumpto == [326]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohdennismantovani.jpg"; - else if (jumpto == [327]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohgrahambennett.jpg"; - else if (jumpto == [328]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohgregbrunk.jpg"; - else if (jumpto == [329]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohgregfilbrun.jpg"; - else if (jumpto == [330]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohjimreutener.jpg"; - else if (jumpto == [331]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohjimrike.jpg"; - else if (jumpto == [332]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohkeithsparks.jpg"; - else if (jumpto == [333]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohkevindrinan.jpg"; - else if (jumpto == [334]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohmichaelhaines.jpg"; - else if (jumpto == [335]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohmichaelsteele.jpg"; - else if (jumpto == [336]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohpatrickguanciale.jpg"; - else if (jumpto == [337]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohscottkelly.jpg"; - else if (jumpto == [338]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohscottthomas.jpg"; - else if (jumpto == [339]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohstevetuckerman.jpg"; - else if (jumpto == [340]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohtedfigurski.jpg"; - else if (jumpto == [341]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohterrydonald.jpg"; - else if (jumpto == [342]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohtimokeefe.jpg"; - else if (jumpto == [343]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ohtomhaydock.jpg"; - else if (jumpto == [344]) window.location = "http://www.newyankee.com/GetYankees2.cgi?okbillsneller.jpg"; - else if (jumpto == [345]) window.location = "http://www.newyankee.com/GetYankees2.cgi?okbobbulick.jpg"; - else if (jumpto == [346]) window.location = "http://www.newyankee.com/GetYankees2.cgi?okdaryljones.jpg"; - else if (jumpto == [347]) window.location = "http://www.newyankee.com/GetYankees2.cgi?okstevetarchek.jpg"; - else if (jumpto == [348]) window.location = "http://www.newyankee.com/GetYankees2.cgi?okwoodymcelroy.jpg"; - else if (jumpto == [349]) window.location = "http://www.newyankee.com/GetYankees2.cgi?orcoryeells.jpg"; - else if (jumpto == [350]) window.location = "http://www.newyankee.com/GetYankees2.cgi?oredcavasso.jpg"; - else if (jumpto == [351]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ormarkmcculley.jpg"; - else if (jumpto == [352]) window.location = "http://www.newyankee.com/GetYankees2.cgi?orstevekarthauser.jpg"; - else if (jumpto == [353]) window.location = "http://www.newyankee.com/GetYankees2.cgi?paalanpalmieri.jpg"; - else if (jumpto == [354]) window.location = "http://www.newyankee.com/GetYankees2.cgi?pachriscarr.jpg"; - else if (jumpto == [355]) window.location = "http://www.newyankee.com/GetYankees2.cgi?padansigg.jpg"; - else if (jumpto == [356]) window.location = "http://www.newyankee.com/GetYankees2.cgi?padavecalabretta.jpg"; - else if (jumpto == [357]) window.location = "http://www.newyankee.com/GetYankees2.cgi?padennishoffman.jpg"; - else if (jumpto == [358]) window.location = "http://www.newyankee.com/GetYankees2.cgi?pafrankschlipf.jpg"; - else if (jumpto == [359]) window.location = "http://www.newyankee.com/GetYankees2.cgi?pajamesevanson.jpg"; - else if (jumpto == [360]) window.location = "http://www.newyankee.com/GetYankees2.cgi?pajoekrol.jpg"; - else if (jumpto == [361]) window.location = "http://www.newyankee.com/GetYankees2.cgi?pakatecrimmins.jpg"; - else if (jumpto == [362]) window.location = "http://www.newyankee.com/GetYankees2.cgi?pamarshallkrebs.jpg"; - else if (jumpto == [363]) window.location = "http://www.newyankee.com/GetYankees2.cgi?pascottsheaffer.jpg"; - else if (jumpto == [364]) window.location = "http://www.newyankee.com/GetYankees2.cgi?paterrycrippen.jpg"; - else if (jumpto == [365]) window.location = "http://www.newyankee.com/GetYankees2.cgi?patjpera.jpg"; - else if (jumpto == [366]) window.location = "http://www.newyankee.com/GetYankees2.cgi?patoddpatterson.jpg"; - else if (jumpto == [367]) window.location = "http://www.newyankee.com/GetYankees2.cgi?patomrehm.jpg"; - else if (jumpto == [368]) window.location = "http://www.newyankee.com/GetYankees2.cgi?pavicschreck.jpg"; - else if (jumpto == [369]) window.location = "http://www.newyankee.com/GetYankees2.cgi?pawilliamhowen.jpg"; - else if (jumpto == [370]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ricarlruggieri.jpg"; - else if (jumpto == [371]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ripetermccrea.jpg"; - else if (jumpto == [372]) window.location = "http://www.newyankee.com/GetYankees2.cgi?scbillmovius.jpg"; - else if (jumpto == [373]) window.location = "http://www.newyankee.com/GetYankees2.cgi?scbryanrackley.jpg"; - else if (jumpto == [374]) window.location = "http://www.newyankee.com/GetYankees2.cgi?scchrisgoodman.jpg"; - else if (jumpto == [375]) window.location = "http://www.newyankee.com/GetYankees2.cgi?scdarrellmunn.jpg"; - else if (jumpto == [376]) window.location = "http://www.newyankee.com/GetYankees2.cgi?scdonsandusky.jpg"; - else if (jumpto == [377]) window.location = "http://www.newyankee.com/GetYankees2.cgi?scscotalexander.jpg"; - else if (jumpto == [378]) window.location = "http://www.newyankee.com/GetYankees2.cgi?sctimbajuscik.jpg"; - else if (jumpto == [379]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ststuartcoltart.jpg"; - else if (jumpto == [380]) window.location = "http://www.newyankee.com/GetYankees2.cgi?tnbilobautista.jpg"; - else if (jumpto == [381]) window.location = "http://www.newyankee.com/GetYankees2.cgi?tnbrucebowman.jpg"; - else if (jumpto == [382]) window.location = "http://www.newyankee.com/GetYankees2.cgi?tndavidchipman.jpg"; - else if (jumpto == [383]) window.location = "http://www.newyankee.com/GetYankees2.cgi?tndavidcizunas.jpg"; - else if (jumpto == [384]) window.location = "http://www.newyankee.com/GetYankees2.cgi?tndavidreed.jpg"; - else if (jumpto == [385]) window.location = "http://www.newyankee.com/GetYankees2.cgi?tnhankdunkin.jpg"; - else if (jumpto == [386]) window.location = "http://www.newyankee.com/GetYankees2.cgi?tnkenwetherington.jpg"; - else if (jumpto == [387]) window.location = "http://www.newyankee.com/GetYankees2.cgi?tnrickgodboldt.jpg"; - else if (jumpto == [388]) window.location = "http://www.newyankee.com/GetYankees2.cgi?tnroyowen.jpg"; - else if (jumpto == [389]) window.location = "http://www.newyankee.com/GetYankees2.cgi?tnsteve.jpg"; - else if (jumpto == [390]) window.location = "http://www.newyankee.com/GetYankees2.cgi?tntommymercks.jpg"; - else if (jumpto == [391]) window.location = "http://www.newyankee.com/GetYankees2.cgi?tnwarrenmonroe.jpg"; - else if (jumpto == [392]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txbillvanpelt.jpg"; - else if (jumpto == [393]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txcarolynmoncivais.jpg"; - else if (jumpto == [394]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txchucksteding.jpg"; - else if (jumpto == [395]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txclintlafont.jpg"; - else if (jumpto == [396]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txcurthackett.jpg"; - else if (jumpto == [397]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txdavidmcneill.jpg"; - else if (jumpto == [398]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txdonowen.jpg"; - else if (jumpto == [399]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txfrankcox.jpg"; - else if (jumpto == [400]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txglenbang.jpg"; - else if (jumpto == [401]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txhowardlaunius.jpg"; - else if (jumpto == [402]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txjamienorwood.jpg"; - else if (jumpto == [403]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txjimmarkle.jpg"; - else if (jumpto == [404]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txjimmcnamara.jpg"; - else if (jumpto == [405]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txjoelgulker.jpg"; - else if (jumpto == [406]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txjoeveillon.jpg"; - else if (jumpto == [407]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txjohnburns.jpg"; - else if (jumpto == [408]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txkeithmartin.jpg"; - else if (jumpto == [409]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txkennymiller.jpg"; - else if (jumpto == [410]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txkirkconstable.jpg"; - else if (jumpto == [411]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txkylekelley.jpg"; - else if (jumpto == [412]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txlesjones.jpg"; - else if (jumpto == [413]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txlynnlacey.jpg"; - else if (jumpto == [414]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txmarksimmons.jpg"; - else if (jumpto == [415]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txmauriceharris.jpg"; - else if (jumpto == [416]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txmichaelbrown.jpg"; - else if (jumpto == [417]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txrichardthomas.jpg"; - else if (jumpto == [418]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txrickent.jpg"; - else if (jumpto == [419]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txtomlovelace.jpg"; - else if (jumpto == [420]) window.location = "http://www.newyankee.com/GetYankees2.cgi?txvareckwalla.jpg"; - else if (jumpto == [421]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukbrianstainton.jpg"; - else if (jumpto == [422]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukdavegrimwood.jpg"; - else if (jumpto == [423]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukdavidevans.jpg"; - else if (jumpto == [424]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukgeoffbogg.jpg"; - else if (jumpto == [425]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukgordondale.jpg"; - else if (jumpto == [426]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukharborne.jpg"; - else if (jumpto == [427]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukjamesobrian.jpg"; - else if (jumpto == [428]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukjeffjones.jpg"; - else if (jumpto == [429]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukjohnworthington.jpg"; - else if (jumpto == [430]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukkeithrobinson.jpg"; - else if (jumpto == [431]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukkoojanzen.jpg"; - else if (jumpto == [432]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukleewebster.jpg"; - else if (jumpto == [433]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukpaultebbutt.jpg"; - else if (jumpto == [434]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukriaanstrydom.jpg"; - else if (jumpto == [435]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukrickdare.jpg"; - else if (jumpto == [436]) window.location = "http://www.newyankee.com/GetYankees2.cgi?ukterrychadwick.jpg"; - else if (jumpto == [437]) window.location = "http://www.newyankee.com/GetYankees2.cgi?utbobcanestrini.jpg"; - else if (jumpto == [438]) window.location = "http://www.newyankee.com/GetYankees2.cgi?utdonthornock.jpg"; - else if (jumpto == [439]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vaartgreen.jpg"; - else if (jumpto == [440]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vabobheller.jpg"; - else if (jumpto == [441]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vaclintadkins.jpg"; - else if (jumpto == [442]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vadanieltepe.jpg"; - else if (jumpto == [443]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vadanmeier.jpg"; - else if (jumpto == [444]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vadavidminnix.jpg"; - else if (jumpto == [445]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vadavidyoho.jpg"; - else if (jumpto == [446]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vadickthornsberry.jpg"; - else if (jumpto == [447]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vamarksimonds.jpg"; - else if (jumpto == [448]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vamichaelkoch.jpg"; - else if (jumpto == [449]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vamikeperozziello.jpg"; - else if (jumpto == [450]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vamikepingrey.jpg"; - else if (jumpto == [451]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vapatrickkearney.jpg"; - else if (jumpto == [452]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vapaulstreet.jpg"; - else if (jumpto == [453]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vatonydemasi.jpg"; - else if (jumpto == [454]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vatroylong.jpg"; - else if (jumpto == [455]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vatroylong2.jpg"; - else if (jumpto == [456]) window.location = "http://www.newyankee.com/GetYankees2.cgi?vaweslyon.jpg"; - else if (jumpto == [457]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wabryanthomas.jpg"; - else if (jumpto == [458]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wageorgebryan.jpg"; - else if (jumpto == [459]) window.location = "http://www.newyankee.com/GetYankees2.cgi?waglennpiersall.jpg"; - else if (jumpto == [460]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wajoewanjohi.jpg"; - else if (jumpto == [461]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wajohndrapala.jpg"; - else if (jumpto == [462]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wajohnfernstrom.jpg"; - else if (jumpto == [463]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wajohnmickelson.jpg"; - else if (jumpto == [464]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wakeithjohnson.jpg"; - else if (jumpto == [465]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wamarkdenman.jpg"; - else if (jumpto == [466]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wamiketaylor.jpg"; - else if (jumpto == [467]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wascottboyd.jpg"; - else if (jumpto == [468]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wibryanschappel.jpg"; - else if (jumpto == [469]) window.location = "http://www.newyankee.com/GetYankees2.cgi?widenniszuber.jpg"; - else if (jumpto == [470]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wigeorgebregar.jpg"; - else if (jumpto == [471]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wikevinwarren.jpg"; - else if (jumpto == [472]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wirichorde.jpg"; - else if (jumpto == [473]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wistevenricks.jpg"; - else if (jumpto == [474]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wiweswolfrom.jpg"; - else if (jumpto == [475]) window.location = "http://www.newyankee.com/GetYankees2.cgi?wvdannorby.jpg"; -} diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-96526-002.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-96526-002.js deleted file mode 100644 index 902e062..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-96526-002.js +++ /dev/null @@ -1,56 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com, Georgi Guninski -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 04 Sep 2002 -* SUMMARY: Just seeing that we don't crash when compiling this script - -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=96526 -* -*/ -//----------------------------------------------------------------------------- -printBugNumber(96526); -printStatus("Just seeing that we don't crash when compiling this script -"); - - -/* - * Tail recursion test by Georgi Guninski - */ -a="[\"b\"]"; -s="g"; -for(i=0;i<20000;i++) - s += a; -try {eval(s);} -catch (e) {}; diff --git a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-96526-003.js b/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-96526-003.js deleted file mode 100644 index 0cc33b9..0000000 --- a/JavaScriptCore/tests/mozilla/js1_5/Regress/regress-96526-003.js +++ /dev/null @@ -1,4431 +0,0 @@ -/* ***** BEGIN LICENSE BLOCK ***** -* Version: NPL 1.1/GPL 2.0/LGPL 2.1 -* -* The contents of this file are subject to the Netscape Public License -* Version 1.1 (the "License"); you may not use this file except in -* compliance with the License. You may obtain a copy of the License at -* http://www.mozilla.org/NPL/ -* -* Software distributed under the License is distributed on an "AS IS" basis, -* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License -* for the specific language governing rights and limitations under the -* License. -* -* The Original Code is JavaScript Engine testing utilities. -* -* The Initial Developer of the Original Code is Netscape Communications Corp. -* Portions created by the Initial Developer are Copyright (C) 2002 -* the Initial Developer. All Rights Reserved. -* -* Contributor(s): pschwartau@netscape.com -* -* Alternatively, the contents of this file may be used under the terms of -* either the GNU General Public License Version 2 or later (the "GPL"), or -* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), -* in which case the provisions of the GPL or the LGPL are applicable instead -* of those above. If you wish to allow use of your version of this file only -* under the terms of either the GPL or the LGPL, and not to allow others to -* use your version of this file under the terms of the NPL, indicate your -* decision by deleting the provisions above and replace them with the notice -* and other provisions required by the GPL or the LGPL. If you do not delete -* the provisions above, a recipient may use your version of this file under -* the terms of any one of the NPL, the GPL or the LGPL. -* -* ***** END LICENSE BLOCK ***** -* -* -* Date: 04 Sep 2002 -* SUMMARY: Just seeing that we don't crash when compiling this script - -* -* See http://bugzilla.mozilla.org/show_bug.cgi?id=96526 -* See http://bugzilla.mozilla.org/show_bug.cgi?id=133897 -*/ -//----------------------------------------------------------------------------- -printBugNumber(96526); -printStatus("Just seeing that we don't crash when compiling this script -"); - - -/* - * This function comes from http://bugzilla.mozilla.org/show_bug.cgi?id=133897 - */ -function validId(IDtext) -{ -var res = ""; - -if(IDText.value==""){ - print("You must enter a valid battery #") - return false -} -else if(IDText.value=="x522"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm" - return true -} -else if(IDText.value=="x91"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm" - return true -} -else if(IDText.value=="x92"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm" - return true -} -else if(IDText.value=="x93"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm" - return true -} -else if(IDText.value=="x95"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm" - return true -} -else if(IDText.value=="521"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm" - return true - } -else if(IDText.value=="522"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm" - return true - } -else if(IDText.value=="528"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm" - return true - } -else if(IDText.value=="529"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm" - return true - } -else if(IDText.value=="539"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm" - return true - } -else if(IDText.value=="e90"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm" - return true - } -else if(IDText.value=="e91"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm" - return true - } -else if(IDText.value=="e92"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm" - return true - } -else if(IDText.value=="e93"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm" - return true - } -else if(IDText.value=="e95"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_consumeroem.htm" - return true - } -else if(IDText.value=="e96"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer_e2/energizer2.htm" - return true - } - else if(IDText.value=="en6"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } - else if(IDText.value=="en22"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } - else if(IDText.value=="en90"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } - else if(IDText.value=="en91"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } - else if(IDText.value=="en92"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } - else if(IDText.value=="en93"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } - else if(IDText.value=="en95"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } - else if(IDText.value=="en529"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } - else if(IDText.value=="en539"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } - else if(IDText.value=="en715"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } - else if(IDText.value=="edl4a"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } - else if(IDText.value=="edl4as"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } - else if(IDText.value=="edl4ac"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } - else if(IDText.value=="edl6a"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_industrial.htm" - return true - } -else if(IDText.value=="3-0316"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } -else if(IDText.value=="3-0316i"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } -else if(IDText.value=="3-00411"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } -else if(IDText.value=="3-0411i"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-312"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } -else if(IDText.value=="3-312i"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-315"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-315i"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-315innc"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-315iwc"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-315wc"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-335"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-335i"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-335wc"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-335nnci"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-350"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-350i"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-3501wc"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-350wc"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-350nnci"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-361"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - -else if(IDText.value=="3-361i"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/energizer/alkaline_oem_only.htm" - return true - } - - else if(IDText.value=="a522"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/eveready/value.htm" - return true - } - else if(IDText.value=="a91"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/eveready/value.htm" - return true - } - else if(IDText.value=="a92"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/eveready/value.htm" - return true - } - else if(IDText.value=="a93"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/eveready/value.htm" - return true - } - else if(IDText.value=="a95"){ - //Checks for id entry - res="../batteryinfo/product_offerings/alkaline/eveready/value.htm" - return true - } - -else if(IDText.value=="510s"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_consumeroem.htm" - return true - } - -else if(IDText.value=="1209"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_consumeroem.htm" - return true - } - -else if(IDText.value=="1212"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_consumeroem.htm" - return true - } - -else if(IDText.value=="1215"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_consumeroem.htm" - return true - } - -else if(IDText.value=="1222"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_consumeroem.htm" - return true - } - -else if(IDText.value=="1235"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_consumeroem.htm" - return true - } - -else if(IDText.value=="1250"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_consumeroem.htm" - return true - } - else if(IDText.value=="206"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="246"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="266"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="276"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="411"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - - else if(IDText.value=="412"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="413"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="415"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="416"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="455"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="467"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="489"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="493"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="497"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="504"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="505"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="711"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="732"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="763"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="ev190"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="ev115"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="ev122"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="ev131"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="ev135"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="ev150"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - - else if(IDText.value=="hs14196"){ - //Checks for id entry - res="../batteryinfo/product_offerings/carbon_zinc/carbon_zinc_industrial.htm" - return true - } - -else if(IDText.value=="2l76"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithium.htm" - return true - } -else if(IDText.value=="el1cr2"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithium.htm" - return true - } -else if(IDText.value=="crv3"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithium.htm" - return true - } - -else if(IDText.value=="el2cr5"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithium.htm" - return true - } - -else if(IDText.value=="el123ap"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithium.htm" - return true - } - -else if(IDText.value=="el223ap"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithium.htm" - return true - } - -else if(IDText.value=="l91"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithium.htm" - return true - } - -else if(IDText.value=="l522"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithium.htm" - return true - } - -else if(IDText.value=="l544"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithium.htm" - return true - } - -else if(IDText.value=="cr1025"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - -else if(IDText.value=="cr1216"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - -else if(IDText.value=="cr1220"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - -else if(IDText.value=="cr1225"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - -else if(IDText.value=="cr1616"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - -else if(IDText.value=="cr1620"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - -else if(IDText.value=="cr1632"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - -else if(IDText.value=="cr2012"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - -else if(IDText.value=="cr2016"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - -else if(IDText.value=="cr2025"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - -else if(IDText.value=="cr2032"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - -else if(IDText.value=="cr2320"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - -else if(IDText.value=="cr2430"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - -else if(IDText.value=="cr2450"){ - //Checks for id entry - res="../batteryinfo/product_offerings/lithium/lithiummin.htm" - return true - } - else if(IDText.value=="186"){ - //Checks for id entry - res="../batteryinfo/product_offerings/manganese_dioxide/manganese_dioxide.htm" - return true - } - - else if(IDText.value=="189"){ - //Checks for id entry - res="../batteryinfo/product_offerings/manganese_dioxide/manganese_dioxide.htm" - return true - } - - else if(IDText.value=="191"){ - //Checks for id entry - res="../batteryinfo/product_offerings/manganese_dioxide/manganese_dioxide.htm" - return true - } - - else if(IDText.value=="192"){ - //Checks for id entry - res="../batteryinfo/product_offerings/manganese_dioxide/manganese_dioxide.htm" - return true - } - - else if(IDText.value=="193"){ - //Checks for id entry - res="../batteryinfo/product_offerings/manganese_dioxide/manganese_dioxide.htm" - return true - } - - else if(IDText.value=="a23"){ - //Checks for id entry - res="../batteryinfo/product_offerings/manganese_dioxide/manganese_dioxide.htm" - return true - } - - else if(IDText.value=="a27"){ - //Checks for id entry - res="../batteryinfo/product_offerings/manganese_dioxide/manganese_dioxide.htm" - return true - } - - else if(IDText.value=="a76"){ - //Checks for id entry - res="../batteryinfo/product_offerings/manganese_dioxide/manganese_dioxide.htm" - return true - } - - else if(IDText.value=="a544"){ - //Checks for id entry - res="../batteryinfo/product_offerings/manganese_dioxide/manganese_dioxide.htm" - return true - } - - else if(IDText.value=="e11a"){ - //Checks for id entry - res="../batteryinfo/product_offerings/manganese_dioxide/manganese_dioxide.htm" - return true - } - - else if(IDText.value=="e625g"){ - //Checks for id entry - res="../batteryinfo/product_offerings/manganese_dioxide/manganese_dioxide.htm" - return true - } - -else if(IDText.value=="301"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="303"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="309"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="315"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="317"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="319"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="321"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="329"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } -else if(IDText.value=="333"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } -else if(IDText.value=="335"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="337"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="339"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="341"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="344"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="346"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="350"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="357"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="361"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="362"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="364"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="365"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="366"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="370"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="371"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="373"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="376"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="377"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="379"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="381"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="384"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="386"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="387s"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="389"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="390"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="391"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="392"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="393"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="394"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="395"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="396"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="397"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - -else if(IDText.value=="399"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - - -else if(IDText.value=="epx76"){ - //Checks for id entry - res="../batteryinfo/product_offerings/silver/silver_oxide.htm" - return true - } - - else if(IDText.value=="ac5"){ - //Checks for id entry - res="../batteryinfo/product_offerings/zinc_air/zinc_air.htm" - return true - } - - else if(IDText.value=="ac10/230"){ - //Checks for id entry - res="../batteryinfo/product_offerings/zinc_air/zinc_air.htm" - return true - } - else if(IDText.value=="ac10"){ - //Checks for id entry - res="../batteryinfo/product_offerings/zinc_air/zinc_air.htm" - return true - } - else if(IDText.value=="ac13"){ - //Checks for id entry - res="../batteryinfo/product_offerings/zinc_air/zinc_air.htm" - return true - } - - else if(IDText.value=="ac146x"){ - //Checks for id entry - res="../batteryinfo/product_offerings/zinc_air/zinc_air.htm" - return true - } - - else if(IDText.value=="ac312"){ - //Checks for id entry - res="../batteryinfo/product_offerings/zinc_air/zinc_air.htm" - return true - } - - else if(IDText.value=="ac675"){ - //Checks for id entry - res="../batteryinfo/product_offerings/zinc_air/zinc_air.htm" - return true - } - -else if(IDText.value=="chm24"){ - //Checks for id entry - res="../batteryinfo/product_offerings/accessories/rechargeableaccessories_chrger.htm" - return true - } - -else if(IDText.value=="chm4aa"){ - //Checks for id entry - res="../batteryinfo/product_offerings/accessories/rechargeableaccessories_chrger.htm" - return true - } - -else if(IDText.value=="chsm"){ - //Checks for id entry - res="../batteryinfo/product_offerings/accessories/rechargeableaccessories_chrger.htm" - return true - } - -else if(IDText.value=="chm4fc"){ - //Checks for id entry - res="../batteryinfo/product_offerings/accessories/rechargeableaccessories_chrger.htm" - return true - } - -else if(IDText.value=="cxl1000"){ - //Checks for id entry - res="../batteryinfo/product_offerings/accessories/rechargeableaccessories_chrger.htm" - return true - } - else if(IDText.value=="nh12"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_nimh.htm" - return true - } - else if(IDText.value=="nh15"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_nimh.htm" - return true - } - - else if(IDText.value=="nh22"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_nimh.htm" - return true - } - - else if(IDText.value=="nh35"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_nimh.htm" - return true - } - else if(IDText.value=="nh50"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_nimh.htm" - return true - } - - -else if(IDText.value=="ccm5060"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } - -else if(IDText.value=="ccm5260"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } - -else if(IDText.value=="cm1060h"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } - -else if(IDText.value=="cm1360"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } - -else if(IDText.value=="cm2560"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } - -else if(IDText.value=="cm6136"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } - -else if(IDText.value=="cv3010"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="cv3012"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="cv3112"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } - -else if(IDText.value=="erc510"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc5160"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc520"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc525"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc530"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc545"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc560"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc570"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } - -else if(IDText.value=="erc580"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc590"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc600"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc610"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc620"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } - -else if(IDText.value=="erc630"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } - -else if(IDText.value=="erc640"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc650"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc660"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc670"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc680"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } -else if(IDText.value=="erc700"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscam.htm" - return true - } - - else if(IDText.value=="cp2360"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - - else if(IDText.value=="cp3036"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - - - else if(IDText.value=="cp3136"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - - else if(IDText.value=="cp3336"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - - else if(IDText.value=="cp5136"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - - else if(IDText.value=="cp5648"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - - else if(IDText.value=="cp5748"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - - else if(IDText.value=="cp8049"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - - else if(IDText.value=="cp8648"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - - - else if(IDText.value=="cpv5136"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - - - else if(IDText.value=="acp5036"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - - - else if(IDText.value=="acp5136"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - - - else if(IDText.value=="acp7160"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw120"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw210"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw220"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw230"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw240"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw305"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw310"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw320"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw400"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw500"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw510"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw520"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw530"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw600"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw610"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw700"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw720"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } - else if(IDText.value=="erw800"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscell.htm" - return true - } -else if(IDText.value=="erp107"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="erp110"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="erp240"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="erp268"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="erp275"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="erp290"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="erp450"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="erp506"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="erp509"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="erp730"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="erp9116"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="p2312"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="p2322m"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="p2331"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="p3201"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="p3301"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="p3302"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="p3303"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="p3306"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="p3391"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="p5256"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="p7300"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="p7301"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="7302"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="7310"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="p7320"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="p7330"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="p7340"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="p7350"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } - -else if(IDText.value=="p7360"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="p7400"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="p7501"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packscord.htm" - return true - } -else if(IDText.value=="erd100"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packsdigicam.htm" - return true - } -else if(IDText.value=="erd110"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packsdigicam.htm" - return true - } -else if(IDText.value=="erd200"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packsdigicam.htm" - return true - } -else if(IDText.value=="erd300"){ - //Checks for id entry - res="../batteryinfo/product_offerings/rechargeable_consumer/rechargeable_consumer_packsdigicam.htm" - return true - } - - - - - - - - - - - - - -else if(IDText.value=="164"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="201"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="216"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="226"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="228"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="311"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="314"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } - -else if(IDText.value=="313"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="323"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="325"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="333cz"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="343"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="354"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="355"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="387"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="388"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="417"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="420"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="457"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="460"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="477"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="479"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="482"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="484"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="487"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="490"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="491"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="496"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="509"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="510f"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="520"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="523"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="531"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="532"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="537"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="538"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="544"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="560"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="561"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="563"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="564"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="565"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="646"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="703"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="706"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="714"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="715"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="716"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="717"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="724"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="731"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="735"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="736"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="738"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="742"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="744"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="750"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="762s"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="773"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="778"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="781"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="812"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="815"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="835"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="850"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="904"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="912"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="915"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="935"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="950"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="1015"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="1035"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="1050"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="1150"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="1231"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="1461"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="1463"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="1562"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="1862"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="2356n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="2709n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="2744n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="2745n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="2746n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="2780n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ac41e"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cc1096"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ccm1460"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ccm2460"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ccm4060a"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ccm4060m"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cdc100"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ch12"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ch15"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ch2aa"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ch22"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ch35"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ch4"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ch50"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cm1060"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cm1560"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cm2360"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cm4160"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cm6036"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cm9072"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cm9172"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp2360"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp3336"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp3536"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp3736"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp5036"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp5160"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp5648"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp5960"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp6072"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp6172"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp7049"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp7072"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp7148"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp7149"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp7160"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp7172"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp7248"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp7261"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp7348"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp7548"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp7661"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp7960"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp8049"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp8136"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp8160"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp8172"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp8248"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp8661"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp8748"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } - -else if(IDText.value=="cp8948"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp8960"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp9061"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp9148"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp9161"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cp9360"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs3336"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs5036"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs5460"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs7048"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs7072"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs7148"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs7149"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs7160"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs7248"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs7261"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs7348"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs7448"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs7548"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs7661"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs8136"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs8648"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs9061"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs9148"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cs9161"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cv2012"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cv2096"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cv3010s"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cv3012"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cv3060"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cv3112"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="cv3212"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e1"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e1n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e3"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e4"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e9"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e12"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e12n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e13e"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e41e"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e42"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e42n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e89"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e115"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e115n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e126"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e132"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e132n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e133"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e133n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e134"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e134n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e135"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e135n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e136"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e137"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e137n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e146x"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e152"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e163"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e164"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e164n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e165"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e169"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e177"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e233"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e233n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e235n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e236n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e286"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e289"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e312e"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e340e"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e400"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e400n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e401e"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e401n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e450"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e502"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e601"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e625"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e630"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e640"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e640n"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e675e"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e302157"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e302250"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e302358"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e302435"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e302462"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e302465"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e302478"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e302642"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e302651"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e302702"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e302904"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e302905"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e302908"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e303145"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e303236"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e303314"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e303394"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e303496"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="e303996"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ea6"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ea6f"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ea6ft"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ea6st"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="en1a"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="en132a"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="en133a"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="en134a"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="en135a"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="en136a"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="en164a"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="en165a"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="en175a"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="en177a"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="en640a"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ep175"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ep401e"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ep675e"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="epx1"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="epx4"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="epx13"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="epx14"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="epx23"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="epx25"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="epx27"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="epx29"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="epx30"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="epx625"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="epx640"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="epx675"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="epx825"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ev6"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ev9"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ev10s"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ev15"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ev22"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ev31"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ev35"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ev50"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ev90"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="ev90hp"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="fcc2"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="hs6"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="hs10s"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="hs15"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="hs31"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="hs35"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="hs50"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="hs90"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="hs95"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="hs150"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="hs6571"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="if6"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="is6"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="is6t"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="p2321m"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="p2322"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="p2326m"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="p7307"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="p7507"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="qcc4"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="s13e"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="s312e"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="s41e"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="s76e"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="t35"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="t50"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="w353"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/contents/discontinued_battery_index.htm" - return true - } -else if(IDText.value=="3251"){ - //Checks for id entry - res="../datasheets/flashlights/eveready.htm" - return true - } -else if(IDText.value=="4212"){ - //Checks for id entry - res="../datasheets/flashlights/eveready.htm" - return true - } -else if(IDText.value=="4251"){ - //Checks for id entry - res="../datasheets/flashlights/eveready.htm" - return true - } -else if(IDText.value=="5109"){ - //Checks for id entry - res="../datasheets/flashlights/eveready.htm" - return true - } -else if(IDText.value=="2251"){ - //Checks for id entry - res="../datasheets/flashlights/home.htm" - return true - } -else if(IDText.value=="e220"){ - //Checks for id entry - res="../datasheets/flashlights/home.htm" - return true - } -else if(IDText.value=="e250"){ - //Checks for id entry - res="../datasheets/flashlights/home.htm" - return true - } -else if(IDText.value=="e251"){ - //Checks for id entry - res="../datasheets/flashlights/home.htm" - return true - } -else if(IDText.value=="e251rc210"){ - //Checks for id entry - res="../datasheets/flashlights/home.htm" - return true - } -else if(IDText.value=="erg2c1"){ - //Checks for id entry - res="../datasheets/flashlights/home.htm" - return true - } -else if(IDText.value=="glo4aa1"){ - //Checks for id entry - res="../datasheets/flashlights/home.htm" - return true - } -else if(IDText.value=="rc220"){ - //Checks for id entry - res="../datasheets/flashlights/home.htm" - return true - } -else if(IDText.value=="rc250"){ - //Checks for id entry - res="../datasheets/flashlights/home.htm" - return true - } -else if(IDText.value=="x112"){ - //Checks for id entry - res="../datasheets/flashlights/home.htm" - return true - } -else if(IDText.value=="x215"){ - //Checks for id entry - res="../datasheets/flashlights/home.htm" - return true - } -else if(IDText.value=="4215"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="5215"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="6212"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="bas24a"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="db24a1"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="kcbg"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="kccl"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="kcdl"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="kcl2bu1"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="kcwl"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="ltcr"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="lteb"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="ltpt"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="sl240"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="v220"){ - //Checks for id entry - res="../datasheets/flashlights/novelty.htm" - return true - } -else if(IDText.value=="5100"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="8209"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="8215"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="9450"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="f101"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="f220"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="f420"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="fab4dcm"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="fl450"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="k221"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="k251"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="led4aa1"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="sp220"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="tw420"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="tw450"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="wp220"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="wp250"){ - //Checks for id entry - res="../datasheets/flashlights/outdoor.htm" - return true - } -else if(IDText.value=="cfl420"){ - //Checks for id entry - res="../datasheets/flashlights/premium.htm" - return true - } -else if(IDText.value=="d410"){ - //Checks for id entry - res="../datasheets/flashlights/premium.htm" - return true - } -else if(IDText.value=="d420"){ - //Checks for id entry - res="../datasheets/flashlights/premium.htm" - return true - } -else if(IDText.value=="fn450"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="in215"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="in251"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="in351"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="in421"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="k220"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="k250"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="r215"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="r250"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="r450"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="tuf4d1"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="v109"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="v115"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="v215"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="v250"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } -else if(IDText.value=="val2dl1"){ - //Checks for id entry - res="../datasheets/flashlights/work.htm" - return true - } - -else if(IDText.value=="459"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="208ind"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="231ind"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="1151"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="1251"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="1259"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="1351"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="1359"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="3251r"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="3251wh"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="4212wh"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="4250ind"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="5109ind"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="6212wh"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="9101ind"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="e250y"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="e251y"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="in220"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="in253"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="in420"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="in450"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="indwandr"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="indwandy"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="r215ind"){ - //Checks for id entry - res="../datasheets/flashlights/industrial.htm" - return true - } -else if(IDText.value=="pr2"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="pr3"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="pr4"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="pr6"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="pr7"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="pr12"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="pr13"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="pr35"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="112"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="222"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="243"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="258"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="407"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="425"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="1156"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="1651"){ - //Checks for id entry - res="../datasheets/flashlights/standard.htm" - return true - } -else if(IDText.value=="kpr102"){ - //Checks for id entry - res="../datasheets/flashlights/krypton.htm" - return true - } -else if(IDText.value=="kpr103"){ - //Checks for id entry - res="../datasheets/flashlights/krypton.htm" - return true - } -else if(IDText.value=="kpr104"){ - //Checks for id entry - res="../datasheets/flashlights/krypton.htm" - return true - } -else if(IDText.value=="kpr113"){ - //Checks for id entry - res="../datasheets/flashlights/krypton.htm" - return true - } -else if(IDText.value=="kpr116"){ - //Checks for id entry - res="../datasheets/flashlights/krypton.htm" - return true - } -else if(IDText.value=="kpr802"){ - //Checks for id entry - res="../datasheets/flashlights/krypton.htm" - return true - } -else if(IDText.value=="skpr823"){ - //Checks for id entry - res="../datasheets/flashlights/krypton.htm" - return true - } -else if(IDText.value=="hpr50"){ - //Checks for id entry - res="../datasheets/flashlights/halogenbulb.htm" - return true - } -else if(IDText.value=="hpr51"){ - //Checks for id entry - res="../datasheets/flashlights/halogenbulb.htm" - return true - } -else if(IDText.value=="hpr52"){ - //Checks for id entry - res="../datasheets/flashlights/halogenbulb.htm" - return true - } -else if(IDText.value=="hpr53"){ - //Checks for id entry - res="../datasheets/flashlights/halogenbulb.htm" - return true - } -else if(IDText.value=="f4t5"){ - //Checks for id entry - res="../datasheets/flashlights/fluorescent.htm" - return true - } -else if(IDText.value=="f6t5"){ - //Checks for id entry - res="../datasheets/flashlights/fluorescent.htm" - return true - } -else if(IDText.value=="t1-1"){ - //Checks for id entry - res="../datasheets/flashlights/highintensity.htm" - return true - } -else if(IDText.value=="t1-2"){ - //Checks for id entry - res="../datasheets/flashlights/highintensity.htm" - return true - } -else if(IDText.value=="t2-2"){ - //Checks for id entry - res="../datasheets/flashlights/halogenxenon.htm" - return true - } -else if(IDText.value=="t2-3"){ - //Checks for id entry - res="../datasheets/flashlights/halogenxenon.htm" - return true - } -else if(IDText.value=="t2-4"){ - //Checks for id entry - res="../datasheets/flashlights/halogenxenon.htm" - return true - } -else if(IDText.value=="tx15-2"){ - //Checks for id entry - res="../datasheets/flashlights/halogenxenon.htm" - return true - } -else if(IDText.value=="4546ib"){ - //Checks for id entry - res="../datasheets/flashlights/industrialbulb.htm" - return true - } -else if(IDText.value=="LED"){ - //Checks for id entry - res="../datasheets/flashlights/led.htm" - return true - } - - - -else if(IDText.value=="108"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="209"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="330"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="330y"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="331"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="331y"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="1251bk"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="2253"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="3233"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="3253"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="3415"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="3452"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="4220"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="4453"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="5154"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="5251"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="7369"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="8115"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="8415"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="b170"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="bkc1"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="d620"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="d820"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="e100"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="e252"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="e350"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="e420"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="em290"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="em420"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="f100"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="f215"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="f250"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="f415"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="h100"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="h250"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="h350"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="in25t"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="kcdb"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="kcsg"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="kctw"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="rc100"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="rc251"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="rc290"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="t430"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="v235"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="x250"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } -else if(IDText.value=="x350"){ - //Checks for id entry - print("You have entered a Discontinued Product Number") - res="../datasheets/flashlights/discontinued_flashlight_index.htm" - return true - } - - - -else { - print("You have entered an Invalid Product Number...Please try 'Select Product Group' search.") - return false - } - -} |
