



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('9325','France\x20Accueil\x20','javascript:cnslink(0)',null);
g_navNode_2=g_navNode_Root.addNode('9328','Solutions','javascript:cnslink(1)');
g_navNode_3=g_navNode_Root.addNode('9329','Support','javascript:cnslink(2)');
g_navNode_4=g_navNode_Root.addNode('9330','\xc0\x20propos\x20de\x20VeriSign\x20','javascript:cnslink(3)','secondaryUrlVariableField==region1');
g_navNode_5=g_navNode_Root.addNode('9332','Entreprises','javascript:cnslink(4)');
g_navNode_6=g_navNode_Root.addNode('9333','Manuels\x20gratuits','javascript:cnslink(5)');
g_navNode_7=g_navNode_Root.addNode('9334','Archives\x20de\x20r\xe9f\xe9rence','javascript:cnslink(6)','secondaryUrlVariableField==region1');
g_navNode_8=g_navNode_Root.addNode('9336','compref','javascript:cnslink(7)','secondaryUrlVariableField==region1');
g_navNode_17=g_navNode_Root.addNode('9337','Services\x20de\x20s\xe9curit\xe9','javascript:cnslink(8)');
g_navNode_18=g_navNode_Root.addNode('9348','PKI\x20et\x20services\x20d\'authentification','javascript:cnslink(9)');
g_navNode_18_0=g_navNode_18.addNode('9349','Core\x20Managed\x20PKI','javascript:cnslink(10)');
g_navNode_18_0_0=g_navNode_18_0.addNode('9354','Solutions\x20Go\x20Secure\x21','javascript:cnslink(11)');
g_navNode_18_0_0_0=g_navNode_18_0_0.addNode('9355','Go\x20Secure\x21\x20pour\x20applications\x20Web','javascript:cnslink(12)');
g_navNode_18_0_0_1=g_navNode_18_0_0.addNode('9356','Go\x20Secure\x21\x20pour\x20applications\x20Microsoft','javascript:cnslink(13)');
g_navNode_18_0_0_2=g_navNode_18_0_0.addNode('9357','Go\x20Secure\x20pour\x20Lotus\x20Notes','javascript:cnslink(14)');
g_navNode_18_0_0_3=g_navNode_18_0_0.addNode('9358','Solutions\x20VPN','javascript:cnslink(15)');
g_navNode_18_0_1=g_navNode_18_0.addNode('9361','Roaming','javascript:cnslink(16)');
g_navNode_18_0_2=g_navNode_18_0.addNode('9363','Signature\x20de\x20formulaires\x20approuv\xe9e\x20-\x20Signature\x20de\x20documents\x20VeriSign\x20','javascript:cnslink(17)');
g_navNode_18_0_3=g_navNode_18_0.addNode('9365','Identificateurs\x20num\xe9riques\x20pour\x20courrier\x20\xe9lectronique\x20s\xe9curis\xe9','javascript:cnslink(18)');
g_navNode_18_0_4=g_navNode_18_0.addNode('9360','Services\x20de\x20gestion\x20des\x20cl\xe9s','javascript:cnslink(19)');
g_navNode_18_0_5=g_navNode_18_0.addNode('9362','Solutions\x20d\'authentification\x20par\x20Smart\x20Card','javascript:cnslink(20)');
g_navNode_18_0_6=g_navNode_18_0.addNode('9364','Messagerie\x20s\xe9curis\xe9e','javascript:cnslink(21)');
g_navNode_18_1=g_navNode_18.addNode('9350','Managed\x20PKI\x20Fast\x20Track\x20-\x20Voie\x20rapide\x20pour\x20la\x20gestion\x20des\x20icp','javascript:cnslink(22)');
g_navNode_18_2=g_navNode_18.addNode('9351','Services\x20de\x20s\xe9curisation\x20XML\x20','javascript:cnslink(23)');
g_navNode_18_3=g_navNode_18.addNode('9352','Consultance','javascript:cnslink(24)');
g_navNode_18_4=g_navNode_18.addNode('9353','Services\x20par\x20c\xe2ble\x20modem','javascript:cnslink(25)');
g_navNode_18_4_0=g_navNode_18_4.addNode('9366','Service\x20d\'authentification\x20par\x20c\xe2ble\x20modem','javascript:cnslink(26)');
g_navNode_19=g_navNode_Root.addNode('9368','Services\x20d\xb4info','javascript:cnslink(27)');
g_navNode_20=g_navNode_Root.addNode('9371','Services\x20de\x20communications','javascript:cnslink(28)','secondaryUrlVariableField==region1');
g_navNode_21=g_navNode_Root.addNode('9372','Suite\x20de\x20services\x20GSM','javascript:cnslink(29)');
g_navNode_27=g_navNode_Root.addNode('11518','VeriSign\x20Identity\x20and\x20Authentication\x20Services','javascript:cnslink(30)');
// introduced by connection server
var g_cnsnodes = new Array();
g_cnsnodes[0] = '/index.html';
g_cnsnodes[1] = '/verisign-business-solutions/index.html';
g_cnsnodes[2] = '/support/index.html';
g_cnsnodes[3] = '/verisign-inc/index.html';
g_cnsnodes[4] = '/enterprise-solution/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] = '/security-services/index.html';
g_cnsnodes[9] = '/pki/index.html';
g_cnsnodes[10] = '/pki/pki-security/index.html';
g_cnsnodes[11] = '/pki/pki-security/pki-solution/index.html';
g_cnsnodes[12] = '/pki/pki-security/pki-solution/web-application/index.html';
g_cnsnodes[13] = '/pki/pki-security/pki-solution/microsoft-exchange/index.html';
g_cnsnodes[14] = '/pki/pki-security/pki-solution/lotus-notes/index.html';
g_cnsnodes[15] = '/pki/pki-security/pki-solution/vpn-solutions/index.html';
g_cnsnodes[16] = '/pki/pki-security/wireless-roaming/index.html';
g_cnsnodes[17] = '/pki/pki-security/trusted-form-signing/index.html';
g_cnsnodes[18] = '/pki/pki-security/email-digital-id/index.html';
g_cnsnodes[19] = '/pki/pki-security/public-key-infrastructure/index.html';
g_cnsnodes[20] = '/pki/pki-security/smart-card/index.html';
g_cnsnodes[21] = '/pki/pki-security/trusted-messaging/index.html';
g_cnsnodes[22] = '/pki/managed-pki-fast-track/index.html';
g_cnsnodes[23] = '/pki/xml-trust-services/index.html';
g_cnsnodes[24] = '/pki/consulting/index.html';
g_cnsnodes[25] = '/pki/cable-modem-services/index.html';
g_cnsnodes[26] = '/pki/cable-modem-services/cable-modem-authentication/index.html';
g_cnsnodes[27] = '/information-services/index.html';
g_cnsnodes[28] = '/communications/index.html';
g_cnsnodes[29] = '/gsm-suite/index.html';
g_cnsnodes[30] = '/authentication/index.html';
function cnslink(pageid) {
var newUrl = '';
newUrl += g_prefixToStaticRoot;
newUrl += g_cnsnodes[pageid];
window.location = newUrl;
}