



var g_httpCgiUrl = "/stellent/idcplg?IdcService=SS_GET_PAGE&";

/////////////////////////////////////////////////////////////////////////////
// Function : NavNode (constructor)
// Comments :
/////////////////////////////////////////////////////////////////////////////
function NavNode(id, label, href, parent)
{
	this.m_parent = null;
	this.m_level = 0;

	if (parent)
	{
		this.m_parent = parent;
		this.m_level = parent.m_level+1;
	}

	this.m_id = id;

	// assume that m_label will most often be used directly as HTML
	this.m_rawlabel = label;

	label = label.replace(/&/g, '&amp;');
	label = label.replace(/</g, '&lt;');
	label = label.replace(/>/g, '&gt;');
	label = label.replace(/"/g, '&quot;');

	this.m_label = label;

	this.m_href = href;
	this.m_subNodes = new Array();

	var argValues = NavNode.arguments;
	var argCount = NavNode.arguments.length;

	for (i = 4 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("this.cp_" + attrName + " = '" + attrValue + "';");
	}

	NavNode.prototype.addNode = addNode;
	NavNode.prototype.isSelected = isSelected;
}

/////////////////////////////////////////////////////////////////////////////
// Function : addNode
// Comments :
/////////////////////////////////////////////////////////////////////////////
function addNode(id, label, href)
{
	var newIndex = this.m_subNodes.length;
	var newNode = new NavNode(id, label, href, this);

	var argValues = addNode.arguments;
	var argCount = addNode.arguments.length;

	for (i = 3 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("newNode.cp_" + attrName + " = '" + attrValue + "';");
	}

	this.m_subNodes[newIndex] = newNode;
	return newNode;
}

/////////////////////////////////////////////////////////////////////////////
// Function : isSelected
// Comments :
/////////////////////////////////////////////////////////////////////////////
function isSelected()
{
    var pos = window.location.href.lastIndexOf("/");
    var docname = window.location.href.substring(pos+1, window.location.href.length);

    pos = this.m_href.lastIndexOf("/");
    var myname = this.m_href.substring(pos+1, this.m_href.length);

    if (docname == myname)
		return true;
	else
		return false;
}

/////////////////////////////////////////////////////////////////////////////
// Function : isTrue
// Comments :
/////////////////////////////////////////////////////////////////////////////
function isTrue( boolStr )
{
	if( boolStr.length > 0 )
	{
		var boolChar = boolStr.substring(0,1).toUpperCase();
		if( ( boolChar == '1' ) || ( boolChar == 'T' ) )
		{
			return true;
		}
	}

	return false;
}

/////////////////////////////////////////////////////////////////////////////
// Function : customSectionPropertyExists
// Comments :
/////////////////////////////////////////////////////////////////////////////
function customSectionPropertyExists(csp)
{
	return (typeof csp != _U && csp != null);
}

/////////////////////////////////////////////////////////////////////////////
// Function : getCustomSectionProperty
// Comments :
/////////////////////////////////////////////////////////////////////////////
function getCustomSectionProperty(csp)
{
	if (customSectionPropertyExists(csp))
	{
		return csp;
	}
	else
	{
		return "";
	}
}

/////////////////////////////////////////////////////////////////////////////
// Function : link
// Comments :
/////////////////////////////////////////////////////////////////////////////
function link(dDocName,ssTargetNodeId)
{
	if ((dDocName.search("http://") != -1) || (dDocName.search("https://") != -1))
		window.open(dDocName);
	else
	{
		var newUrl = "";
		newUrl += g_httpCgiUrl;
		newUrl += "ssDocName=" + dDocName;

		var currentUrl = "" + window.location;

		// Continue propagation of the "SSContributor" parameter
		if( SSContributor )
		{
			var paramName = "SSContributor=";
			var pos = currentUrl.indexOf( paramName );
			if( pos != -1 )
			{
				var subStr = currentUrl.substring( pos+paramName.length, pos+paramName.length+1 );
				if( isTrue( subStr ) )
				{
					newUrl += "&" + paramName + "true";
				}
			}
		}

		// Continue propagation of the "previewId" parameter
		var previewId = "previewId=";
		var posStart = currentUrl.indexOf( previewId );
		if( posStart != -1 )
		{
			var posEnd = currentUrl.indexOf("&", posStart);
			var value = "";
			if (posEnd == -1)
			{
				value = currentUrl.substring(posStart+previewId.length, currentUrl.length);
			}
			else
			{
				value = currentUrl.substring(posStart+previewId.length, posEnd);
			}
			newUrl += "&" + previewId + value;
		}

		// We now always add the node that the link is on as part of the URl also.
		if( g_ssSourceNodeId != _U && g_ssSourceNodeId != null )
			newUrl += "&ssSourceNodeId=" + g_ssSourceNodeId;

		// If we have a specific target nodeId then add that to the URL also
		if( ssTargetNodeId != _U && ssTargetNodeId != null )
			newUrl += "&ssTargetNodeId=" + ssTargetNodeId;

		// Navigate to the new url
		window.location = newUrl;
	}
}

/////////////////////////////////////////////////////////////////////////////
// Function : nodelink
// Comments :
/////////////////////////////////////////////////////////////////////////////
function nodelink(nodeId)
{
	var newUrl = "";
	newUrl += g_httpCgiUrl;
	newUrl += "nodeId=" + nodeId;

	var currentUrl = "" + window.location;

	// Continue propagation of the "SSContributor" parameter
	if( SSContributor )
	{
		var paramName = "SSContributor=";
		var pos = currentUrl.indexOf( paramName );
		if( pos != -1 )
		{
			var subStr = currentUrl.substring( pos+paramName.length, pos+paramName.length+1 );
			if( isTrue( subStr ) )
			{
				newUrl += "&" + paramName + "true";
			}
		}
	}

	// Continue propagation of the "previewId" parameter
	var previewId = "previewId=";
	var posStart = currentUrl.indexOf( previewId );
	if( posStart != -1 )
	{
		var posEnd = currentUrl.indexOf("&", posStart);
		var value = "";
		if (posEnd == -1)
		{
			value = currentUrl.substring(posStart+previewId.length, currentUrl.length);
		}
		else
		{
			value = currentUrl.substring(posStart+previewId.length, posEnd);
		}
		newUrl += "&" + previewId + value;
	}

	// We now always add the node that the link is on as part of the URl also.
	if( g_ssSourceNodeId != _U && g_ssSourceNodeId != null )
		newUrl += "&ssSourceNodeId=" + g_ssSourceNodeId;

	// Navigate to the new url
	window.location = newUrl;
}
/////////////////////////////////////////////////////////////////////////////


/////////////////////////////////////////////////////////////////////////////
// Function : popup_link
// Comments : 
/////////////////////////////////////////////////////////////////////////////
function popup_link(dDocName,target,ssTargetNodeId)
{
	if ((dDocName.search("http://") != -1) || (dDocName.search("https://") != -1))
		window.open(dDocName, target);
	else
	{
		var newUrl = "";
		newUrl += g_httpCgiUrl;
		newUrl += "ssDocName=" + dDocName;

		var currentUrl = "" + window.location;

		// Continue propagation of the "SSContributor" parameter
		if( SSContributor )
		{
			var paramName = "SSContributor=";
			var pos = currentUrl.indexOf( paramName );
			if( pos != -1 )
			{
				var subStr = currentUrl.substring( pos+paramName.length, pos+paramName.length+1 );
				if( isTrue( subStr ) )
				{
					newUrl += "&" + paramName + "true";
				}
			}
		}

		// Continue propagation of the "previewId" parameter
		var previewId = "previewId=";
		var posStart = currentUrl.indexOf( previewId );
		if( posStart != -1 )
		{
			var posEnd = currentUrl.indexOf("&", posStart);
			var value = "";
			if (posEnd == -1)
			{
				value = currentUrl.substring(posStart+previewId.length, currentUrl.length);
			}
			else
			{
				value = currentUrl.substring(posStart+previewId.length, posEnd);
			}
			newUrl += "&" + previewId + value;
		}

		// We now always add the node that the link is on as part of the URl also.
		if( g_ssSourceNodeId != _U && g_ssSourceNodeId != null )
			newUrl += "&ssSourceNodeId=" + g_ssSourceNodeId;

		// If we have a specific target nodeId then add that to the URL also
		if( ssTargetNodeId != _U && ssTargetNodeId != null )
			newUrl += "&ssTargetNodeId=" + ssTargetNodeId;

		// Navigate to the new url
		window.open(newUrl, target);
	}
}

/////////////////////////////////////////////////////////////////////////////
// Function : popup_nodelink
// Comments :
/////////////////////////////////////////////////////////////////////////////
function popup_nodelink(nodeId,target)
{
	var newUrl = "";
	newUrl += g_httpCgiUrl;
	newUrl += "nodeId=" + nodeId;

	var currentUrl = "" + window.location;

	// Continue propagation of the "SSContributor" parameter
	if( SSContributor )
	{
		var paramName = "SSContributor=";
		var pos = currentUrl.indexOf( paramName );
		if( pos != -1 )
		{
			var subStr = currentUrl.substring( pos+paramName.length, pos+paramName.length+1 );
			if( isTrue( subStr ) )
			{
				newUrl += "&" + paramName + "true";
			}
		}
	}

	// Continue propagation of the "previewId" parameter
	var previewId = "previewId=";
	var posStart = currentUrl.indexOf( previewId );
	if( posStart != -1 )
	{
		var posEnd = currentUrl.indexOf("&", posStart);
		var value = "";
		if (posEnd == -1)
		{
			value = currentUrl.substring(posStart+previewId.length, currentUrl.length);
		}
		else
		{
			value = currentUrl.substring(posStart+previewId.length, posEnd);
		}
		newUrl += "&" + previewId + value;
	}

	// We now always add the node that the link is on as part of the URl also.
	if( g_ssSourceNodeId != _U && g_ssSourceNodeId != null )
		newUrl += "&ssSourceNodeId=" + g_ssSourceNodeId;

	// Navigate to the new url
	window.open(newUrl, target);
}

var g_navNode_Root = new NavNode('825','United\x20Kingdom\x20Home','javascript:cnslink(0)',null);
g_navNode_0=g_navNode_Root.addNode('11291','VeriSign\x20EMEA\x20Partner\x20Knowledge\x20Base','javascript:cnslink(1)');
g_navNode_2=g_navNode_Root.addNode('826','Solutions','javascript:cnslink(2)');
g_navNode_2_6=g_navNode_2.addNode('831','Enterprise','javascript:cnslink(3)');
g_navNode_3=g_navNode_Root.addNode('827','Products\x20\x26\x20Services','javascript:cnslink(4)','secondaryUrlVariableField==region1');
g_navNode_4=g_navNode_Root.addNode('828','Support','javascript:cnslink(5)','secondaryUrlVariableField==region1');
g_navNode_4_1=g_navNode_4.addNode('10176','Contact\x20Support','javascript:cnslink(6)');
g_navNode_4_2=g_navNode_4.addNode('10173','Email\x20Security\x20Services\x20Support','javascript:cnslink(7)','secondaryUrlVariableField==region1');
g_navNode_4_3=g_navNode_4.addNode('10166','SSL\x20Certificates\x20Support','javascript:cnslink(8)','secondaryUrlVariableField==region1');
g_navNode_4_3_0=g_navNode_4_3.addNode('10174','Secure\x20Site\x20\x26\x20Secure\x20Site\x20Pro\x20Support','javascript:cnslink(9)');
g_navNode_4_4=g_navNode_4.addNode('10071','Managed\x20PKI\x20for\x20SSL\x20Support','javascript:cnslink(10)','secondaryUrlVariableField==region1');
g_navNode_4_4_0=g_navNode_4_4.addNode('10072','Administrator\x20Step-By-Step','javascript:cnslink(11)');
g_navNode_4_4_1=g_navNode_4_4.addNode('10074','Enrolment\x20URL','javascript:cnslink(12)');
g_navNode_4_4_2=g_navNode_4_4.addNode('10075','End\x20User\x20Step-By-Step','javascript:cnslink(13)');
g_navNode_4_5=g_navNode_4.addNode('10065','Secured\x20Seal\x20Support','javascript:cnslink(14)');
g_navNode_5=g_navNode_Root.addNode('829','About\x20VeriSign','javascript:cnslink(15)','secondaryUrlVariableField==region1');
g_navNode_7=g_navNode_Root.addNode('890','Repository','javascript:cnslink(16)','secondaryUrlVariableField==region1');
g_navNode_9=g_navNode_Root.addNode('9297','Communications\x20Preferences','javascript:cnslink(17)','secondaryUrlVariableField==region1');
g_navNode_16=g_navNode_Root.addNode('10191','VeriSign\x20Partner\x20Program','javascript:cnslink(18)','secondaryUrlVariableField==region1');
g_navNode_21=g_navNode_Root.addNode('844','PKI\x20\x26\x20Authentication\x20Services','javascript:cnslink(19)');
g_navNode_21_0=g_navNode_21.addNode('853','Core\x20Managed\x20PKI','javascript:cnslink(20)');
g_navNode_21_0_0=g_navNode_21_0.addNode('854','Go\x20Secure\x21\x20Solutions','javascript:cnslink(21)');
g_navNode_21_0_0_0=g_navNode_21_0_0.addNode('855','Go\x20Secure\x21\x20for\x20Web\x20Applications','javascript:cnslink(22)');
g_navNode_21_0_0_1=g_navNode_21_0_0.addNode('856','Go\x20Secure\x21\x20for\x20Microsoft\x20Applications','javascript:cnslink(23)');
g_navNode_21_0_0_2=g_navNode_21_0_0.addNode('857','Go\x20Secure\x21\x20for\x20Lotus\x20Notes','javascript:cnslink(24)');
g_navNode_21_0_0_3=g_navNode_21_0_0.addNode('858','VPN\x20Solutions','javascript:cnslink(25)');
g_navNode_21_0_1=g_navNode_21_0.addNode('867','Key\x20Management\x20Services','javascript:cnslink(26)');
g_navNode_21_0_2=g_navNode_21_0.addNode('868','Roaming','javascript:cnslink(27)');
g_navNode_21_0_3=g_navNode_21_0.addNode('869','Smart\x20Card\x20Authentication\x20Solutions','javascript:cnslink(28)');
g_navNode_21_0_4=g_navNode_21_0.addNode('871','Trusted\x20Form\x20Signing\x20-\x20VeriSign\x20Document\x20Signer','javascript:cnslink(29)');
g_navNode_21_0_5=g_navNode_21_0.addNode('872','Trusted\x20Messaging','javascript:cnslink(30)');
g_navNode_21_0_6=g_navNode_21_0.addNode('873','Digital\x20IDs\x20for\x20Secure\x20Email','javascript:cnslink(31)');
g_navNode_21_1=g_navNode_21.addNode('859','Managed\x20PKI\x20Fast\x20Track','javascript:cnslink(32)');
g_navNode_21_2=g_navNode_21.addNode('860','XML\x20Trust\x20Services','javascript:cnslink(33)','secondaryUrlVariableField==region1');
g_navNode_21_3=g_navNode_21.addNode('864','Consulting','javascript:cnslink(34)');
g_navNode_21_4=g_navNode_21.addNode('865','Cable\x20Modem\x20Services','javascript:cnslink(35)');
g_navNode_21_4_0=g_navNode_21_4.addNode('866','Cable\x20Modem\x20Authentication\x20Service','javascript:cnslink(36)');
g_navNode_21_5=g_navNode_21.addNode('10795','PKI\x20Applications','javascript:cnslink(37)');
g_navNode_21_5_0=g_navNode_21_5.addNode('10796','VeriSign\xae\x20Services\x20for\x20WiMAX-Compliant\x20Devices\x20\x20','javascript:cnslink(38)');
g_navNode_21_6=g_navNode_21.addNode('10797','Device\x20Certificate\x20Service','javascript:cnslink(39)');
g_navNode_22=g_navNode_Root.addNode('9308','Email\x20Security\x20Service','javascript:cnslink(40)','secondaryUrlVariableField==region1');
g_navNode_23=g_navNode_Root.addNode('9460','Unified\x20Authentication\x20Tokens','javascript:cnslink(41)');
g_navNode_27=g_navNode_Root.addNode('10018','\x20Real-Time\x20Publisher\x20Services','javascript:cnslink(42)');
g_navNode_29=g_navNode_Root.addNode('833','Security\x20Services','javascript:cnslink(43)','secondaryUrlVariableField==region1');
g_navNode_30=g_navNode_Root.addNode('838','Domain\x20Name\x20Services','javascript:cnslink(44)');
g_navNode_31=g_navNode_Root.addNode('841','Communication\x20Services','javascript:cnslink(45)','secondaryUrlVariableField==region1');
g_navNode_31_0=g_navNode_31.addNode('843','International\x20Services','javascript:cnslink(46)');
g_navNode_42=g_navNode_Root.addNode('11335','VeriSign\x20Identity\x20and\x20Authentication\x20Services','javascript:cnslink(47)');
g_navNode_42_0=g_navNode_42.addNode('11336','Consumer\x20Authentication','javascript:cnslink(48)');
g_navNode_42_0_0=g_navNode_42_0.addNode('11344','VeriSign\x20Identity\x20Protection\x20Services','javascript:cnslink(49)');
g_navNode_42_0_1=g_navNode_42_0.addNode('11345','VIP\x20Authentication\x20Services\x20','javascript:cnslink(50)');
g_navNode_42_0_2=g_navNode_42_0.addNode('11346','VIP\x20Network','javascript:cnslink(51)');
g_navNode_42_0_3=g_navNode_42_0.addNode('11347','VIP\x20Fraud\x20Detection\x20Services\x20','javascript:cnslink(52)');
g_navNode_42_0_3_0=g_navNode_42_0_3.addNode('11539','Stock\x20Trading\x20Module','javascript:cnslink(53)');
g_navNode_42_0_4=g_navNode_42_0.addNode('11348','Compare\x20Two-Factor\x20Authentication\x20Credentials','javascript:cnslink(54)');
g_navNode_42_0_5=g_navNode_42_0.addNode('11349','Consumer\x20Confidence','javascript:cnslink(55)');
g_navNode_42_0_6=g_navNode_42_0.addNode('11350','A\x20Better\x20User\x20Experience','javascript:cnslink(56)');
g_navNode_42_0_7=g_navNode_42_0.addNode('11351','Open\x20Standards\x20Based\x20Secure\x20Authentication','javascript:cnslink(57)');
g_navNode_42_0_8=g_navNode_42_0.addNode('11352','Secure\x20Online\x20Banking','javascript:cnslink(58)');
g_navNode_42_0_9=g_navNode_42_0.addNode('11380','VeriSign\xae\x20Identity\x20Protection\x20\x28VIP\x29\x20Test\x20Drive\x20for\x20Developers','javascript:cnslink(59)');
g_navNode_42_1=g_navNode_42.addNode('11338','Enterprise\x20Authentication','javascript:cnslink(60)');
g_navNode_42_1_0=g_navNode_42_1.addNode('11354','Public\x20Key\x20Infrastructure\x20Solutions','javascript:cnslink(61)');
g_navNode_42_1_1=g_navNode_42_1.addNode('11355','Information\x20Security\x20Risk\x20Management','javascript:cnslink(62)');
g_navNode_42_1_2=g_navNode_42_1.addNode('11356','Secure\x20Remote\x20Access','javascript:cnslink(63)');
g_navNode_42_1_3=g_navNode_42_1.addNode('11357','Security\x20Regulation\x20Compliance','javascript:cnslink(64)');
g_navNode_42_1_4=g_navNode_42_1.addNode('11358','Unified\x20Authentication\x20OTP\x20Services','javascript:cnslink(65)');
g_navNode_42_1_5=g_navNode_42_1.addNode('11359','Unified\x20Authentication\x20PKI\x20for\x20Windows','javascript:cnslink(66)');
g_navNode_42_1_6=g_navNode_42_1.addNode('11360','Device\x20Certificate\x20Services','javascript:cnslink(67)');
g_navNode_42_1_6_0=g_navNode_42_1_6.addNode('11377','Cable\x20Modem\x20Authentication\x20Services','javascript:cnslink(68)');
g_navNode_42_1_6_0_0=g_navNode_42_1_6_0.addNode('11378','Root\x20Certificate\x20Download\x20-\x20DOCSIS\x20Root\x20CA\x20Information','javascript:cnslink(69)');
g_navNode_42_1_6_0_1=g_navNode_42_1_6_0.addNode('11379','Root\x20Certificate\x20Download\x20-\x20PacketCable\x20Root\x20CA\x20Information','javascript:cnslink(70)');
g_navNode_42_1_7=g_navNode_42_1.addNode('11361','Processing\x20Center\x20PKI','javascript:cnslink(71)');
g_navNode_42_1_8=g_navNode_42_1.addNode('11362','Vertical\x20Service\x20Provider\x20PKI','javascript:cnslink(72)');
g_navNode_42_1_9=g_navNode_42_1.addNode('11363','True\x20Credentials\x20for\x20Adobe\x20Acrobat','javascript:cnslink(73)');
g_navNode_42_1_10=g_navNode_42_1.addNode('11374','Managed\x20PKI\x20Service','javascript:cnslink(74)');
g_navNode_42_1_11=g_navNode_42_1.addNode('11376','Managed\x20PKI\x20Service\x20Evaluation\x20Edition','javascript:cnslink(75)');
g_navNode_42_2=g_navNode_42.addNode('11340','Authentication\x20for\x20Individuals','javascript:cnslink(76)');
g_navNode_42_2_0=g_navNode_42_2.addNode('11368','Protect\x20Yourself\x20Online','javascript:cnslink(77)');
g_navNode_42_2_1=g_navNode_42_2.addNode('11369','VeriSign\x20Identity\x20Protection\x20Center','javascript:cnslink(78)');
g_navNode_42_2_2=g_navNode_42_2.addNode('11370','Digital\x20IDs\x20for\x20Secure\x20Email','javascript:cnslink(79)');
g_navNode_42_2_3=g_navNode_42_2.addNode('11371','My\x20Credential\x20for\x20Adobe\x20Acrobat','javascript:cnslink(80)');
g_navNode_42_2_3_0=g_navNode_42_2_3.addNode('11375','My\x20Credential\x20for\x20Adobe\x20Acrobat\x20FAQ','javascript:cnslink(81)');
g_navNode_42_2_4=g_navNode_42_2.addNode('11372','Mortgage\x20Industry\x20Certificate','javascript:cnslink(82)');
g_navNode_42_2_4_0=g_navNode_42_2_4.addNode('11381','VeriSign\x20Mortgage\x20Industry\x20Organizational\x20Certificate\x20Enrollment','javascript:cnslink(83)');
g_navNode_42_2_4_0_0=g_navNode_42_2_4_0.addNode('11387','VeriSign\x20Mortgage\x20Industry\x20Organizational\x20Certificate\x20Enrollment\x20Confirmation','javascript:cnslink(84)');
g_navNode_42_3=g_navNode_42.addNode('11341','Why\x20VeriSign?','javascript:cnslink(85)');
g_navNode_42_4=g_navNode_42.addNode('11342','Authentication\x20Products\x20list','javascript:cnslink(86)');
g_navNode_42_5=g_navNode_42.addNode('11343','Authentication\x20Resources','javascript:cnslink(87)');
g_navNode_42_5_0=g_navNode_42_5.addNode('11373','Authentication\x20Terms\x20Defined','javascript:cnslink(88)');
g_navNode_42_5_1=g_navNode_42_5.addNode('11382','Fraud\x20Detection\x20Service\x20Tour','javascript:cnslink(89)');
g_navNode_42_5_2=g_navNode_42_5.addNode('11383','Unified\x20Authentication\x20Tour','javascript:cnslink(90)');
g_navNode_42_5_3=g_navNode_42_5.addNode('11384','Strong\x20Authentication\x20Demo','javascript:cnslink(91)');
// introduced by connection server
var g_cnsnodes = new Array();
g_cnsnodes[0] = '/index.html';
g_cnsnodes[1] = '/emea-partner-knowledgebase/index.html';
g_cnsnodes[2] = '/verisign-business-solutions/index.html';
g_cnsnodes[3] = '/verisign-business-solutions/enterprise-solutions/index.html';
g_cnsnodes[4] = '/products-services/index.html';
g_cnsnodes[5] = '/support/index.html';
g_cnsnodes[6] = '/support/contact-support/index.html';
g_cnsnodes[7] = '/support/ess-support/index.html';
g_cnsnodes[8] = '/support/ssl-certificates-support/index.html';
g_cnsnodes[9] = '/support/ssl-certificates-support/secure-site/index.html';
g_cnsnodes[10] = '/support/mpki-for-ssl-support/index.html';
g_cnsnodes[11] = '/support/mpki-for-ssl-support/administrator-step-by-step/index.html';
g_cnsnodes[12] = '/support/mpki-for-ssl-support/enrollment/index.html';
g_cnsnodes[13] = '/support/mpki-for-ssl-support/end-user-step-by-step/index.html';
g_cnsnodes[14] = '/support/secure-site-seal/index.html';
g_cnsnodes[15] = '/verisign-inc/index.html';
g_cnsnodes[16] = '/repository/index.html';
g_cnsnodes[17] = '/compref/index.html';
g_cnsnodes[18] = '/verisign-partner-program/index.html';
g_cnsnodes[19] = '/pki/index.html';
g_cnsnodes[20] = '/pki/pki-security/index.html';
g_cnsnodes[21] = '/pki/pki-security/pki-solution/index.html';
g_cnsnodes[22] = '/pki/pki-security/pki-solution/web-application/index.html';
g_cnsnodes[23] = '/pki/pki-security/pki-solution/microsoft-exchange/index.html';
g_cnsnodes[24] = '/pki/pki-security/pki-solution/lotus-notes/index.html';
g_cnsnodes[25] = '/pki/pki-security/pki-solution/vpn-solutions/index.html';
g_cnsnodes[26] = '/pki/pki-security/public-key-infrastructure/index.html';
g_cnsnodes[27] = '/pki/pki-security/wireless-roaming/index.html';
g_cnsnodes[28] = '/pki/pki-security/smart-card/index.html';
g_cnsnodes[29] = '/pki/pki-security/trusted-form-signing/index.html';
g_cnsnodes[30] = '/pki/pki-security/trusted-messaging/index.html';
g_cnsnodes[31] = '/pki/pki-security/email-digital-id/index.html';
g_cnsnodes[32] = '/pki/managed-pki-fast-track/index.html';
g_cnsnodes[33] = '/pki/xml-trust-services/index.html';
g_cnsnodes[34] = '/pki/consulting/index.html';
g_cnsnodes[35] = '/pki/cable-modem-services/index.html';
g_cnsnodes[36] = '/pki/cable-modem-services/cable-modem-authentication/index.html';
g_cnsnodes[37] = '/pki/pki-application/index.html';
g_cnsnodes[38] = '/pki/pki-application/wimax/index.html';
g_cnsnodes[39] = '/pki/device-certificate-service/index.html';
g_cnsnodes[40] = '/email-security/index.html';
g_cnsnodes[41] = '/usb-tokens/index.html';
g_cnsnodes[42] = '/real-time-publisher-services/index.html';
g_cnsnodes[43] = '/security-services/index.html';
g_cnsnodes[44] = '/information-services/index.html';
g_cnsnodes[45] = '/communications/index.html';
g_cnsnodes[46] = '/communications/international/index.html';
g_cnsnodes[47] = '/authentication/index.html';
g_cnsnodes[48] = '/authentication/consumer-authentication/index.html';
g_cnsnodes[49] = '/authentication/consumer-authentication/identity-protection/index.html';
g_cnsnodes[50] = '/authentication/consumer-authentication/vip-authentication/index.html';
g_cnsnodes[51] = '/authentication/consumer-authentication/shared-authentication-network/index.html';
g_cnsnodes[52] = '/authentication/consumer-authentication/vip-fraud-detection-services/index.html';
g_cnsnodes[53] = '/authentication/consumer-authentication/vip-fraud-detection-services/stock-trading-module/index.html';
g_cnsnodes[54] = '/authentication/consumer-authentication/two-factor-authentication/index.html';
g_cnsnodes[55] = '/authentication/consumer-authentication/consumer-confidence/index.html';
g_cnsnodes[56] = '/authentication/consumer-authentication/better-user-experience/index.html';
g_cnsnodes[57] = '/authentication/consumer-authentication/open-standards-authentication/index.html';
g_cnsnodes[58] = '/authentication/consumer-authentication/secure-online-banking/index.html';
g_cnsnodes[59] = '/authentication/consumer-authentication/trial/index.html';
g_cnsnodes[60] = '/authentication/enterprise-authentication/index.html';
g_cnsnodes[61] = '/authentication/enterprise-authentication/pki-infrastructure-solutions/index.html';
g_cnsnodes[62] = '/authentication/enterprise-authentication/information-security-risk-management/index.html';
g_cnsnodes[63] = '/authentication/enterprise-authentication/secure-remote-access/index.html';
g_cnsnodes[64] = '/authentication/enterprise-authentication/security-regulation-compliance/index.html';
g_cnsnodes[65] = '/authentication/enterprise-authentication/enterprise-otp/index.html';
g_cnsnodes[66] = '/authentication/enterprise-authentication/unified-authentication-pki-windows/index.html';
g_cnsnodes[67] = '/authentication/enterprise-authentication/device-certificate-services/index.html';
g_cnsnodes[68] = '/authentication/enterprise-authentication/device-certificate-services/cable-modem-authentication/index.html';
g_cnsnodes[69] = '/authentication/enterprise-authentication/device-certificate-services/cable-modem-authentication/docsis-root/index.html';
g_cnsnodes[70] = '/authentication/enterprise-authentication/device-certificate-services/cable-modem-authentication/packet-cable-root/index.html';
g_cnsnodes[71] = '/authentication/enterprise-authentication/processing-center-pki/index.html';
g_cnsnodes[72] = '/authentication/enterprise-authentication/vertical-service-provider-pki/index.html';
g_cnsnodes[73] = '/authentication/enterprise-authentication/adobe-acrobat-credentials/index.html';
g_cnsnodes[74] = '/authentication/enterprise-authentication/managed-pki/index.html';
g_cnsnodes[75] = '/authentication/enterprise-authentication/test-drive/index.html';
g_cnsnodes[76] = '/authentication/individual-authentication/index.html';
g_cnsnodes[77] = '/authentication/individual-authentication/protect-yourself-online/index.html';
g_cnsnodes[78] = '/authentication/individual-authentication/VeriSign_Identity_Protection_Center/index.html';
g_cnsnodes[79] = '/authentication/individual-authentication/digital-id/index.html';
g_cnsnodes[80] = '/authentication/individual-authentication/certified-electronic-document-signing/index.html';
g_cnsnodes[81] = '/authentication/individual-authentication/certified-electronic-document-signing/faq/index.html';
g_cnsnodes[82] = '/authentication/individual-authentication/mortgage-industry-certificate/index.html';
g_cnsnodes[83] = '/authentication/individual-authentication/mortgage-industry-certificate/enrollment/index.html';
g_cnsnodes[84] = '/authentication/individual-authentication/mortgage-industry-certificate/enrollment/confirmation/index.html';
g_cnsnodes[85] = '/authentication/why-verisign/index.html';
g_cnsnodes[86] = '/authentication/authentication-product-list/index.html';
g_cnsnodes[87] = '/authentication/authentication-resources/index.html';
g_cnsnodes[88] = '/authentication/authentication-resources/terms-defined-glossary/index.html';
g_cnsnodes[89] = '/authentication/authentication-resources/fraud-detection-services-overview/index.html';
g_cnsnodes[90] = '/authentication/authentication-resources/unified-authentication-tour/index.html';
g_cnsnodes[91] = '/authentication/authentication-resources/strong-authentication-tour/index.html';
function cnslink(pageid) {
var newUrl = '';
newUrl += g_prefixToStaticRoot;
newUrl += g_cnsnodes[pageid];
window.location = newUrl;
}