



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('9192','Deutschland\x20Home','javascript:cnslink(0)',null);
g_navNode_2=g_navNode_Root.addNode('9269','Fallstudien','javascript:cnslink(1)');
g_navNode_3=g_navNode_Root.addNode('9194','L\xf6sungen','javascript:cnslink(2)');
g_navNode_4=g_navNode_Root.addNode('9195','Support','javascript:cnslink(3)');
g_navNode_5=g_navNode_Root.addNode('9196','\xdcber\x20VeriSign','javascript:cnslink(4)','secondaryUrlVariableField==region1');
g_navNode_6=g_navNode_Root.addNode('9199','Kostenlose\x20Richtlinien','javascript:cnslink(5)');
g_navNode_7=g_navNode_Root.addNode('9200','Repository','javascript:cnslink(6)','secondaryUrlVariableField==region1');
g_navNode_9=g_navNode_Root.addNode('9261','Kommunikationseinstellungen','javascript:cnslink(7)','secondaryUrlVariableField==region1');
g_navNode_10=g_navNode_Root.addNode('9265','Ressourcen','javascript:cnslink(8)');
g_navNode_10_0=g_navNode_10.addNode('9266','Data\x20Sheets','javascript:cnslink(9)');
g_navNode_10_1=g_navNode_10.addNode('9267','White\x20Papers','javascript:cnslink(10)');
g_navNode_10_2=g_navNode_10.addNode('9268','Guides','javascript:cnslink(11)');
g_navNode_11=g_navNode_Root.addNode('9270','Confirm','javascript:cnslink(12)','secondaryUrlVariableField==region1');
g_navNode_21=g_navNode_Root.addNode('9204','Sicherheitsdienste','javascript:cnslink(13)');
g_navNode_22=g_navNode_Root.addNode('9211','PKI\x20und\x20Authentication\x20Services','javascript:cnslink(14)');
g_navNode_22_0=g_navNode_22.addNode('9220','Core\x20Managed\x20PKI','javascript:cnslink(15)');
g_navNode_22_0_0=g_navNode_22_0.addNode('9227','Key\x20Management\x20Services','javascript:cnslink(16)');
g_navNode_22_0_1=g_navNode_22_0.addNode('9229','Smart\x20Card-Authentifizierungsl\xf6sungen','javascript:cnslink(17)');
g_navNode_22_0_2=g_navNode_22_0.addNode('9231','Trusted\x20Messaging','javascript:cnslink(18)');
g_navNode_22_0_3=g_navNode_22_0.addNode('9226','Go\x20Secure\x21\x20L\xf6sungen','javascript:cnslink(19)');
g_navNode_22_0_3_0=g_navNode_22_0_3.addNode('9233','Go\x20Secure\x21\x20f\xfcr\x20Webanwendungen','javascript:cnslink(20)');
g_navNode_22_0_3_1=g_navNode_22_0_3.addNode('9234','Go\x20Secure\x21\x20f\xfcr\x20Microsoft\x20Exchange','javascript:cnslink(21)');
g_navNode_22_0_3_2=g_navNode_22_0_3.addNode('9235','Go\x20Secure\x21\x20F\xfcr\x20Lotus\x20Notes','javascript:cnslink(22)');
g_navNode_22_0_3_3=g_navNode_22_0_3.addNode('9236','VPN-L\xf6sungen','javascript:cnslink(23)');
g_navNode_22_0_4=g_navNode_22_0.addNode('9228','Roaming','javascript:cnslink(24)');
g_navNode_22_0_5=g_navNode_22_0.addNode('9230','Vertrauensw\xfcrdige\x20Digitale\x20Signatur','javascript:cnslink(25)');
g_navNode_22_0_6=g_navNode_22_0.addNode('9232','Digitale\x20IDs\x20f\xfcr\x20sichere\x20E-Mail','javascript:cnslink(26)');
g_navNode_22_1=g_navNode_22.addNode('9221','Managed\x20PKI','javascript:cnslink(27)');
g_navNode_22_2=g_navNode_22.addNode('9222','XML\x20Trust\x20Services','javascript:cnslink(28)');
g_navNode_22_3=g_navNode_22.addNode('9223','Consulting','javascript:cnslink(29)');
g_navNode_22_4=g_navNode_22.addNode('9224','Kabelmodem-Dienste','javascript:cnslink(30)');
g_navNode_22_4_0=g_navNode_22_4.addNode('9225','Kabelmodem\x20Authentifizierungsdienst','javascript:cnslink(31)');
g_navNode_22_5=g_navNode_22.addNode('9948','Industrie\x20und\x20Banken','javascript:cnslink(32)','secondaryUrlVariableField==region1');
g_navNode_22_6=g_navNode_22.addNode('10801','PKI-Anwendungen','javascript:cnslink(33)');
g_navNode_22_6_0=g_navNode_22_6.addNode('10802','VeriSign\xae-Services\x20f\xfcr\x20WiMAX-konforme\x20Ger\xe4te','javascript:cnslink(34)');
g_navNode_22_7=g_navNode_22.addNode('10803','Device\x20Certificate\x20Service','javascript:cnslink(35)');
g_navNode_23=g_navNode_Root.addNode('9212','Intelligence\x20and\x20Control\x20Services','javascript:cnslink(36)');
g_navNode_24=g_navNode_Root.addNode('9237','Informationsdienste','javascript:cnslink(37)','secondaryUrlVariableField==region1');
g_navNode_25=g_navNode_Root.addNode('9240','Kommunikationsdienste','javascript:cnslink(38)');
g_navNode_26=g_navNode_Root.addNode('9241','GSM\x20Service\x20Suite','javascript:cnslink(39)');
g_navNode_32=g_navNode_Root.addNode('11397','VeriSign\x20Identity\x20and\x20Authentication\x20Services','javascript:cnslink(40)');
g_navNode_32_0=g_navNode_32.addNode('11398','Kundenauthentifizierung','javascript:cnslink(41)');
g_navNode_32_0_0=g_navNode_32_0.addNode('11404','VeriSign\x20Identity\x20Protection\x20Services','javascript:cnslink(42)');
g_navNode_32_0_1=g_navNode_32_0.addNode('11405','VIP\x20Authentication\x20Services','javascript:cnslink(43)');
g_navNode_32_0_2=g_navNode_32_0.addNode('11406','VeriSign\x20Identity\x20Protection\x20\x28VIP\x29\x20Network','javascript:cnslink(44)');
g_navNode_32_0_3=g_navNode_32_0.addNode('11407','VIP\x20Fraud\x20Detection\x20Services','javascript:cnslink(45)');
g_navNode_32_0_3_0=g_navNode_32_0_3.addNode('11542','Stock\x20Trading\x20Module','javascript:cnslink(46)');
g_navNode_32_0_4=g_navNode_32_0.addNode('11408','Gegen\xfcberstellung\x3a\x20Two-Factor-Authentifizierungsreferenzen','javascript:cnslink(47)');
g_navNode_32_0_5=g_navNode_32_0.addNode('11409','Kundenvertrauen','javascript:cnslink(48)');
g_navNode_32_0_6=g_navNode_32_0.addNode('11410','Ein\x20besseres\x20Benutzererlebnis','javascript:cnslink(49)');
g_navNode_32_0_7=g_navNode_32_0.addNode('11411','Sichere\x20Authentifizierung,\x20basierend\x20auf\x20offenen\x20Standards','javascript:cnslink(50)');
g_navNode_32_0_8=g_navNode_32_0.addNode('11412','Sicheres\x20Online-Banking','javascript:cnslink(51)');
g_navNode_32_0_9=g_navNode_32_0.addNode('11413','VeriSign\x20Identity\x20Protection\x20\x28VIP\x29\x20\u2013\x20Probelauf\x20f\xfcr\x20Entwickler','javascript:cnslink(52)');
g_navNode_32_1=g_navNode_32.addNode('11399','Unternehmensauthentifizierung','javascript:cnslink(53)');
g_navNode_32_1_0=g_navNode_32_1.addNode('11414','Public-Key-Infrastruktur-L\xf6sungen','javascript:cnslink(54)');
g_navNode_32_1_1=g_navNode_32_1.addNode('11415','Management\x20von\x20Risiken\x20f\xfcr\x20die\x20Informationssicherheit','javascript:cnslink(55)');
g_navNode_32_1_2=g_navNode_32_1.addNode('11416','Sicherer\x20Remote-Zugang','javascript:cnslink(56)');
g_navNode_32_1_3=g_navNode_32_1.addNode('11417','Einhaltung\x20von\x20Sicherheitsbestimmungen','javascript:cnslink(57)');
g_navNode_32_1_4=g_navNode_32_1.addNode('11418','Unified\x20Authentication\x20OTP\x20Services','javascript:cnslink(58)');
g_navNode_32_1_5=g_navNode_32_1.addNode('11419','Managed\x20PKI\x20Service','javascript:cnslink(59)');
g_navNode_32_1_6=g_navNode_32_1.addNode('11420','Unified\x20Authentication\x20PKI\x20Service\x20f\xfcr\x20Windows','javascript:cnslink(60)');
g_navNode_32_1_7=g_navNode_32_1.addNode('11421','Device\x20Certificate\x20Services','javascript:cnslink(61)');
g_navNode_32_1_7_0=g_navNode_32_1_7.addNode('11426','Cable\x20Modem\x20Authentication\x20Services','javascript:cnslink(62)');
g_navNode_32_1_7_0_0=g_navNode_32_1_7_0.addNode('11427','Root-Zertifikat-Download\x20\u2013\x20DOCSIS-Informationen\x20zur\x20Root-Zertifizierungsstelle','javascript:cnslink(63)');
g_navNode_32_1_7_0_1=g_navNode_32_1_7_0.addNode('11428','Root-Zertifikat-Download\x20\u2013\x20PacketCable-Informationen\x20zur\x20Root-Zertifizierungsstelle','javascript:cnslink(64)');
g_navNode_32_1_8=g_navNode_32_1.addNode('11422','Processing\x20Center\x20PKI','javascript:cnslink(65)');
g_navNode_32_1_9=g_navNode_32_1.addNode('11423','VeriSign\x20Lifecycle-Plattform\x20f\xfcr\x20Zertifikate','javascript:cnslink(66)');
g_navNode_32_1_10=g_navNode_32_1.addNode('11424','True\x20Credentials\x20for\x20Adobe\x20Acrobat','javascript:cnslink(67)');
g_navNode_32_1_11=g_navNode_32_1.addNode('11425','Managed\x20PKI\x20Service\x20Evaluation\x20Edition','javascript:cnslink(68)');
g_navNode_32_2=g_navNode_32.addNode('11400','Authentifizierung\x20f\xfcr\x20Einzelpersonen','javascript:cnslink(69)');
g_navNode_32_2_0=g_navNode_32_2.addNode('11429','Sorgen\x20Sie\x20f\xfcr\x20Ihren\x20Online-Schutz','javascript:cnslink(70)');
g_navNode_32_2_1=g_navNode_32_2.addNode('11430','Digitale\x20IDs\x20f\xfcr\x20sichere\x20E-Mail','javascript:cnslink(71)');
g_navNode_32_2_2=g_navNode_32_2.addNode('11431','My\x20Credential\x20for\x20Adobe\x20Acrobat','javascript:cnslink(72)');
g_navNode_32_2_2_0=g_navNode_32_2_2.addNode('11433','My\x20Credential\x20for\x20Adobe\x20Acrobat\x20FAQ','javascript:cnslink(73)');
g_navNode_32_2_3=g_navNode_32_2.addNode('11432','Zertifikat\x20f\xfcr\x20die\x20Hypothekenbranche','javascript:cnslink(74)');
g_navNode_32_2_3_0=g_navNode_32_2_3.addNode('11434','Anmeldung\x20f\xfcr\x20ein\x20Organisationszertifikat\x20von\x20VeriSign\x20f\xfcr\x20die\x20Hypothekenbranche','javascript:cnslink(75)');
g_navNode_32_2_3_0_0=g_navNode_32_2_3_0.addNode('11435','Anmeldungsbest\xe4tigung\x20f\xfcr\x20VeriSign-Unternehmenszertifikat\x20f\xfcr\x20die\x20Hypothekenbranche','javascript:cnslink(76)');
g_navNode_32_3=g_navNode_32.addNode('11401','Warum\x20VeriSign?','javascript:cnslink(77)');
g_navNode_32_4=g_navNode_32.addNode('11402','Liste\x20der\x20Identit\xe4ts-\x20und\x20Authentifizierungsprodukte','javascript:cnslink(78)');
g_navNode_32_5=g_navNode_32.addNode('11403','Identit\xe4ts-\x20und\x20Authenfizierungsressourcen','javascript:cnslink(79)');
g_navNode_32_5_0=g_navNode_32_5.addNode('11436','Definition\x20der\x20Identit\xe4ts-\x20und\x20Authentifizierungsbegriffe','javascript:cnslink(80)');
g_navNode_32_5_1=g_navNode_32_5.addNode('11437','Fraud\x20Detection\x20Service\x20Overview','javascript:cnslink(81)');
g_navNode_32_5_2=g_navNode_32_5.addNode('11438','Unified\x20Authentication\x20Tour','javascript:cnslink(82)');
g_navNode_32_5_3=g_navNode_32_5.addNode('11439','Strong\x20Authentication\x20Demo','javascript:cnslink(83)');
g_navNode_32_5_4=g_navNode_32_5.addNode('11440','VIP\x20Demo','javascript:cnslink(84)');
g_navNode_32_5_5=g_navNode_32_5.addNode('11441','FDS\x20Tour','javascript:cnslink(85)');
// introduced by connection server
var g_cnsnodes = new Array();
g_cnsnodes[0] = '/index.html';
g_cnsnodes[1] = '/success-stories/index.html';
g_cnsnodes[2] = '/verisign-business-solutions/index.html';
g_cnsnodes[3] = '/support/index.html';
g_cnsnodes[4] = '/verisign-inc/index.html';
g_cnsnodes[5] = '/free-guides-and-trials/index.html';
g_cnsnodes[6] = '/repository/index.html';
g_cnsnodes[7] = '/compref/index.html';
g_cnsnodes[8] = '/resources/index.html';
g_cnsnodes[9] = '/resources/data-sheets/index.html';
g_cnsnodes[10] = '/resources/white-papers/index.html';
g_cnsnodes[11] = '/resources/guides/index.html';
g_cnsnodes[12] = '/confirm/index.html';
g_cnsnodes[13] = '/security-services/index.html';
g_cnsnodes[14] = '/pki/index.html';
g_cnsnodes[15] = '/pki/pki-security/index.html';
g_cnsnodes[16] = '/pki/pki-security/public-key-infrastructure/index.html';
g_cnsnodes[17] = '/pki/pki-security/smart-card/index.html';
g_cnsnodes[18] = '/pki/pki-security/trusted-messaging/index.html';
g_cnsnodes[19] = '/pki/pki-security/pki-solution/index.html';
g_cnsnodes[20] = '/pki/pki-security/pki-solution/web-application/index.html';
g_cnsnodes[21] = '/pki/pki-security/pki-solution/microsoft-exchange/index.html';
g_cnsnodes[22] = '/pki/pki-security/pki-solution/lotus-notes/index.html';
g_cnsnodes[23] = '/pki/pki-security/pki-solution/vpn-solutions/index.html';
g_cnsnodes[24] = '/pki/pki-security/wireless-roaming/index.html';
g_cnsnodes[25] = '/pki/pki-security/trusted-form-signing/index.html';
g_cnsnodes[26] = '/pki/pki-security/email-digital-id/index.html';
g_cnsnodes[27] = '/pki/managed-pki-fast-track/index.html';
g_cnsnodes[28] = '/pki/xml-trust-services/index.html';
g_cnsnodes[29] = '/pki/consulting/index.html';
g_cnsnodes[30] = '/pki/cable-modem-services/index.html';
g_cnsnodes[31] = '/pki/cable-modem-services/cable-modem-authentication/index.html';
g_cnsnodes[32] = '/pki/industry-and-banking/index.html';
g_cnsnodes[33] = '/pki/pki-application/index.html';
g_cnsnodes[34] = '/pki/pki-application/wimax/index.html';
g_cnsnodes[35] = '/pki/device-certificate-service/index.html';
g_cnsnodes[36] = '/intelligence-and-control-services/index.html';
g_cnsnodes[37] = '/information-services/index.html';
g_cnsnodes[38] = '/communications/index.html';
g_cnsnodes[39] = '/gsm-suite/index.html';
g_cnsnodes[40] = '/authentication/index.html';
g_cnsnodes[41] = '/authentication/consumer-authentication/index.html';
g_cnsnodes[42] = '/authentication/consumer-authentication/identity-protection/index.html';
g_cnsnodes[43] = '/authentication/consumer-authentication/vip-authentication/index.html';
g_cnsnodes[44] = '/authentication/consumer-authentication/shared-authentication-network/index.html';
g_cnsnodes[45] = '/authentication/consumer-authentication/vip-fraud-detection-services/index.html';
g_cnsnodes[46] = '/authentication/consumer-authentication/vip-fraud-detection-services/stock-trading-module/index.html';
g_cnsnodes[47] = '/authentication/consumer-authentication/two-factor-authentication/index.html';
g_cnsnodes[48] = '/authentication/consumer-authentication/consumer-confidence/index.html';
g_cnsnodes[49] = '/authentication/consumer-authentication/better-user-experience/index.html';
g_cnsnodes[50] = '/authentication/consumer-authentication/open-standards-authentication/index.html';
g_cnsnodes[51] = '/authentication/consumer-authentication/secure-online-banking/index.html';
g_cnsnodes[52] = '/authentication/consumer-authentication/trial/index.html';
g_cnsnodes[53] = '/authentication/enterprise-authentication/index.html';
g_cnsnodes[54] = '/authentication/enterprise-authentication/pki-infrastructure-solutions/index.html';
g_cnsnodes[55] = '/authentication/enterprise-authentication/information-security-risk-management/index.html';
g_cnsnodes[56] = '/authentication/enterprise-authentication/secure-remote-access/index.html';
g_cnsnodes[57] = '/authentication/enterprise-authentication/security-regulation-compliance/index.html';
g_cnsnodes[58] = '/authentication/enterprise-authentication/enterprise-otp/index.html';
g_cnsnodes[59] = '/authentication/enterprise-authentication/managed-pki/index.html';
g_cnsnodes[60] = '/authentication/enterprise-authentication/unified-authentication-pki-windows/index.html';
g_cnsnodes[61] = '/authentication/enterprise-authentication/device-certificate-services/index.html';
g_cnsnodes[62] = '/authentication/enterprise-authentication/device-certificate-services/cable-modem-authentication/index.html';
g_cnsnodes[63] = '/authentication/enterprise-authentication/device-certificate-services/cable-modem-authentication/docsis-root/index.html';
g_cnsnodes[64] = '/authentication/enterprise-authentication/device-certificate-services/cable-modem-authentication/packet-cable-root/index.html';
g_cnsnodes[65] = '/authentication/enterprise-authentication/processing-center-pki/index.html';
g_cnsnodes[66] = '/authentication/enterprise-authentication/vertical-service-provider-pki/index.html';
g_cnsnodes[67] = '/authentication/enterprise-authentication/adobe-acrobat-credentials/index.html';
g_cnsnodes[68] = '/authentication/enterprise-authentication/test-drive/index.html';
g_cnsnodes[69] = '/authentication/individual-authentication/index.html';
g_cnsnodes[70] = '/authentication/individual-authentication/protect-yourself-online/index.html';
g_cnsnodes[71] = '/authentication/individual-authentication/digital-id/index.html';
g_cnsnodes[72] = '/authentication/individual-authentication/certified-electronic-document-signing/index.html';
g_cnsnodes[73] = '/authentication/individual-authentication/certified-electronic-document-signing/faq/index.html';
g_cnsnodes[74] = '/authentication/individual-authentication/mortgage-industry-certificate/index.html';
g_cnsnodes[75] = '/authentication/individual-authentication/mortgage-industry-certificate/enrollment/index.html';
g_cnsnodes[76] = '/authentication/individual-authentication/mortgage-industry-certificate/enrollment/confirmation/index.html';
g_cnsnodes[77] = '/authentication/why-verisign/index.html';
g_cnsnodes[78] = '/authentication/authentication-product-list/index.html';
g_cnsnodes[79] = '/authentication/authentication-resources/index.html';
g_cnsnodes[80] = '/authentication/authentication-resources/terms-defined-glossary/index.html';
g_cnsnodes[81] = '/authentication/authentication-resources/fraud-detection-services-overview/index.html';
g_cnsnodes[82] = '/authentication/authentication-resources/unified-authentication-tour/index.html';
g_cnsnodes[83] = '/authentication/authentication-resources/strong-authentication-tour/index.html';
g_cnsnodes[84] = '/authentication/authentication-resources/vip-demo/index.html';
g_cnsnodes[85] = '/authentication/authentication-resources/fraud-detection-services-tour/index.html';
function cnslink(pageid) {
var newUrl = '';
newUrl += g_prefixToStaticRoot;
newUrl += g_cnsnodes[pageid];
window.location = newUrl;
}
