home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / winbuilder.7z / Projects / Tools / Iso-Burner.chm / shared.js < prev    next >
Text File  |  2008-10-11  |  42KB  |  1,063 lines

  1. // Filename: shared.js in NTShared.chm
  2. // Version post beta 3 (7)
  3. // version 07.01.99
  4.  
  5. //************************************************ EVENT HANDLING ********************************************
  6. //*******************************************************************************************************************
  7. //  re-directs to the proper event-driven functions.
  8.  
  9. window.onload= loadPage;
  10. document.onclick= onclickTriage;
  11. document.onmouseover= gettingHot;
  12. document.onmouseout= gettingCold;
  13. window.onunload=saveChecklistState;
  14. window.onresize= resizeDiv;
  15.  
  16. window.onbeforeprint= set_to_print;
  17. window.onafterprint= reset_form;
  18. //********************************************  USER-DEFINED GLOBAL VARIABLES  ************************************
  19. //********************************************************************************************************************
  20. //  The images listed below can all be changed by the user.
  21.  
  22. var sPreviousTip= "Previous topic";
  23. var sNextTip= "Next topic";
  24. var sExpandTip= "Expand/collapse";
  25. var sPopupTip= "View definition";
  26. var sShortcutTip= "";
  27.  
  28. //var moniker= "ms-its:";                                        
  29. moniker= ""; //for flat files
  30.  
  31. var sSharedCHM= moniker; //+"mmc.chm::/";
  32.  
  33. var closed = sSharedCHM + "../images/plusCold.gif";                //image used for collapsed item in callExpand()
  34. var closedHot = sSharedCHM + "../images/plusHot.gif";            //hot image used for collapsed item in callExpand()
  35. var expand = sSharedCHM + "../images/minusCold.gif";            //image used for expanded item in callExpand()
  36. var expandHot = sSharedCHM + "../images/minusHot.gif";        //hot image used for expanded item in callExpand()
  37.  
  38. var previousCold= sSharedCHM + "../images/previousCold.gif";
  39. var previousHot= sSharedCHM + "../images/previousHot.gif"; 
  40. var nextCold= sSharedCHM + "../images/nextCold.gif";
  41. var nextHot= sSharedCHM + "../images/nextHot.gif"; 
  42.  
  43. var shortcutCold= sSharedCHM + "../images/shortcutCold.gif";
  44. var shortcutHot= sSharedCHM + "../images/shortcutHot.gif";
  45.  
  46. var popupCold= sSharedCHM + "../images/popupCold.gif";
  47. var popupHot= sSharedCHM + "../images/popupHot.gif";
  48.  
  49. var emptyImg= sSharedCHM + "../images/empty.gif";        //image used for empty expand
  50. var noteImg= sSharedCHM + "../images/note.gif";            //image used for notes
  51. var tipImg= sSharedCHM + "../images/tip.gif";            //image used for tips
  52. var warningImg= sSharedCHM + "../images/warning.gif";        //image used for warnings
  53. var cautionImg= sSharedCHM + "../images/caution.gif";        //image used for cautions
  54. var importantImg= sSharedCHM + "../images/important.gif";        //image used for important notice
  55. var relTopicsImg= sSharedCHM + "../images/rel_top.gif";        //image used for important notice
  56.  
  57. var branchImg= sSharedCHM + "../images/elle.gif";
  58. var branchImg_RTL= sSharedCHM + "../images/elle_rtl.gif";
  59.  
  60.  
  61. //********************************************  GLOBAL VARIABLES  ******************************************
  62. //********************************************************************************************************
  63.  
  64. var printing = "FALSE";
  65. var single = "FALSE";
  66. var scroller = "FALSE";
  67. var isRTL= (document.dir=="rtl");
  68. var imgStyleRTL= ""; 
  69.       if (isRTL) imgStyleRTL=" style='filter:flipH' ";
  70.  
  71. var sActX_TDC= "CLASSID='CLSID:333C7BC4-460F-11D0-BC04-0080C7055A83'";        //Tabular Data Control  for  reusable text data
  72. var sSharedReusableTextFile= sSharedCHM + "shared.txt";                                        // common reusable text file
  73. var sSharedReusableTextFileRecord= "para";                                                        //reusable text record
  74.  
  75. var numbers= /\d/g;                //javascript regular expression
  76. var spaces= /\s/g;                //javascript regular expression
  77. var semicolon= /;/g;            //javascript regular expression
  78.  
  79. var isIE5= (navigator.appVersion.indexOf("MSIE 5")>0) || (navigator.appVersion.indexOf("MSIE")>0 && parseInt(navigator.appVersion)> 4);
  80. var isPersistent= false;
  81.  
  82.  
  83. //********************************************  INITIALIZATION  *************************************************
  84. //******************************************************************************************************************
  85.  
  86. //*** loadPage **********************************************************************************************
  87. //  Adds the default image tags and re-usable text to the HTML page.
  88.  
  89. function loadPage(){
  90. isPersistent= (document.all.item("checklist")!=null) && (isIE5);
  91.  
  92.   setPreviousNext();
  93.   resizeDiv();
  94.   if (isPersistent) getChecklistState();
  95.   addReusableText();
  96.   insertImages();
  97. }
  98.  
  99. //****** setPreviousNext  ************************************************************************ ********************************************************************************************* 
  100. // insert previous/next navbar
  101. // called by: <div id="nav">@@HTMLsequenceFile.txt or .lst@@</div>
  102.  
  103. function setPreviousNext(){
  104.  
  105.  
  106.   var oNav = document.all.item("nav");
  107.         if (oNav == null ) return;
  108.   
  109.   var sPreviousALT= sPreviousTip;
  110.   var sNextALT= sNextTip;
  111.   var sHTMLfile= oNav.innerHTML;
  112.  
  113.   var imgPrev= "<IMG SRC='"+previousCold+"' BORDER=0 ALT='"+ sPreviousALT +"' ALIGN='top' "+ imgStyleRTL +">";
  114.   var imgNext= "<IMG SRC='"+nextCold+"' BORDER=0 ALT='"+ sNextALT  + "' ALIGN='top' "+ imgStyleRTL +">";
  115.   
  116.   var previousNextObject= "<OBJECT ID='HTMlist' WIDTH=100 HEIGHT=51 " + sActX_TDC +"><param name='DataURL' value='"
  117.         +sHTMLfile +"'><param name='UseHeader' value=True></OBJECT>";
  118.       
  119.         oNav.innerHTML= "<TABLE WIDTH='100%' STYLE='margin-top:0;' cellspacing=0>"
  120.         + "<TR><TD style='text-align=left; background-color:transparent'><A ID='previousLink' HREF='#' REL='previous' CLASS='navbar'>"
  121.         +imgPrev + "</A></TD><TD width='100%' align='center'></td><TD style='text-align=right; background-color:transparent'><A ID='nextLink' HREF='#' REL='next' CLASS='navbar'>"
  122.         +imgNext+ "</A></TD></TR></TABLE>";
  123.                     
  124.       document.body.innerHTML= document.body.innerHTML +  previousNextObject;
  125.       findPageSeq();
  126.       if (printing == "TRUE") return;
  127.       var  thisLoc= document.location.href +"#";
  128.  
  129.       if (previousLink.href== thisLoc) previousLink.style.display="none";
  130.       else  previousLink.style.display="block";
  131.  
  132.       if (nextLink.href== thisLoc) nextLink.style.display="none";
  133.       else  nextLink.style.display="block";
  134.       
  135. }
  136.  
  137. //****** findPageSeq *********************************************************************************************
  138. // finds this page in the "html sequence list" file (filename.lst) and determines the previous & next pages from the list
  139. // the list is created from a tool named "chumper"
  140.  
  141. function findPageSeq() {
  142.  
  143. var rs= HTMlist.recordset;
  144. var thisLoc= document.location.href;
  145. var iLoc= thisLoc.lastIndexOf("/");
  146.  
  147.     if (iLoc > 0) thisLoc= thisLoc.substring(iLoc+1, thisLoc.length);
  148.     
  149.     
  150.     if (nav.style == "[object]") {
  151.                 nav.style.visibility="hidden";
  152.                 printing = "FALSE";
  153.                 }
  154.         else
  155.             {
  156.                 printing = "TRUE";
  157.                 return;
  158.             }
  159.     
  160.        
  161.     rs.moveFirst();
  162.        
  163.     while (!rs.EOF) {
  164.           if (thisLoc == rs.fields("HTMfiles").value){
  165.               nav.style.visibility="visible"; 
  166.                 rs.MoveNext();
  167.               break;
  168.           }
  169.           previousLink.href=rs.fields("HTMfiles").value;      
  170.           rs.moveNext();
  171.      }
  172.                 
  173.       if (!rs.EOF) nextLink.href=rs.fields("HTMfiles").value;
  174. }
  175.  
  176.  
  177. //******Re-usable text ********************************************************************************************* 
  178. // Inserts the Tabular Data Control (TDC) object at the end of the page 
  179. // Inserts "re-usable text" from the txt file at: <span id="@@CHM_name@@@@index#@@" class="reuse"></span>
  180. // e.g.<span id="printing4" class="reuse"></span> for record#4 in the printing.txt in printing.chm.
  181.  
  182. function addReusableText(){
  183.  
  184. var ntsharedAdded= false;                    // make sure the object is only added once
  185. var CHMspecificAdded= false;                // make sure the object is only added once
  186. var coll = document.all.tags("SPAN");
  187. var sIndex,sRecord,sFile,sFileID,dataBindingObject;
  188.  
  189. // TDC object for ntshared.chm
  190. var coreObject= "WIDTH=100 HEIGHT=51 "+sActX_TDC+"><param name='UseHeader' value=True><param name='FieldDelim' value='~'><param name='sort' value='INDEX'>";
  191. var shareTextObject = "<OBJECT ID='NTsharedText' " + coreObject + "<param name='DataURL' value='"+sSharedReusableTextFile+"'></OBJECT>";
  192.  
  193.     for (var i=0; i< coll.length; i++)                                   
  194.          if (coll[i].className.toLowerCase()=="reuse"){
  195.              if (isRTL) coll[i].dir= "rtl";
  196.              
  197.              if (coll[i].id == null) return;
  198.              
  199.                 sFile= coll[i].id.toLowerCase();
  200.              sFile= sFile.replace(spaces,"");
  201.              sFileID= sFile;
  202.              sFile= sFile.replace(numbers,""); 
  203.  
  204.              if (sFile == sSharedReusableTextFileRecord) coll[i].dataSrc= "#NTsharedText";
  205.              else coll[i].dataSrc= "#CHMspecificText";
  206.     
  207.              coll[i].dataField= "INDEX";
  208.       
  209.              if (!ntsharedAdded && sFile==sSharedReusableTextFileRecord){
  210.                  document.body.innerHTML= document.body.innerHTML + shareTextObject;
  211.                  ntsharedAdded= true;
  212.              }
  213.  
  214.              else if (!CHMspecificAdded && sFile !=sSharedReusableTextFileRecord){
  215.                       dataBindingObject= "<OBJECT ID='CHMspecificText'" + coreObject
  216.                       + "<param name='DataURL' value='"+sSharedCHM+sFile+".txt'></OBJECT>";
  217.                       document.body.innerHTML= document.body.innerHTML + dataBindingObject; 
  218.                       CHMspecificAdded= true;
  219.              }
  220.                     
  221.              if (sFile == sSharedReusableTextFileRecord)
  222.                  sRecord= NTsharedText.recordset;
  223.              else sRecord= CHMspecificText.recordset; 
  224.                                                     
  225.              sRecord.moveFirst(); 
  226.     
  227.               do { sIndex= sRecord.fields("INDEX").value;
  228.                      sText= sRecord.fields("TEXT").value;
  229.                      
  230.                      if (sIndex < sFileID) sRecord.moveNext();
  231.                      else break;
  232.               } while (!sRecord.EOF);
  233.                   
  234.                if (sIndex == sFileID) coll[i].innerHTML= sText;
  235.     }           
  236. }
  237.  
  238.  //****** insertImages ********************************************************************************************* 
  239.  //  Inserts shared images in User-Defined Variables section and thumbnails.
  240.  
  241. function insertImages(){
  242.  
  243. // insert alert icons
  244.   var collP = document.all.tags("P");
  245.   for (var i=0; i<collP.length; i++) {
  246.        if (collP[i].className.toLowerCase()=="note")            collP[i].innerHTML ="<img class='alert' src='"+noteImg+"' "+ imgStyleRTL +"> " +     collP[i].innerHTML;
  247.        else if (collP[i].className.toLowerCase()=="warning")    collP[i].innerHTML ="<img class='alert' src='"+warningImg+"'> " +  collP[i].innerHTML;
  248.        else if (collP[i].className.toLowerCase()=="caution")    collP[i].innerHTML ="<img class='alert' src='"+cautionImg+"'> " +  collP[i].innerHTML;
  249.        else if (collP[i].className.toLowerCase()=="tip")        collP[i].innerHTML ="<img class='alert' src='"+tipImg+"'> " +      collP[i].innerHTML;
  250.        else if (collP[i].className.toLowerCase()=="important")  collP[i].innerHTML ="<img class='alert' src='"+importantImg+"'> " + collP[i].innerHTML;
  251.        else if (collP[i].className.toLowerCase()=="empty")      collP[i].innerHTML ="<img class='alert' src='"+emptyImg+"'> " +    collP[i].innerHTML;
  252.        else if (collP[i].className.toLowerCase()=="reltopics")  collP[i].innerHTML ="<img class='alert' src='"+relTopicsImg+"'> " + collP[i].innerHTML;
  253.   }
  254.   
  255. //indents for Navigation Tree 
  256. var collUL = document.all.tags("UL");
  257.  
  258. for (var i=0; i<collUL.length; i++) {
  259.        var indent= 0;
  260.        if (collUL[i].className.toLowerCase()=="navtree"){
  261.            if (isRTL) collUL[i].style.listStyleImage= "url('" + branchImg_RTL + "')";
  262.            else collUL[i].style.listStyleImage= "url('" + branchImg + "')";
  263.              for (var j = 0; j < collUL[i].children.length; j++)
  264.                 if (collUL[i].children[j].className.toLowerCase()=="branch"){
  265.                     if (isRTL) collUL[i].children[j].style.marginRight= (indent +'em');
  266.                     else   collUL[i].children[j].style.marginLeft= (indent +'em');
  267.                     indent= indent + 0.75;
  268.                 }
  269.       }
  270. }
  271.    
  272.   for (var i=0; i < document.anchors.length; i++){
  273.          var imgInsert="";  
  274.          var imgStyle= "";
  275.          var imgSpace= "<span class='space'></span>";      
  276.          var oBefore=document.anchors[i].parentElement.tagName;
  277.          var oAnchor= document.anchors[i].id.toLowerCase();
  278.          
  279. // insert RELTOPICS icons
  280. //       if (oAnchor=="reltopics")          
  281. //            if (document.anchors[i].children.tags("IMG")(0) && document.anchors[i].children.tags("IMG")(0).className.toLowerCase() == "reltopics")
  282. //                    imgInsert= "";    // not to re-insert when persistent
  283. //            else  imgInsert= "<img class='alert' src='"+relTopicsImg+"'>" + imgSpace;
  284.             
  285. // insert SHORTCUT icons
  286.        if (oAnchor=="shortcut") {    
  287.             document.anchors[i].title= sShortcutTip;     
  288.             if (document.anchors[i].children.tags("IMG")(0) && document.anchors[i].children.tags("IMG")(0).className.toLowerCase() == "shortcut")
  289.                     imgInsert= "";    // not to re-insert when persistent
  290.             else  imgInsert= "<img class='shortcut' src='"+shortcutCold+"' "+ imgStyleRTL+ ">" + imgSpace;
  291.         }    
  292.                       
  293. // insert POPUP icons
  294.        else if (oAnchor=="wpopup" || oAnchor=="wpopupweb") document.anchors[i].title= sPopupTip;
  295.        else if (document.anchors[i].className.toLowerCase()=="popupicon")
  296.             if (document.anchors[i].children.tags("IMG")(0) && document.anchors[i].children.tags("IMG")(0).className.toLowerCase() == "popup")
  297.                    imgInsert= "";    // not to re-insert when persistent
  298.             else imgInsert= "<img class='popup' src='"+popupCold+"'>" + imgSpace;
  299.  
  300. // insert EXPAND icons 
  301.        else if (oAnchor=="expand") {
  302.               document.anchors[i].title= sExpandTip;
  303.               if (document.anchors[i].children.tags("IMG")(0) && document.anchors[i].children.tags("IMG")(0).className.toLowerCase() == "expand")
  304.                   imgInsert= "";     // not to re-insert when persistent      
  305.               else{ 
  306.                   if (document.anchors[i].parentElement.offsetLeft == document.anchors[i].offsetLeft) {
  307.                       imgSpace= "<span class='space' style='width:0'></span>";     
  308.                       if (isRTL){ document.anchors[i].parentElement.style.marginRight= "1.5em";  imgStyle=" style=margin-right:'-1.5em'";}
  309.                       else { document.anchors[i].parentElement.style.marginLeft= "1.5em";  imgStyle=" style=margin-left:'-1.5em'";}
  310.                   }      
  311.                   imgInsert= "<img class='expand' src='"+ closed +"' "+imgStyle+">" +imgSpace;
  312.               }
  313.        }
  314.  
  315. // insert thumbnail images       
  316.        else if (oAnchor=="thumbnail"  || oAnchor=="thumbnailweb"){ 
  317.             var sAltText = document.anchors[i].innerHTML;
  318.  
  319.             var sThumbnailText = document.anchors[i].title; 
  320.             var oImg = document.anchors[i].href.toLowerCase();
  321.                   if (oAnchor=="thumbnail") 
  322.                          var sThumbnailImg= moniker + getURL(oImg);
  323.                   else var sThumbnailImg = document.anchors[i].href.toLowerCase();
  324.                 document.anchors[i].outerHTML = "<DIV id='thumbDiv' class='thumbnail'>"+document.anchors[i].outerHTML+"</div>";
  325.                 document.anchors[i].innerHTML = "<img class='thumbnail' src='" + sThumbnailImg + "' alt= ' " + sAltText + "'><p>" +sThumbnailText+"</p>";
  326.                 
  327.                   if (isRTL) thumbDiv.style.styleFloat= "right";
  328.            }
  329.         
  330.         document.anchors[i].innerHTML = imgInsert + document.anchors[i].innerHTML;
  331.        if (isRTL) document.anchors[i].dir="rtl";
  332.    }
  333. }
  334.  
  335.  
  336. //***** onclickTriage ****************************************************************************************
  337. // redirects to the appropriate function based on the ID of the clicked <A> tag.
  338.  
  339. function onclickTriage(){
  340. var e= window.event.srcElement;
  341.  
  342. //  if the innerHTML in the <a> tag is encapsulated by a style tag or hightlighted in the word seach,
  343. //  the parentElement is called.
  344.  
  345.     for (var i=0; i < 5; i++)
  346.            if (e.tagName!="A" && e.parentElement!=null) e= e.parentElement;
  347.     eID= e.id.toLowerCase();
  348.                 
  349.     if (popupOpen) closePopup();
  350.     
  351.  // expand image in a new window
  352.     if (eID=="thumbnail" || eID=="pophtm") popNewWindow(e);
  353.     else if (eID=="thumbnailweb") callThumbnailWeb(e);
  354.     else if (eID=="wpopup")    callPopup(e);
  355.     else if (eID=="wpopupweb") callPopupWeb(e);
  356.     else if (eID=="shortcut")  callShortcut(e);
  357.     else if (eID=="reltopics") callRelatedTopics(e);
  358.     else if (eID=="altloc")    callAltLocation(e);
  359.     else if (eID=="expand")    callExpand(e);
  360.     return;
  361. }
  362.  
  363.  
  364. //*** gettingHot ****************************************************************************************
  365. // Makes all the required changes for mouseover.
  366.  
  367. function gettingHot() {
  368. var e = window.event.srcElement;
  369.   
  370.   if (e.id.toLowerCase()=="cold")  e.id ="hot";
  371.   else if (e.src== previousCold)  e.src = previousHot;
  372.   else if (e.className.toLowerCase()=="navbar" && e.children.tags("IMG")(0).src== previousCold)  e.children.tags("IMG")(0).src= previousHot;
  373.   else if (e.src== nextCold)  e.src = nextHot;
  374.   else if (e.className.toLowerCase()=="navbar" && e.children.tags("IMG")(0).src== nextCold)  e.children.tags("IMG")(0).src= nextHot;
  375.   
  376.   else if (e.className.toLowerCase()=="shortcut" && e.tagName=="IMG")  e.src = shortcutHot;            //<img> tags have a class
  377.   else if (e.id.toLowerCase()=="shortcut")  e.children.tags("IMG")(0).src = shortcutHot;            //<a> tags have an ID
  378.   
  379.   else if (e.className.toLowerCase()=="popup" && e.tagName=="IMG")  e.src = popupHot;            //<img> tags have a class
  380.   else if (e.className.toLowerCase()=="popupicon")  e.children.tags("IMG")(0).src = popupHot;            //<a> tags have an ID
  381.   
  382.   else if ((e.className.toLowerCase()=="expand" && e.tagName=="IMG") ||( e.id.toLowerCase()=="expand")) expandGoesHot(e);
  383.  
  384. }
  385.  
  386. //*** gettingCold **************************************************************************************
  387. // Initial state for mouseout.
  388.  
  389. function gettingCold() {
  390. var e = window.event.srcElement;
  391.  
  392.   if (e.id.toLowerCase()=="hot")  e.id ="cold";
  393.   else if (e.src== previousHot)  e.src = previousCold;
  394.   else if (e.className.toLowerCase()=="navbar" && e.children.tags("IMG")(0).src== previousHot)  e.children.tags("IMG")(0).src= previousCold;
  395.   else if (e.src== nextHot)  e.src = nextCold;
  396.   else if (e.className.toLowerCase()=="navbar" && e.children.tags("IMG")(0).src== nextHot)  e.children.tags("IMG")(0).src= nextCold;
  397.   
  398.   else if (e.className.toLowerCase()=="shortcut" && e.tagName=="IMG")   e.src = shortcutCold;        //<img> tags have a class
  399.   else if (e.id.toLowerCase()=="shortcut")  e.children.tags("IMG")(0).src= shortcutCold;             //<a> tags have an ID
  400.   
  401.   else if (e.className.toLowerCase()=="popup" && e.tagName=="IMG")   e.src = popupCold;        //<img> tags have a class
  402.   else if (e.className.toLowerCase()=="popupicon")  e.children.tags("IMG")(0).src= popupCold;             //<a> tags have an ID
  403.   
  404.   else if ((e.className.toLowerCase()=="expand" && e.tagName=="IMG") ||( e.id.toLowerCase()=="expand")) expandGoesCold(e);
  405. }
  406.  
  407. //****************************************** OBJECT CONSTRUCTION **************************************
  408. //*****************************************************************************************************
  409. //  Uses an A tag to pass parameters between an HTML page and this script.
  410. //  Creates an ActiveX Object from these parameters, appends the Object to the end of the page,
  411. //  and clicks it. These objects relate to HTMLHelp environment and information about them can be found on the http://HTMLHelp site.
  412.  
  413. //  Object construction variables *********************************************************************
  414.  
  415. var sParamCHM,sParamFILE, sParamEXEC, sParamMETA,iEND;
  416. var sActX_HH= " type='application/x-oleobject' classid='clsid:adb880a6-d8ff-11cf-9377-00aa003b7a11' ";
  417.  
  418.  
  419. //*** callPopup ***************************************************************************************
  420. // creates an object from an <A> tag HREF, the object inserts a winhelp popup
  421. // called by: <A ID="wPopup" HREF="HELP=@@file_name.hlp@@ TOPIC=@@topic#@@">@@Popup text@@</A>
  422.  
  423. function callPopup(eventSrc) {
  424. var e= eventSrc;
  425. var eH= unescape(e.href);
  426. var eH_= eH.toLowerCase();
  427.        event.returnValue = false;
  428.                                                                
  429.   var iTOPIC      = eH_.lastIndexOf("topic=");
  430.         if (iTOPIC==-1) return;
  431.         sParamTOPIC = eH.substring((iTOPIC+6),eH.length);          // extracts the topic for item2
  432.         
  433.   var iHELP       = eH_.lastIndexOf("help=");
  434.         if (iHELP==-1) return;
  435.         sParamHELP = eH.substring(iHELP+5,iTOPIC);            // extracts the help file for item1
  436.         
  437.         if (document.hhPopup) document.hhPopup.outerHTML = "";    // if hhPopup object exists, clears it
  438.  
  439.  
  440.  var  h= "<object id='hhPopup'"+ sActX_HH + "STYLE='display:none'><param name='Command' value='WinHelp, Popup'>";
  441.       h= h + "<param name='Item1' value='" + sParamHELP + "'><param name='Item2' value='" + sParamTOPIC + "'></object>";
  442.         
  443.         document.body.insertAdjacentHTML("beforeEnd", h);     
  444.         document.hhPopup.hhclick();
  445. }
  446.  
  447.  
  448. //*** callAltLocation******************************************************************************
  449. // creates an object from an <A> tag HREF, the object will navigate to the alternate location if the first location is not found.
  450. // called from: <A ID="altLoc" HREF="CHM=@@1st_chm_name.chm;Alt_chm_name.chm@@  FILE=@@1st_file_name.htm;Alt_file_name.htm@@">@@Link text here@@</A>
  451.    
  452.  
  453. function callAltLocation(eventSrc) {
  454. var e= eventSrc;
  455. var eH= unescape(e.href);
  456. var eH_= eH.toLowerCase();
  457. var sFILEarray,sCHMarray;
  458.      event.returnValue = false;
  459.      
  460.   var sParamTXT= e.innerHTML;
  461.       sParamTXT= sParamTXT.replace(semicolon,"");
  462.                                        
  463.   var iFILE = eH_.lastIndexOf("file=");
  464.         if (iFILE==-1) return;
  465.         sParamFILE= eH.substring((iFILE+5),eH.length);                  // extracts the 2 HTM files
  466.         sParamFILE= sParamFILE.replace(spaces,"");
  467.         iSPLIT= sParamFILE.match(semicolon);
  468.         if (iSPLIT)
  469.               sFILEarray = sParamFILE.split(";");                                        // separates the 2 HTM files
  470.         else return;
  471.           
  472.   var iCHM  = eH_.lastIndexOf("chm=");
  473.         if(iCHM==-1) return;
  474.         else         sParamCHM = eH.substring(iCHM+4,iFILE);            // extracts the 2 CHM's
  475.         sParamCHM= sParamCHM.replace(spaces,"");
  476.         iSPLIT= sParamCHM.match(semicolon);
  477.         if (iSPLIT)
  478.             sCHMarray= sParamCHM.split(";");                                    // separates the 2 CHM's
  479.         else return;
  480.         
  481.         sParamFILE= moniker + sCHMarray[0]+ "::/" + sFILEarray[0] + ";" + moniker + sCHMarray[1]+ "::/" + sFILEarray[1];
  482.                 
  483.         if (document.hhAlt) document.hhAlt.outerHTML = "";                // if hhAlt object exists, clears it
  484.  
  485.  
  486.   var h= "<object id='hhAlt'"+ sActX_HH + "STYLE='display:none'><PARAM NAME='Command' VALUE='Related Topics'>";
  487.       h= h + "<param name='Item1' value='" + sParamTXT +";" + sParamFILE + "'></object>";
  488.     
  489.         document.body.insertAdjacentHTML("beforeEnd", h); 
  490.         document.hhAlt.hhclick();
  491. }
  492.  
  493.  
  494. //*** callRelatedTopics******************************************************************************
  495. // creates an object from an <A> tag HREF, the object inserts a popup of the related topics to select
  496. // called from: <A ID="relTopics" HREF="CHM=@@chm_name1.chm;chm_name2.chm@@ META=@@a_filename1;a_filename2@@">Related Topics</A>
  497.    
  498.  
  499. function callRelatedTopics(eventSrc) {
  500. var e= eventSrc;
  501. var eH= unescape(e.href);
  502. var eH_= eH.toLowerCase();
  503.      event.returnValue = false;
  504.                                        
  505.   var iMETA = eH_.lastIndexOf("meta=");
  506.         if (iMETA==-1) return;
  507.         sParamMETA = eH.substring((iMETA+5),eH.length);              // extracts the META keywords for item2
  508.         
  509.   var iCHM  = eH_.lastIndexOf("chm=");
  510.         if(iCHM==-1) sParamCHM = "";
  511.         else         sParamCHM = eH.substring(iCHM+4,iMETA);            // extracts the CHM files for item1
  512.     
  513.         if (document.hhRel) document.hhRel.outerHTML = "";            // if hhRel object exists, clears it
  514.  
  515.  
  516.   var h= "<object id='hhRel'"+ sActX_HH + "STYLE='display:none'><param name='Command' value='ALink,MENU'>";
  517.       h= h + "<param name='Item1' value='" + sParamCHM + "'><param name='Item2' value='" + sParamMETA + "'></object>";
  518.     
  519.         document.body.insertAdjacentHTML("beforeEnd", h);     
  520.         document.hhRel.hhclick();
  521. }
  522.  
  523. //*** popNewWindow***************************************************************************************
  524. // creates an object from an <A> tag HREF, the object then opens a new window from the image URL found in the HREF
  525. // called from: <a id="thumbnail" title="Enlarge figure" href="CHM=NTArt.chm FILE=@@image_name.gif@@">@@alt text here@@</A>
  526. // the thumbnail image is loaded by loadPage();
  527.  
  528.  
  529. function popNewWindow(eventSrc) {
  530. var eH= eventSrc.href;
  531.       event.returnValue = false;
  532.       
  533.  // extracts the thumbnail image URL from the <a> tag HREF
  534.     sParamFILE =  getURL(eH);
  535.     if (sParamFILE=="") return;
  536.        
  537.  // if the hhWindow object exists, clears it
  538.     if (document.hhWindow) document.hhWindow.outerHTML = "";        
  539.         
  540. var  h =  "<object id='hhWindow'"+ sActX_HH +" STYLE='display:none'><param name='Command' value='Related Topics'>";
  541.      h = h + "<param name='Window' value='$global_largeart'><param name='Item1' value='$global_largeart;" + moniker + sParamFILE+ "'> </object>";
  542.     
  543.      document.body.insertAdjacentHTML("beforeEnd", h);
  544.      document.hhWindow.hhclick();
  545. }
  546.  
  547. //*** callShortcut ***************************************************************************************
  548. // creates an object from an <A> tag, the object then calls the executable code
  549. // called from: <A ID="shortcut" HREF="EXEC=@@executable_name.exe@@ CHM=ntshared.chm FILE=@@error_file_name.htm@@">@@Shortcut text@@</A>
  550. // the shortcut image is loaded by loadInitialImg();
  551.  
  552. function callShortcut(eventSrc) {
  553. var e= eventSrc;
  554. var eH= unescape(e.href);
  555. var eH_= eH.toLowerCase();
  556.  
  557.  
  558.     event.returnValue = false;
  559.               
  560.  // extracts the error file URL from the <a> tag HREF
  561.     iEND= eH.length;
  562.     sParamFILE =  getURL(eH);
  563.     
  564. //code added to redirect if shortcut is nonexisting
  565.  
  566. var con_mmc;
  567. var doc_mmc;
  568.  
  569.     doc_mmc = sParamFILE.toLowerCase();
  570.     con_mmc = doc_mmc.indexOf("mmc.chm");
  571.     if (con_mmc != -1){
  572.         doc_mmc = " " + document.location;
  573.         con_mmc = doc_mmc.indexOf("mmc.chm");
  574.         if (con_mmc == -1){
  575.             sParamFILE = "ntshared.chm::/alt_url_deux.htm"
  576.             }
  577.         }
  578. // *************************************************
  579.         
  580.      
  581.      
  582. var iEXEC = eH_.lastIndexOf("exec="); 
  583.         if (iEXEC==-1) return;
  584.         else sParamEXEC = eH.substring(iEXEC+5,iEND);                // extracts the executable for item1
  585.         
  586.         if (document.hhShortcut) document.hhShortcut.outerHTML = "";            // if the hhShortcut object exists, clears it
  587.     
  588. var  h =  "<object id='hhShortcut'"+ sActX_HH +" STYLE='display:none'> <param name='Command' value='ShortCut'>";
  589.      if(sParamFILE != "") h = h + "<param name='Window' value='" + moniker + sParamFILE+ "'>";
  590.      h = h + "<param name='Item1' value='" + sParamEXEC + "'><param name='Item2' value='msg,1,1'></object>";
  591.  
  592.         document.body.insertAdjacentHTML("beforeEnd", h);
  593.         document.hhShortcut.hhclick();
  594. }
  595.  
  596. //****************************************  EXPAND FUNCTIONS *********************************************************
  597. //********************************************************************************************************************
  598.  
  599. //**  callExpand **************************************************************************************************
  600. //  This expands & collapses (based on current state) "expandable" nodes as they are clicked.
  601. //  Called by: <A ID="expand" href="#">@@Hot text@@</A>
  602. //  Followed by:  <div class="expand">
  603.  
  604. function callExpand(eventSrc) {
  605.  
  606. var e= eventSrc;
  607.     event.returnValue = false;                    // prevents navigating for <A> tag
  608.     
  609. var oExpandable = getExpandable(e); 
  610. var oImg = getImage(e);
  611.  
  612.      if (oExpandable.style.display == "block")
  613.           doCollapse(oExpandable, oImg);
  614.      else doExpand(oExpandable, oImg);
  615. }
  616.  
  617. //** expandGoesHot *********************************************************************************************
  618. // Returns expand image to hot. 
  619.  
  620. function expandGoesHot(eventSrc){
  621. var e= eventSrc;
  622.     
  623. var oExpandable = getExpandable(e);  
  624. var oImg = getImage(e);
  625.  
  626.     if (oExpandable.style.display == "block") oImg.src = expandHot;
  627.     else oImg.src = closedHot;
  628. }
  629.  
  630.  
  631. //** expandGoesCold *********************************************************************************************
  632. // Returns expand image to cold.
  633.  
  634. function expandGoesCold(eventSrc){
  635. var e= eventSrc;
  636.  
  637. var oExpandable = getExpandable(e);   
  638. var oImg = getImage(e);
  639.  
  640.     if (oExpandable.style.display == "block") oImg.src = expand;
  641.     else oImg.src = closed;
  642. }
  643.  
  644.  
  645. //** getExpandable *****************************[used by callExpand, expandGoesHot, expandGoesCold]*******
  646. //  Determine if the element is an expandable node or a child of one.  
  647.  
  648. function getExpandable(eventSrc){
  649. var  e = eventSrc;
  650. var iNextTag, oExpandable;
  651.  
  652.        for (var i=1;i<4; i++){
  653.                iNextTag=    e.sourceIndex+e.children.length+i;
  654.               oExpandable= document.all(iNextTag);
  655.               if (oExpandable.className.toLowerCase()=="expand" || iNextTag == document.all.length)
  656.                    break;
  657.        }
  658.        return oExpandable;
  659. }
  660.  
  661. //**  getImage ***********************************[used by callExpand, expandGoesHot, expandGoesCold]*******
  662. //  Find the first image in the children of the current srcElement.   
  663. // (allows the  image to be placed anywhere inside the <A HREF> tag)
  664.  
  665. function getImage(header) {
  666. var oImg = header;
  667.  
  668.        if(oImg.tagName != "IMG") oImg=oImg.children.tags("IMG")(0);
  669.        return oImg;
  670. }
  671.  
  672.  
  673. //****  expandAll *******************************************************************************************************
  674. //  Will expand or collapse all "expandable" nodes when clicked. [calls closeAll()]
  675. //  called by: <A HREF="#" onclick="expandAll();">expand all</A>
  676.  
  677. var stateExpand = false;    //applies to the page 
  678.  
  679. //**** ****************************************************************************************************************
  680.  
  681. function expandAll() {
  682. var oExpandToggle, oImg;
  683. var expandAllMsg = "expand all";                    //message returned when CloseAll() is invoked
  684. var closeAllMsg = "close all";                        //message returned when ExpandAll() is invoked
  685. var e= window.event.srcElement;
  686.        event.returnValue = false;
  687.  
  688.        for (var i=0; i< document.anchors.length; i++){
  689.                oExpandToggle = document.anchors[i];
  690.          
  691.                 if (oExpandToggle.id.toLowerCase() == "expand"){ 
  692.                      oExpandable = getExpandable(oExpandToggle);  
  693.                      oImg = getImage(oExpandToggle);
  694.              
  695.                      if (stateExpand == true) doCollapse(oExpandable, oImg);
  696.                      else                     doExpand(oExpandable, oImg);
  697.                 }
  698.        }
  699.        if (stateExpand == true) {
  700.             stateExpand = false;
  701.             e.innerText= expandAllMsg;
  702.        }
  703.        else {
  704.             stateExpand = true;
  705.             e.innerText= closeAllMsg;
  706.        }
  707. }
  708.  
  709.  
  710. //****  doExpand *******************************************************************************************************
  711. //  Expands expandable block & changes image
  712.     
  713. var redo = false;    
  714. function doExpand(oToExpand, oToChange) {
  715. var oExpandable= oToExpand;
  716. var oImg= oToChange;
  717.     
  718.     oImg.src = expand;
  719.     oExpandable.style.display = "block";
  720.     
  721.     if (!redo && !isIE5) {
  722.         redo = true;
  723.         focus(oToExpand);
  724.         doExpand(oToExpand, oToChange);
  725.         }
  726.     
  727. }
  728.  
  729.  
  730. //****  doCollapse *****************************************************************************************************
  731. //  Collapses expandable block & changes image
  732.     
  733. function doCollapse(oToCollapse, oToChange) {
  734. if (printing == "TRUE") return;
  735. var oExpandable= oToCollapse;
  736. var oImg= oToChange;
  737.  
  738.     oExpandable.style.display = "none";
  739.     oImg.src = closed;
  740. }
  741.  
  742. //*******************************************************************************************************
  743. //******* WEB  FUNCTIONS **************************************************************************
  744. //*******************************************************************************************************
  745.  
  746. //**** callThumbnailWeb **************************************************************************************
  747.  
  748. function callThumbnailWeb(eventSrc) {
  749. var e= eventSrc;
  750.        event.returnValue = false;
  751.                     
  752. var thumbnailWin= window.open (e.href, "$global_largeart",  "height=450, width=600, left=10, top=10, dependent=yes, resizable=yes, status=no, directories=no, titlebar=no, toolbar=yes, menubar=no, location=no","true");
  753.  
  754. thumbnailWin.document.write ("<html><head><title>Windows 2000</title></head><body><img src='"+e.href+"'></body></html>");
  755.  
  756. return;
  757. }
  758.  
  759. //*********************************************************************************************************
  760. //*********************************************************************************************************
  761.                                 
  762.                                 
  763. var popupOpen= false;                //state of popups
  764. var posX, posY;                        //coordinates of popups
  765. var oPopup;                            //object to be used as popup content
  766.  
  767. //**** callPopupWeb **************************************************************************************
  768. // the web popups have been converted from the object winHelp popup for the web.
  769. // called by: <A ID="wPopupWeb" HREF="#">@@Popup text@@</A>
  770. // followed by: <div class="popup">Popup content</div>
  771.  
  772.  
  773. function callPopupWeb(eventSrc) {
  774. var e= eventSrc;
  775.   
  776.   // find the popup <div> that follows <a id="wPopupWeb"></a>
  777.   findPopup(e);
  778.   positionPopup(e)
  779.  
  780.   oPopup.style.visibility = "visible";
  781.   popupOpen = true;
  782.  
  783.   return;
  784. }
  785.  
  786. //**** findPopup ****************************************************************************************
  787.  
  788. function findPopup(oX){
  789. var e= oX;
  790. var iNextTag;
  791.     
  792.     for (var i=1;i<4; i++){
  793.          iNextTag=    e.sourceIndex + i;
  794.          oPopup= document.all(iNextTag);
  795.          if (oPopup.className.toLowerCase()=="popup" || iNextTag == document.all.length)
  796.              break;
  797.     }
  798.     if (iNextTag != document.all.length) {
  799.         posX = window.event.clientX; 
  800.         posY = window.event.clientY + document.body.scrollTop+10;
  801.     }
  802.     else closePopup();
  803. }
  804.  
  805. //****  positionPopup ************************************************************************************
  806. // Set size and position of popup.
  807. // If it is off the page, move up, but not past the very top of the page.
  808.  
  809. function positionPopup(oX){
  810. var e= oX;    
  811. var popupOffsetWidth = oPopup.offsetWidth;
  812.  
  813. //determine if popup will be offscreen to right
  814. var rightlimit = posX + popupOffsetWidth;
  815.  
  816.   if (rightlimit >= document.body.clientWidth) 
  817.       posX -= (rightlimit - document.body.clientWidth);
  818.   if (posX < 0) posX = 0;
  819.     
  820. //position popup
  821.   oPopup.style.top = posY;
  822.   oPopup.style.left = posX;
  823.  
  824. var pageBottom = document.body.scrollTop + document.body.clientHeight;
  825. var popupHeight = oPopup.offsetHeight;
  826.   
  827.   if (popupHeight + posY >= pageBottom) {
  828.       if (popupHeight <= document.body.clientHeight)
  829.           oPopup.style.top = pageBottom - popupHeight;
  830.       else
  831.            oPopup.style.top = document.body.scrollTop;
  832.   }
  833. }
  834.  
  835. //**** closePopup ****************************************************************************************
  836. // Close Popup
  837. function closePopup() {
  838.  
  839.   oPopup.style.visibility = "hidden";
  840.   popupOpen = false;
  841.   return;
  842. }
  843.  
  844. //*********************************************  GENERAL FUNCTIONS ************************************************
  845. //**************************************************************************************************************************
  846.  
  847. //***ajustImg *************************************************************************************************************
  848. // expands an image to the with of the window or shrinks it to 90px
  849.  
  850. function ajustImg(eventSrc) {
  851. var e= eventSrc;
  852. var fullWidth= document.body.offsetWidth;
  853.  
  854.     fullWidth = fullWidth - 50;
  855.     if (e.style.pixelWidth==90)
  856.          e.style.pixelWidth=fullWidth;
  857.     else e.style.pixelWidth=90;
  858. }
  859.  
  860.  
  861. //**  getURL **************************************[used in callShortcut, popNewWindow& loadPage]********
  862. // extracts the file location (CHM::/HTM) URL 
  863.  
  864. function getURL(sHREF) {
  865. var spaces= /\s/g
  866. var eH = unescape(sHREF);
  867.     eH = eH.replace(spaces,""); 
  868.  
  869. var eH_= eH.toLowerCase();
  870. var sParamFILE= "";
  871. var sParamCHM= "";
  872.  
  873. var iFILE= eH_.lastIndexOf("file=");
  874.     if (iFILE!=-1){
  875.         iEND= iFILE +1;
  876.         sParamFILE = eH.substring(iFILE+5,eH.length);
  877.     }  
  878.  
  879. var iCHM  = eH_.lastIndexOf("chm=");
  880.     if (iCHM!=-1){
  881.         iEND  = iCHM +1;                             // iEND used by callShortcut
  882.  
  883.         sParamCHM = eH.substring(iCHM+4, iFILE);
  884.         sParamFILE= sParamCHM+"::/"+sParamFILE;
  885.     }    
  886.     return sParamFILE;
  887. }
  888.  
  889. //****************************************************************************************************************************
  890. //********************************************  IE5 PERSISTENCE  *************************************************************
  891. //****************************************************************************************************************************
  892.  
  893. var oTD,iTD;         // persistence
  894.  
  895. //****** Persistence for userData ********************************************************************************************* 
  896.  
  897. function getChecklistState(){ 
  898.  
  899.  var pageID= addID();
  900.  
  901.     if (checklist.all== "[object]") {
  902.     oTD=checklist.all.tags("INPUT");
  903.     iTD= oTD.length;
  904.         }
  905.     else
  906.         {
  907.         printing = "TRUE";
  908.         isPersistent = false;
  909.         return;
  910.         }
  911.  
  912.     if (iTD == 0){
  913.         printing = "TRUE";
  914.         isPersistent = false;
  915.         return;
  916.         }
  917.     
  918. // routine added to fix a bug in the ocx 06/14/99    
  919.      lct = document.location + ".";
  920.      xax = 10;
  921.      xax = lct.indexOf("mk:@MSITStore");
  922.      if (xax != -1) {
  923.          lct = "ms-its:" + lct.substring(14,lct.length-1);
  924.         // alert("before reload : " + document.location);
  925.         // alert("replace with : " + lct);
  926.         isPersistent = false;
  927.         document.location.replace(lct);
  928.         isPersistent = true;
  929.         // alert("after reload : " + document.location);
  930.         }     
  931.      else
  932.          {      
  933.          checklist.load("oXMLStore");
  934.         }
  935. // routine added to fix a bug in the ocx 06/14/99
  936.     if (checklist.getAttribute("sPersist"+pageID+"0"))    
  937.     for (i=0; i<iTD; i++){
  938.  
  939.          if (oTD[i].type =="checkbox" || oTD[i].type =="radio"){
  940.          checkboxValue= checklist.getAttribute("sPersist"+pageID+i);
  941.         
  942.          if (checkboxValue=="yes") oTD[i].checked=true;
  943.          else oTD[i].checked=false;
  944.          }// if
  945.          if (oTD[i].type =="text")              
  946.               oTD[i].value= checklist.getAttribute("sPersist"+pageID+i);
  947.      }// for
  948. } // end persistence
  949.  
  950. //**  saveChecklistState *************************************************************************************************************
  951. function saveChecklistState(){
  952. var pageID= addID(); 
  953.  
  954.         if (!isPersistent) return; 
  955.          //  you will need this           document.location
  956.         for (i=0; i<iTD; i++){
  957.  
  958.                 if (oTD[i].type =="checkbox" || oTD[i].type =="radio"){
  959.                  if (oTD[i].checked) checkboxValue="yes";
  960.                  else checkboxValue="no";
  961.                  
  962.                  checklist.setAttribute("sPersist"+pageID+i, checkboxValue);
  963.              }// if
  964.             
  965.               if (oTD[i].type =="text") 
  966.                  checklist.setAttribute("sPersist"+pageID+i, oTD[i].value);
  967.          }    // for
  968.  
  969.  // routine added to fix a bug in the ocx 06/14/99    
  970.      lct = document.location + ".";
  971.      xax = 10;
  972.      xax = lct.indexOf("mk:@MSITStore");
  973.      if (xax != -1) {
  974.          lct = "ms-its:" + lct.substring(14,lct.length-1);
  975.         // alert("before reload : " + document.location);
  976.         // alert("replace with : " + lct);
  977.         isPersistent = false;
  978.         document.location.replace(lct);
  979.         isPersistent = true;
  980.         // alert("after reload : " + document.location);
  981.         }     
  982.      else
  983.          {      
  984.          checklist.save("oXMLStore");
  985.         }
  986. // routine added to fix a bug in the ocx 06/14/99
  987.      
  988. }//end function
  989.  
  990. //**  resizeDiv *******************************[used with callPopupWeb, setPreviousNext}****************************************************
  991. //  resize the page when the <div class=nav></div> && <div class=text></div> are found
  992. function resizeDiv(){
  993. if (printing == "TRUE") return;
  994. var oNav = document.all.item("nav");
  995. var oText= document.all.item("text");
  996.  
  997.     if (popupOpen) closePopup();
  998.     if (oText == null) return;
  999.     if (oNav != null){
  1000.         document.all.nav.style.width= document.body.offsetWidth;
  1001.         document.all.text.style.width= document.body.offsetWidth-4;
  1002.         document.all.text.style.top= document.all.nav.offsetHeight;
  1003.         if (document.body.offsetHeight > document.all.nav.offsetHeight)
  1004.             document.all.text.style.height= document.body.offsetHeight - document.all.nav.offsetHeight;
  1005.          else document.all.text.style.height=0; 
  1006.   }
  1007. }
  1008.  
  1009. //**  addID *************************************************************************************************************
  1010. function addID(){
  1011.  
  1012. var locID = document.location.href; 
  1013. var iHTM = locID.lastIndexOf(".htm");
  1014. var iName=locID.lastIndexOf("/");
  1015.       locID = locID.substring(iName+1,iHTM);
  1016.     
  1017.     return locID;
  1018. }    
  1019. //** set_to_print ***************
  1020. function set_to_print(){
  1021.     var i;
  1022.     printing = "TRUE";
  1023.     
  1024.     if (window.text) {
  1025.         if (!window.text.style){
  1026.             scroller = "FALSE";
  1027.             }
  1028.         else
  1029.             {
  1030.             document.all.text.style.height = "auto";
  1031.             scroller = "TRUE";
  1032.             }
  1033.         }
  1034.         
  1035.     for (i=0; i < document.all.length; i++){
  1036.         if (document.all[i].id == "expand") {
  1037.             callExpand(document.all[i]);
  1038.             single = "TRUE";
  1039.             }
  1040.         if (document.all[i].tagName == "BODY") {
  1041.             document.all[i].scroll = "auto";
  1042.             }
  1043.         if (document.all[i].tagName == "A" && scroller != "TRUE") {
  1044.             document.all[i].outerHTML = "<A HREF=''>" + document.all[i].innerHTML + "</a>";
  1045.             }
  1046.         }
  1047.  
  1048. }
  1049. //** used to reset a page if needed ********************
  1050. function reset_form(){
  1051.  
  1052.     if (single == "TRUE") document.location.reload();
  1053.     if (scroller = "TRUE") document.location.reload();
  1054.     
  1055. }
  1056.  
  1057.     
  1058. //** on error routine *********************************
  1059. function errorHandler() {
  1060.   // alert("Error Handled");
  1061.   return true;
  1062. }
  1063.