	
      function doHilite()  {
        var e = window.event.srcElement;
        if (e.className == "tun") {
          e.className = "tover";
        }
        else if (e.className == "tover") {
            e.className = "tun";
        }
        else if (e.className == "ph1") {
            e.className = "pover1";
        }
        else if (e.className == "ph2") {
            e.className = "pover2";
        }
        else if (e.className == "pover1") {
            e.className = "ph1";
        }
        else if (e.className == "pover2") {
            e.className = "ph2";
        }

        window.event.cancelBubble = true;
      }

      function ChangeTab(eRow)  {
        var tabs = eRow.cells;
        for (var i = 0; i < tabs.length; i++) {
          var oldTab = tabs[i];
          if (oldTab.className == "tsel") {
            break;
          }
        }
        oldTab.className = "tun";
        var oldContent = getAssociated(oldTab);
        oldContent.style.display = "none";

        var newTab = window.event.srcElement;
        newTab.className ="tsel";
        var newContent = getAssociated(newTab);
        newContent.style.display = "block";

        window.event.cancelBubble = true;
      }

      function hideShowGroup(e)  {
        var theGroup = e.children[0];
        if (theGroup.style.display == "none") {
          theGroup.style.display="block";
        }
        else { 
          theGroup.style.display="none";
        }

        window.event.cancelBubble = true;
      }

      function getAssociated(e) {
        if (e.tagName == "TD") {
          switch (e.id) {
            case "VBTab":
              return (VB);
            case "VBATab":
              return (VBA);
            case "CTab": 
              return (VCPP);
            case "DTab": 
              return (DELPHI);
            case "VBNetTab":
			        return (VBNET);
            case "CSharpTab":
			        return (CS);
			      case "JavaTab":
			        return (Java);
            case "OTab": 
              return (OTHER);
          }
        }
      }

      function position() {
        var e;
        e = document.all("thumbnail");
        if (e != null) {
          b = document.body;
          w1 = b.clientWidth - 80;
          w2 = w1 - thumbnail.width;
          var margin = Math.floor(w2 * .5);
          thumbnail.style.visibility = "hidden";
          thumbnail.style.marginLeft = margin;
          thumbnail.style.visibility = "visible";
        }
      }

      function ShowDownload()  {
        var sPath = window.location.pathname;
        var sHTM = ".htm";
        var sZipPath = sPath.replace(sHTM, ".zip");
        document.write("<A href='");
        document.write(sZipPath + "'><img src='/arcobjects/8.3/Graphics/Download.gif' border='0'> Download Now</img></A>");
      }

      function Feedback()  {
      //  if (top.fraTopic != null) {
      //    top.fraTopic.location = '/arcobjects/8.3/email.asp?Page=' + top.fraTopic.location;
      //  }  else {
      //    top.location = '/arcobjects/8.3/email.asp?Page=' + top.location;
      //  }
      }

function doSection (secNum){
//display the section if it's not displayed; hide it if it is displayed
if (secNum.style.display=="none"){secNum.style.display=""}
else{secNum.style.display="none"}
}

function noSection (secNum){
//remove the section when user clicks in the opened DIV
if (secNum.style.display==""){secNum.style.display="none"}
}