/////////////////////////////////////////////////////////////////////////////
// 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 : customSectionPropertyExists
// Comments :
/////////////////////////////////////////////////////////////////////////////
function customSectionPropertyExists(csp)
{
	return (typeof csp != _U && csp != null);
}

/////////////////////////////////////////////////////////////////////////////
// Function : getCustomSectionProperty
// Comments :
/////////////////////////////////////////////////////////////////////////////
function getCustomSectionProperty(csp)
{
	if (customSectionPropertyExists(csp))
	{
		return csp;
	}
	else
	{
		return "";
	}
}

/////////////////////////////////////////////////////////////////////////////

var g_navNode_Root = new NavNode('2698','Home',ssUrlPrefix + 'index.htm',null,'EnglishSectionLabel==Declaration\x3a Home page','FrenchSectionLabel==Declaration\x3a Page d\\x27accueil','IsSurveyMonkeyOn==TRUE','ListNodeId_2==2755','Query_2==\x28dDocType \x3cmatches\x3e \x60NewsItem\x60\x29','SiteSupplementalSectionId==2699','SpanishSectionLabel==Declaration\x3a P\xe1gina de entrada','secondaryUrlVariableField==region1');
g_navNode_0=g_navNode_Root.addNode('2749','The Declaration',ssUrlPrefix + 'thedeclaration/index.htm','EnglishSectionLabel==The Declaration','FrenchSectionLabel==La D\xe9claration','Redirect==FALSE','SpanishSectionLabel==La Declaraci\xf3n');
g_navNode_0_1=g_navNode_0.addNode('2751','The text of the Declaration and its follow-up',ssUrlPrefix + 'thedeclaration/textdeclaration/index.htm','EnglishSectionLabel==The text of the Declaration and its follow-up','FrenchSectionLabel==Texte de la D\xe9claration et de son suivi','SpanishSectionLabel==Texto de la Declaraci\xf3n y su seguimiento','secondaryUrlVariableField==region1');
g_navNode_0_2=g_navNode_0.addNode('2752','Background',ssUrlPrefix + 'thedeclaration/background/index.htm','EnglishSectionLabel==Background','FrenchSectionLabel==Contexte','SpanishSectionLabel==Antecedentes');
g_navNode_0_3=g_navNode_0.addNode('2753','History',ssUrlPrefix + 'thedeclaration/history/index.htm','EnglishSectionLabel==History','FrenchSectionLabel==Historique','SpanishSectionLabel==Historia','secondaryUrlVariableField==region1');
g_navNode_1=g_navNode_Root.addNode('2744','The four fundamental principles and rights at work',ssUrlPrefix + 'principles/index.htm','EnglishSectionLabel==The four fundamental principles and rights at work','FacetBoxTitleEnglish==by principle','FacetSetTitleEnglish==Resources','FrenchSectionLabel==Les principes et droits fondamentaux au travail','PrimaryFacetType==LOC.DECL','PrimaryFacetValue==DECL.NULL','Redirect==TRUE','RedirectLink==ssNODELINK/declaration/2745','SpanishSectionLabel==Los principios y derechos fundamentales en el trabajo','secondaryUrlVariableField==region1');
g_navNode_1_0=g_navNode_1.addNode('2745','Freedom of association and the effective recognition of the right to collective bargaining',ssUrlPrefix + 'principles/freedomofassociation/index.htm','EnglishSectionLabel==Freedom of association and the effective recognition of the right to collective bargaining','FrenchSectionLabel==Libert\xe9 d\\x27association et reconnaissance effective du droit de n\xe9gociation collective','SpanishSectionLabel==Libertad de asociaci\xf3n y la libertad sindical y el reconocimiento efectivo del derecho de negociaci\xf3n colectiva ');
g_navNode_1_1=g_navNode_1.addNode('2746','Elimination of all forms of forced or compulsory labour',ssUrlPrefix + 'principles/eliminationofchildlabour/index.htm','EnglishSectionLabel==Elimination of all forms of forced or compulsory labour','FacetBoxTitleEnglish==by country','FacetQueryIndex==-1','FrenchSectionLabel==Elimination de toute forme de travail forc\xe9 ou obligatoire','PrimaryFacetType==GEO','PrimaryFacetValue==AFG','SpanishSectionLabel==Eliminaci\xf3n de todas las formas de trabajo forzoso u obligatorio');
g_navNode_1_2=g_navNode_1.addNode('2747','Effective abolition of child labour',ssUrlPrefix + 'principles/abolitionofchildlabour/index.htm','EnglishSectionLabel==Effective abolition of child labour','FrenchSectionLabel==Abolition effective du travail des enfants','SpanishSectionLabel==Abolici\xf3n efectiva del trabajo infantil');
g_navNode_1_3=g_navNode_1.addNode('2748','Elimination of discrimination in respect of employment and occupation',ssUrlPrefix + 'principles/eliminationofdiscrimination/index.htm','EnglishSectionLabel==Elimination of discrimination in respect of employment and occupation','FrenchSectionLabel==Elimination de la discrimination en mati\xe8re d\\x27emploi et de profession','SpanishSectionLabel==Eliminaci\xf3n de la discriminaci\xf3n en materia de empleo y ocupaci\xf3n');
g_navNode_2=g_navNode_Root.addNode('2738','Follow-up to the Declaration',ssUrlPrefix + 'follow-up/index.htm','EnglishSectionLabel==Follow-up to the Declaration','FrenchSectionLabel==Suivi de la D\xe9claration','Redirect==TRUE','RedirectLink==ssNODELINK/declaration/2740','SpanishSectionLabel==Seguimiento de la Declaraci\xf3n');
g_navNode_2_0=g_navNode_2.addNode('2739','Annual review',ssUrlPrefix + 'follow-up/annualreview/index.htm','EnglishSectionLabel==Annual review','FrenchSectionLabel==Examen annuel','Redirect==TRUE','RedirectLink==ssNODELINK/declaration/2740','SpanishSectionLabel==Examen anual');
g_navNode_2_0_0=g_navNode_2_0.addNode('2740','Introduction to the compilation of annual reports',ssUrlPrefix + 'follow-up/annualreview/annualreports/index.htm','DefaultGroupType==1','EnglishSectionLabel==Introduction to the compilation of annual reports','FrenchSectionLabel==Introduction \xe0 la compilation des rapports annuels','Query_1==dDocType \x3cmatches\x3e \x60MeetingDocument\x60  \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/RELCONF\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60declaration\x60','SpanishSectionLabel==Introduction to the compilation in Spanish');
g_navNode_2_0_1=g_navNode_2_0.addNode('2741','Compilation of country baselines',ssUrlPrefix + 'follow-up/annualreview/countrybaselines/index.htm','EnglishSectionLabel==Current compilation of country baselines','FrenchSectionLabel==Compilation actuelle des baselines par pays','SpanishSectionLabel==Compilation actuelle des baselines par pays','secondaryUrlVariableField==region1');
g_navNode_2_0_2=g_navNode_2_0.addNode('2742','Observations by international employers and workers organizations',ssUrlPrefix + 'follow-up/annualreview/employersandworkers/index.htm','EnglishSectionLabel==Observations by international employers and workers organizations','FrenchSectionLabel==Observations par les organisations internationales d\u2019employeurs et de travailleurs','secondaryUrlVariableField==region1');
g_navNode_2_0_3=g_navNode_2_0.addNode('2743','Status by country',ssUrlPrefix + 'follow-up/annualreview/ratificationstatus/index.htm','EnglishSectionLabel==Status by country','FrenchSectionLabel==Situation par pays','SpanishSectionLabel==Situaci\xf3n por pa\xeds');
g_navNode_2_0_4=g_navNode_2_0.addNode('2871','Archive of baselines by country',ssUrlPrefix + 'follow-up/annualreview/archiveofbaselinesbycountry/index.htm','DefaultGroupType==-1','EnglishSectionLabel==Archive of baselines by country','FacetBoxTitleEnglish==by type','FacetQueryIndex==2','FacetSetTitleEnglish==Country baselines','Facet_1==2744','Facet_2==2746','FrenchSectionLabel==Archive des baselines par pays','ListNodeId_2==2871','PrimaryFacetType==TYP','PrimaryFacetValue==Publication','Query_2==\x28dDocType \x3cmatches\x3e \x60Publication\x60  \x3cAND\x3e  xTypeSubtype \x3cmatches\x3e \x6041\x60  \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60  \x3cAND\x3e  xCustomText \x3cmatches\x3e \x60baseline\x60\x29\x3c\x24SortSpec\x3d\"dDocTitle ASC\"\x24\x3e','SpanishSectionLabel==Archive of baselines by country in Spanish','secondaryUrlVariableField==region1');
g_navNode_2_0_5=g_navNode_2_0.addNode('2909','Report forms',ssUrlPrefix + 'follow-up/annualreview/Reportforms/index.htm','EnglishSectionLabel==Report forms','FrenchSectionLabel==Formulaires de rapport','SpanishSectionLabel==Formularios de memoria ','secondaryUrlVariableField==region1');
g_navNode_2_1=g_navNode_2.addNode('2737','Global reports',ssUrlPrefix + 'follow-up/globalreports/index.htm','DefaultGroupType==1','EnglishSectionLabel==Global reports','FrenchSectionLabel==Rapports globaux','Query_1==\x28dDocType \x3cmatches\x3e \x60Publication\x60  \x3cAND\x3e  xTypeSubtype \x3cmatches\x3e \x6041\x60  \x3cAND\x3e  xCollection \x3csubstring\x3e \x606\x60  \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Informes globales','secondaryUrlVariableField==region1');
g_navNode_2_2=g_navNode_2.addNode('2732','Technical cooperation projects',ssUrlPrefix + 'follow-up/tcprojects/index.htm','DefaultGroupFieldName==xDateAvailableEndDate','DefaultGroupType==1','EnglishSectionLabel==Technical cooperation projects','FrenchSectionLabel==Projets de coop\xe9ration technique','Query_1==dDocType \x3cmatches\x3e \x60Project\x60  \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60','Redirect==FALSE','SpanishSectionLabel==Proyectos de cooperaci\xf3n t\xe9cnica','secondaryUrlVariableField==region1');
g_navNode_2_2_0=g_navNode_2_2.addNode('2733','Freedom of association and the effective recognition of the right to collective bargaining',ssUrlPrefix + 'follow-up/tcprojects/freedomofassociation/index.htm','DefaultGroupFieldName==xDateAvailableEndDate','DefaultGroupType==1','EnglishSectionLabel==Freedom of association and the effective recognition of the right to collective bargaining','FrenchSectionLabel==Libert\xe9 d\\x27association et reconnaissance effective du droit de n\xe9gociation collective','Query_1==\x28dDocType \x3cmatches\x3e \x60Project\x60  \x3cAND\x3e  xClassification \x3cmatches\x3e \x60DECL.ASSOC\x60  \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Libertad de asociaci\xf3n y la libertad sindical y el reconocimiento efectivo del derecho de negociaci\xf3n colectiva ','secondaryUrlVariableField==region1');
g_navNode_2_2_1=g_navNode_2_2.addNode('2734','Elimination of all forms of forced or compulsory labour',ssUrlPrefix + 'follow-up/tcprojects/eliminationofchildlabour/index.htm','DefaultGroupType==1','EnglishSectionLabel==Elimination of all forms of forced or compulsory labour','FrenchSectionLabel==Elimination de toute forme de travail forc\xe9 ou obligatoire','Query_1==\x28dDocType \x3csubstring\x3e \x60Project\x60  \x3cAND\x3e  xClassification \x3csubstring\x3e \x60DECL.FORCED\x60  \x3cAND\x3e  xOwner \x3csubstring\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Eliminaci\xf3n de todas las formas de trabajo forzoso u obligatorio','secondaryUrlVariableField==region1');
g_navNode_2_2_2=g_navNode_2_2.addNode('2735','Effective abolition of child labour',ssUrlPrefix + 'follow-up/tcprojects/abolitionofchildlabour/index.htm','DefaultGroupFieldName==1','EnglishSectionLabel==Effective abolition of child labour','FrenchSectionLabel==Abolition effective du travail des enfants','Query_1==\x28dDocType \x3cmatches\x3e \x60Project\x60  \x3cAND\x3e  xClassification \x3cmatches\x3e \x60DECL.CHILD\x60  \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Abolici\xf3n efectiva del trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_2_2_3=g_navNode_2_2.addNode('2736','Elimination of discrimination in respect of employment and occupation',ssUrlPrefix + 'follow-up/tcprojects/eliminationofdiscrimination/index.htm','DefaultGroupFieldName==xDateAvailableEndDate','DefaultGroupType==1','EnglishSectionLabel==Elimination of discrimination in respect of employment and occupation','FrenchSectionLabel==Elimination de la discrimination en mati\xe8re d\\x27emploi et de profession','Query_1==\x28dDocType \x3cmatches\x3e \x60Project\x60  \x3cAND\x3e  xClassification \x3cmatches\x3e \x60DECL.DISCRIM\x60  \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Eliminaci\xf3n de la discriminaci\xf3n en materia de empleo y ocupaci\xf3n','secondaryUrlVariableField==region1');
g_navNode_3=g_navNode_Root.addNode('2731','Events and campaigns',ssUrlPrefix + 'events/index.htm','DefaultGroupFieldName==xDateAvailableStartDate','EnglishSectionLabel==Events and campaigns','FrenchSectionLabel==Ev\xe9nements et campagnes','Query_1==\x28dDocType \x3cmatches\x3e \x60Event\x60  \x3cAND\x3e xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Eventos y campa\xf1as','secondaryUrlVariableField==region1');
g_navNode_4=g_navNode_Root.addNode('2712','Information resources',ssUrlPrefix + 'info/index.htm','EnglishSectionLabel==Information resources','FrenchSectionLabel==Sources d\u2019information','Redirect==TRUE','RedirectLink==ssNODELINK/declaration/2713');
g_navNode_4_0=g_navNode_4.addNode('2713','Factsheets',ssUrlPrefix + 'info/factsheets/index.htm','DefaultGroupType==-1','EnglishSectionLabel==Factsheets','FrenchSectionLabel==Fiches d\\x27information','HideInNav==FALSE','Query_2==\x28dDocType \x3cmatches\x3e \x60Publication\x60  \x3cAND\x3e  xTypeSubtype \x3cmatches\x3e \x6010\x60  \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29\x3c\x24SortSpec\x3d\"dDocTitle ASC\"\x24\x3e','Redirect==FALSE','SpanishSectionLabel==Hojas de datos','secondaryUrlVariableField==region1');
g_navNode_4_0_0=g_navNode_4_0.addNode('2714','Freedom of association and the effective recognition of the right to collective bargaining',ssUrlPrefix + 'info/factsheets/freedomofassociation/index.htm','DefaultGroupType==-1','EnglishSectionLabel==Freedom of association and the effective recognition of the right to collective bargaining','FrenchSectionLabel==Libert\xe9 d\\x27association et reconnaissance effective du droit de n\xe9gociation collective','HideInNav==FALSE','Query_2==\x28dDocType \x3cmatches\x3e \x60Publication\x60  \x3cAND\x3e  xTypeSubtype \x3cmatches\x3e \x6010\x60 \x3cAND\x3e  xClassification \x3cmatches\x3e \x60DECL.ASSOC\x60 \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Libertad de asociaci\xf3n y la libertad sindical y el reconocimiento efectivo del derecho de negociaci\xf3n colectiva ','secondaryUrlVariableField==region1');
g_navNode_4_0_1=g_navNode_4_0.addNode('2715','Elimination of all forms of forced or compulsory labour',ssUrlPrefix + 'info/factsheets/eliminationofchildlabour/index.htm','DefaultGroupType==-1','EnglishSectionLabel==Elimination of all forms of forced or compulsory labour','FrenchSectionLabel==Elimination de toute forme de travail forc\xe9 ou obligatoire','HideInNav==FALSE','Query_2==\x28dDocType \x3cmatches\x3e \x60Publication\x60  \x3cAND\x3e  xTypeSubtype \x3cmatches\x3e \x6010\x60 \x3cAND\x3e  xClassification \x3csubstring\x3e \x60DECL.FORCED\x60 \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Eliminaci\xf3n de todas las formas de trabajo forzoso u obligatorio','secondaryUrlVariableField==region1');
g_navNode_4_0_2=g_navNode_4_0.addNode('2716','Effective abolition of child labour',ssUrlPrefix + 'info/factsheets/abolitionofchildlabour/index.htm','DefaultGroupType==-1','EnglishSectionLabel==Effective abolition of child labour','FrenchSectionLabel==Abolition effective du travail des enfants','HideInNav==FALSE','Query_2==\x28dDocType \x3cmatches\x3e \x60Publication\x60  \x3cAND\x3e  xTypeSubtype \x3cmatches\x3e \x6010\x60 \x3cAND\x3e  xClassification \x3csubstring\x3e \x60DECL.CHILD\x60 \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Abolici\xf3n efectiva del trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_4_0_3=g_navNode_4_0.addNode('2717','Elimination of discrimination in respect of employment and occupation',ssUrlPrefix + 'info/factsheets/eliminationofdiscrimination/index.htm','DefaultGroupType==-1','EnglishSectionLabel==Elimination of discrimination in respect of employment and occupation','FrenchSectionLabel==Elimination de la discrimination en mati\xe8re d\\x27emploi et de profession','HideInNav==FALSE','Query_2==\x28dDocType \x3cmatches\x3e \x60Publication\x60  \x3cAND\x3e  xTypeSubtype \x3cmatches\x3e \x6010\x60 \x3cAND\x3e  xClassification \x3csubstring\x3e \x60DECL.DISCRIM\x60 \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Eliminaci\xf3n de la discriminaci\xf3n en materia de empleo y ocupaci\xf3n','secondaryUrlVariableField==region1');
g_navNode_4_1=g_navNode_4.addNode('2719','Links',ssUrlPrefix + 'info/links/index.htm','EnglishSectionLabel==Links','FrenchSectionLabel==Liens','Redirect==TRUE','RedirectLink==ssNODELINK/declaration/2720','SpanishSectionLabel==Enlaces');
g_navNode_4_1_0=g_navNode_4_1.addNode('2720','Freedom of association and the effective recognition of the right to collective bargaining',ssUrlPrefix + 'info/links/freedomofassociation/index.htm','EnglishSectionLabel==Freedom of association and the effective recognition of the right to collective bargaining','FrenchSectionLabel==Libert\xe9 d\\x27association et reconnaissance effective du droit de n\xe9gociation collective','SpanishSectionLabel==Libertad de asociaci\xf3n y la libertad sindical y el reconocimiento efectivo del derecho de negociaci\xf3n colectiva ');
g_navNode_4_1_1=g_navNode_4_1.addNode('2721','Elimination of all forms of forced or compulsory labour',ssUrlPrefix + 'info/links/eliminationofchildlabour/index.htm','EnglishSectionLabel==Elimination of all forms of forced or compulsory labour','FrenchSectionLabel==Elimination de toute forme de travail forc\xe9 ou obligatoire','SpanishSectionLabel==Eliminaci\xf3n de todas las formas de trabajo forzoso u obligatorio');
g_navNode_4_1_2=g_navNode_4_1.addNode('2722','Effective abolition of child labour',ssUrlPrefix + 'info/links/abolitionofchildlabour/index.htm','EnglishSectionLabel==Effective abolition of child labour','FrenchSectionLabel==Abolition effective du travail des enfants','SpanishSectionLabel==Abolici\xf3n efectiva del trabajo infantil');
g_navNode_4_1_3=g_navNode_4_1.addNode('2723','Elimination of discrimination in respect of employment and occupation',ssUrlPrefix + 'info/links/eliminationofdiscrimination/index.htm','EnglishSectionLabel==Elimination of discrimination in respect of employment and occupation','FrenchSectionLabel==Elimination de la discrimination en mati\xe8re d\\x27emploi et de profession','SpanishSectionLabel==Eliminaci\xf3n de la discriminaci\xf3n en materia de empleo y ocupaci\xf3n');
g_navNode_4_2=g_navNode_4.addNode('2724','Photo gallery',ssUrlPrefix + 'info/photogallery/index.htm','EnglishSectionLabel==Photo gallery','FrenchSectionLabel==Galerie photo','SpanishSectionLabel==Galer\xeda de fotos');
g_navNode_4_3=g_navNode_4.addNode('2725','Speeches',ssUrlPrefix + 'info/speeches/index.htm','EnglishSectionLabel==Speeches and presentations','FrenchSectionLabel==Discours','Query_1==\x28dDocType \x3cmatches\x3e \x60Statement\x60  \x3cAND\x3e xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Discursos','secondaryUrlVariableField==region1');
g_navNode_4_4=g_navNode_4.addNode('2726','Publications',ssUrlPrefix + 'info/publications/index.htm','DefaultGroupType==-1','EnglishSectionLabel==Publications','FrenchSectionLabel==Publications','Query_2==\x28dDocType \x3cmatches\x3e \x60Publication\x60  \x3cAND\x3e\x3cNOT\x3e  xTypeSubtype \x3cmatches\x3e \x6010\x60  \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','Redirect==FALSE','SpanishSectionLabel==Publicaciones','secondaryUrlVariableField==region1');
g_navNode_4_4_0=g_navNode_4_4.addNode('2727','Freedom of association and the effective recognition of the right to collective bargaining',ssUrlPrefix + 'info/publications/freedomofassociation/index.htm','DefaultGroupType==-1','EnglishSectionLabel==Freedom of association and the effective recognition of the right to collective bargaining','FrenchSectionLabel==Libert\xe9 d\\x27association et reconnaissance effective du droit de n\xe9gociation collective','HideInNav==FALSE','Query_2==\x28dDocType \x3cmatches\x3e \x60Publication\x60  \x3cAND\x3e\x3cNOT\x3e  xTypeSubtype \x3cmatches\x3e \x6010\x60  \x3cAND\x3e  xClassification \x3csubstring\x3e \x60DECL.ASSOC\x60 \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Libertad de asociaci\xf3n y la libertad sindical y el reconocimiento efectivo del derecho de negociaci\xf3n colectiva ','secondaryUrlVariableField==region1');
g_navNode_4_4_1=g_navNode_4_4.addNode('2728','Elimination of all forms of forced or compulsory labour',ssUrlPrefix + 'info/publications/eliminationofchildlabour/index.htm','DefaultGroupType==-1','EnglishSectionLabel==Elimination of all forms of forced or compulsory labour','FrenchSectionLabel==Elimination de toute forme de travail forc\xe9 ou obligatoire','HideInNav==FALSE','Query_2==\x28dDocType \x3cmatches\x3e \x60Publication\x60  \x3cAND\x3e\x3cNOT\x3e  xTypeSubtype \x3cmatches\x3e \x6010\x60  \x3cAND\x3e  xClassification \x3csubstring\x3e \x60DECL.FORCED\x60 \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Eliminaci\xf3n de todas las formas de trabajo forzoso u obligatorio','secondaryUrlVariableField==region1');
g_navNode_4_4_2=g_navNode_4_4.addNode('2729','Effective abolition of child labour',ssUrlPrefix + 'info/publications/abolitionofchildlabour/index.htm','DefaultGroupType==-1','EnglishSectionLabel==Effective abolition of child labour','FrenchSectionLabel==Abolition effective du travail des enfants','HideInNav==FALSE','Query_2==\x28dDocType \x3cmatches\x3e \x60Publication\x60  \x3cAND\x3e\x3cNOT\x3e  xTypeSubtype \x3cmatches\x3e \x6010\x60  \x3cAND\x3e  xClassification \x3csubstring\x3e \x60DECL.CHILD\x60 \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Abolici\xf3n efectiva del trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_4_4_3=g_navNode_4_4.addNode('2730','Elimination of discrimination in respect of employment and occupation',ssUrlPrefix + 'info/publications/eliminationofdiscrimination/index.htm','DefaultGroupType==-1','EnglishSectionLabel==Elimination of discrimination in respect of employment and occupation','FrenchSectionLabel==Elimination de la discrimination en mati\xe8re d\\x27emploi et de profession','HideInNav==FALSE','Query_2==\x28dDocType \x3cmatches\x3e \x60Publication\x60  \x3cAND\x3e\x3cNOT\x3e  xTypeSubtype \x3cmatches\x3e \x6010\x60  \x3cAND\x3e  xClassification \x3csubstring\x3e \x60DECL.DISCRIM\x60 \x3cAND\x3e  xOwner \x3cmatches\x3e \x60ED_NORM/DECLARATION\x60\x29','SpanishSectionLabel==Eliminaci\xf3n de la discriminaci\xf3n en materia de empleo y ocupaci\xf3n','secondaryUrlVariableField==region1');
g_navNode_5=g_navNode_Root.addNode('2699','Supplemental Navigation',ssUrlPrefix + 'SupplementalNavigation/index.htm','HideInNav==TRUE');
g_navNode_5_0=g_navNode_5.addNode('2701','Contact us',ssUrlPrefix + 'SupplementalNavigation/Contactus/index.htm','EnglishSectionLabel==Contact us','FrenchSectionLabel==Contactez-nous','SpanishSectionLabel==Cont\xe1ctenos','secondaryUrlVariableField==region1');
g_navNode_5_1=g_navNode_5.addNode('2707','Site map',ssUrlPrefix + 'SupplementalNavigation/Sitemap/index.htm','EnglishSectionLabel==Site map','FrenchSectionLabel==Plan du site','SpanishSectionLabel==Mapa del sitio');
g_navNode_5_2=g_navNode_5.addNode('2700','Disclaimer',ssUrlPrefix + 'SupplementalNavigation/Disclaimer/index.htm','HideInNav==TRUE');
g_navNode_5_3=g_navNode_5.addNode('2702','Site Search',ssUrlPrefix + 'SupplementalNavigation/SiteSearch/index.htm','HideInNav==TRUE','secondaryUrlVariableField==region1');
g_navNode_5_3_0=g_navNode_5_3.addNode('2703','Contextual Search Results',ssUrlPrefix + 'SupplementalNavigation/SiteSearch/ContextualSearchResults/index.htm','secondaryUrlVariableField==region1');
g_navNode_5_3_1=g_navNode_5_3.addNode('2704','Search Results',ssUrlPrefix + 'SupplementalNavigation/SiteSearch/SearchResults/index.htm','secondaryUrlVariableField==region1');
g_navNode_5_3_2=g_navNode_5_3.addNode('2705','Advanced Search Result',ssUrlPrefix + 'SupplementalNavigation/SiteSearch/AdvancedSearchResult/index.htm','secondaryUrlVariableField==region1');
g_navNode_6=g_navNode_Root.addNode('2708','Error Handler',ssUrlPrefix + 'ErrorHandler/index.htm','HideInNav==TRUE');
g_navNode_9=g_navNode_Root.addNode('2755','What\'s new',ssUrlPrefix + 'whatsnew/index.htm','EnglishSectionLabel==What\\x27s new','FrenchSectionLabel==Nouvelles','HideInNav==TRUE','secondaryUrlVariableField==region1');
