var tocTab = new Array();var ir=0;
tocTab[ir++] = new Array ("1", "Welcome to Skater manual", "0.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("2", "Authoring requirements", "authoringrequirements.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("3", "License Agreement", "licenseagreement.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("4", "Getting started", "gettingstarted.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("5", "Main Skater window", "mainxmlfoxwindow.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("6", "Command-line Interface", "5.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("7", "Options Tab", "treeeditpage.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("8", "Obfuscate Public Members", "grideditpage.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("9", "Benefits of names Obfuscation", "namesobfuscation.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("10", "Strings Encryption", "xsdschemaeditor.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("11", "Control Flow Algorithms", "relationshipsinterface.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("12", "Obfuscate XAML in WPF application", "XAML_WPF.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("13", "Linker Interface", "linker.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("14", "Licensing", "licensing.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("14.1", ".NET Licenser interface", "licenserinterface.htm", "", "ico9.gif", "ico9.gif");
tocTab[ir++] = new Array ("14.2", ".NET Licenser API", "licenserapi.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("14.2.1", ".NET Licenser API assembly Overview", "api1.htm", "", "ico9.gif", "ico9.gif");
tocTab[ir++] = new Array ("14.2.2", "Web Service", "api2.htm", "", "ico9.gif", "ico9.gif");
tocTab[ir++] = new Array ("14.2.3", "Implement Software Activation and Authorization using .NET Licenser API assembly", "api3.htm", "", "ico9.gif", "ico9.gif");
tocTab[ir++] = new Array ("14.2.4", "Step by Step Procedure to implement Software Activation", "api4.htm", "", "ico9.gif", "ico9.gif");
tocTab[ir++] = new Array ("14.2.5", "Emailing your customers", "api5.htm", "", "ico9.gif", "ico9.gif");
tocTab[ir++] = new Array ("14.2.6", "Distribute your Visual Studio .Net application", "api6.htm", "", "ico9.gif", "ico9.gif");
tocTab[ir++] = new Array ("14.2.7", "Licenser Class Members", "api7.htm", "", "ico9.gif", "ico9.gif");
tocTab[ir++] = new Array ("15", "Code Extension", "codeextension.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("16", ".NET Cryptor utility", "cryptor.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("17", "Assembly Settings usage", "10.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("18", "Integrate Skater into Visual Studio .NET", "integrate.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("19", "Using Custom Attributes from System.Reflection namespace", "customattribute.htm", "", "ico1.gif", "ico2.gif");
tocTab[ir++] = new Array ("20", "How to Order?", "order.htm", "", "ico1.gif", "ico2.gif");
isContent = true,
isIndex = false,
showNumbers = false,
tocBehaviour = new Array(1,1),
tocScroll=false,
tocLinks = new Array(0,0);
var oldOnError = null;
var isDyn = navigator.userAgent.toLowerCase().indexOf("opera") == -1;
var isIE = navigator.appName.toLowerCase().indexOf("explorer") > -1;
var oldCurrentNumber = "", oldLastVisitNumber = "";
var toDisplay = new Array();
for (ir=0; ir<tocTab.length; ir++) {
toDisplay[ir] = tocTab[ir][0].split(".").length==1;
}
function windowErr() {
isDyn = false;
$hmtoc.location.href = "content.htm";
window.onerror = oldOnError;
}
function reDisplay(currentNumber,tocChange,noLink,e) {
{ isIndex=false; isContent=true; }
if (currentNumber == "navIndex") { isContent=false; }
if (currentNumber == "navContent") { isIndex=false; isContent=true; }
if (e) {
ctrlKeyDown = (isIE) ? e.ctrlKey : (e.modifiers==2);
if (tocChange && ctrlKeyDown) tocChange = 2;
}
var currentNumArray = currentNumber.split(".");
var currentLevel = currentNumArray.length-1;
var currentIndex = 0;
if (currentNumber == "") currentNumber = top.location.href.substring(top.location.href.lastIndexOf("?")+1,top.location.href.length);
for (i=0; i<tocTab.length; i++) {
if ((tocTab[i][0] == currentNumber) || (tocTab[i][2] == currentNumber && tocTab[i][2] != "")) {
currentIndex = i;
currentNumber = tocTab[i][0];
currentNumArray = currentNumber.split(".");
currentLevel = currentNumArray.length-1;
break;
}
}
if (currentIndex < tocTab.length-1) {
nextLevel = tocTab[currentIndex+1][0].split(".").length-1;
currentIsExpanded = nextLevel > currentLevel && toDisplay[currentIndex+1];
}
else currentIsExpanded = false;
theHref = (noLink) ? "" : tocTab[currentIndex][2];
theTarget = tocTab[currentIndex][3];
for (i=1; i<tocTab.length; i++) {
if (tocChange) {
thisNumber = tocTab[i][0];
thisNumArray = thisNumber.split(".");
thisLevel = thisNumArray.length-1;
isOnPath = true;
if (thisLevel > 0) {
for (j=0; j<thisLevel; j++) {
isOnPath = (j>currentLevel) ? false : isOnPath && (thisNumArray[j] == currentNumArray[j]);
}
}
toDisplay[i] = (tocChange == 1) ? isOnPath : (isOnPath || toDisplay[i]);
if (thisNumber.indexOf(currentNumber+".")==0 && thisLevel > currentLevel) {
if (currentIsExpanded) toDisplay[i] = false;
else toDisplay[i] = (thisLevel == currentLevel+1);
}
}
}
if (isContent) {
if (!isDyn) {
if ($hmtoc.location.href.substring($hmtoc.location.href.lastIndexOf("/")+1,$hmtoc.location.href.length) != "content.htm") $hmtoc.location.href = "content.htm";
}
else {
oldOnError = window.onerror;
window.onerror = windowErr;
$hmtoc.document.clear();
$hmtoc.document.write("<html>\n\r<head></head>\n\r<style type=\"text/css\">\n\r       SPAN.heading1 { font-family: Verdana; font-weight: normal; font-size: 8pt; color: #000000; text-decoration: none }\n\r       SPAN.heading2 { font-family: Verdana; font-weight: normal; font-size: 8pt; color: #000000; text-decoration: none }\n\r       SPAN.heading3 { font-family: Verdana; font-weight: normal; font-size: 8pt; color: #000000; text-decoration: none }\n\r       SPAN.heading4 { font-family: Verdana; font-weight: normal; font-size: 8pt; color: #000000; text-decoration: none }\n\r       SPAN.heading5 { font-family: Verdana; font-weight: normal; font-size: 8pt; color: #000000; text-decoration: none }\n\r       SPAN.heading6 { font-family: Verdana; font-weight: normal; font-size: 8pt; color: #000000; text-decoration: none }\n\r\n\r       SPAN.hilight1 { font-family: Verdana; font-weight: normal; font-size: 8pt; color: #F2FFFC; background: #002682; text-decoration: none }\n\r       SPAN.hilight2 { font-family: Verdana; font-weight: normal; font-size: 8pt; color: #F2FFFC; background: #002682; text-decoration: none }\n\r       SPAN.hilight3 { font-family: Verdana; font-weight: normal; font-size: 8pt; color: #F2FFFC; background: #002682; text-decoration: none }\n\r       SPAN.hilight4 { font-family: Verdana; font-weight: normal; font-size: 8pt; color: #F2FFFC; background: #002682; text-decoration: none }\n\r       SPAN.hilight5 { font-family: Verdana; font-weight: normal; font-size: 8pt; color: #F2FFFC; background: #002682; text-decoration: none }\n\r       SPAN.hilight6 { font-family: Verdana; font-weight: normal; font-size: 8pt; color: #F2FFFC; background: #002682; text-decoration: none }\n\r</style>\n\r<body bgcolor=\"#F2FFFC\">\n\r<font face=\"Verdana\" size=\"4\"></font>\n\r<font face=\"Verdana\" size=\"2\">\n\r</font>\n\r\n\r ");
for (i=0; i<tocTab.length; i++) {
if (toDisplay[i]) {
thisNumber = tocTab[i][0];
thisNumArray = thisNumber.split(".");
thisLevel = thisNumArray.length-1;
isCurrent = (i == currentIndex);
if (i < tocTab.length-1) {
nextLevel = tocTab[i+1][0].split(".").length-1;
img = (thisLevel >= nextLevel) ? tocTab[i][4] : ((toDisplay[i+1]) ? tocTab[i][5] : tocTab[i][4]);
}
else img = tocTab[i][4];
thisTextClass = ((thisNumber==currentNumber)?("hilight"):("heading"));
thisNode = ((thisNumber==currentNumber)?("<div id=currentNode></div>"):(""));
$hmtoc.document.write(thisNode);
$hmtoc.document.write("<table border=0 cellspacing=0 cellpadding=2>");
if (img!="") {
$hmtoc.document.write("<tr><td width=" + ((thisLevel+1) * 20) + " align=right valign=top>");
$hmtoc.document.write("<a href=\"javaScript:history.go(0)\" onMouseDown=\"parent.reDisplay('" + thisNumber + "'," + tocBehaviour[0] + "," + tocLinks[0] + ",event)\">");
$hmtoc.document.write("<img src=\"" + img + "\" border=0></a>");
}
else $hmtoc.document.write("<tr><td width=" + (thisLevel * 20) + " align=right valign=top>");
$hmtoc.document.write("</td><td align=left>");
$hmtoc.document.write("<a href=\"javaScript:history.go(0)\" onMouseDown=\"parent.reDisplay('" + thisNumber + "'," + tocBehaviour[1] + "," + tocLinks[1] + ",event)\">");
$hmtoc.document.write("<span class=\""  + thisTextClass + ((thisLevel>5) ? 6 : thisLevel+1) + "\">");
$hmtoc.document.write( ((showNumbers)?(thisNumber+" "):"") + tocTab[i][1]);
$hmtoc.document.write("</span></a>");
$hmtoc.document.writeln("</td></tr></table>");
window.onerror = oldOnError;
} //isDyn
} //isContent
}
}
if (!noLink) {
oldLastVisitNumber = oldCurrentNumber;
oldCurrentNumber = currentNumber;
}
if (isContent && isDyn) {
$hmtoc.document.close();
if ((tocScroll) && (thisNode)) $hmtoc.document.all["currentNode"].scrollIntoView();
}
if (theHref)
if (theTarget=="top") top.location.href = theHref;
else if (theTarget=="parent") parent.location.href = theHref;
else if (theTarget=="blank") open(theHref,"");
else $hmcontent.location.href = theHref;
}

