/////////////////////////////////////////////////////////////////////////////
// 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('2220','Home',ssUrlPrefix + 'index.htm',null,'EnglishBreadCrumbLabel==Indigenous and Tribal Peoples','EnglishSectionLabel==Indigenous and Tribal Peoples','FrenchBreadCrumbLabel==Peuples Indig\xe8nes et Tribaux','FrenchSectionLabel==Peuples Indig\xe8nes et Tribaux','IsSurveyMonkeyOn==TRUE','MaxAgeSecPage==1','NavigationRootLevel==0','SiteSupplementalSectionId==2221','SpanishBreadCrumbLabel==Pueblos Ind\xedgenas y Tribales','SpanishSectionLabel==Pueblos Ind\xedgenas y Tribales','maxAge==3600');
g_navNode_0=g_navNode_Root.addNode('2255','About us',ssUrlPrefix + 'Aboutus/index.htm','EnglishSectionLabel==About us','FrenchSectionLabel==Pr\xe9sentation','SpanishSectionLabel==\xbfQui\xe9nes somos?');
g_navNode_0_0=g_navNode_0.addNode('2263','History of ILO\'s work',ssUrlPrefix + 'Aboutus/HistoryofILOswork/index.htm','EnglishSectionLabel==History of ILO\u2019s work','FrenchSectionLabel==Histoire du travail de l\u2019OIT','SpanishSectionLabel==Historia de la labor de la OIT');
g_navNode_0_1=g_navNode_0.addNode('2264','Programme to Promote ILO Convention No. 169 \x28PRO 169\x29',ssUrlPrefix + 'Aboutus/PRO169/index.htm','EnglishSectionLabel==Programme to Promote ILO Convention No. 169 \x28PRO 169\x29','FrenchSectionLabel==Programme pour la promotion de la Convention n\xb0 169 de l\\x27OIT','SpanishSectionLabel==Programa para promover el Convenio n\xfam. 169 \x28PRO 169\x29');
g_navNode_0_2=g_navNode_0.addNode('2265','IP/LED programme',ssUrlPrefix + 'Aboutus/INDISCO/index.htm','EnglishSectionLabel==IP/LED programme','FrenchSectionLabel==Developpement economique local et peuples indigenes \x28IP/LED\x29','SpanishSectionLabel==Programa IP/LED');
g_navNode_0_3=g_navNode_0.addNode('2266','Equality team',ssUrlPrefix + 'Aboutus/Equalityteam/index.htm','EnglishSectionLabel==Equality team','FrenchSectionLabel==Equipe de l\u2019\xe9galit\xe9','SpanishSectionLabel==Equipo de Equidad');
g_navNode_0_4=g_navNode_0.addNode('2267','Meet the staff',ssUrlPrefix + 'Aboutus/Meetthestaff/index.htm','EnglishSectionLabel==Meet the staff','FrenchSectionLabel==Le personnel','SpanishSectionLabel==Conozca al personal');
g_navNode_1=g_navNode_Root.addNode('2256','Conventions',ssUrlPrefix + 'Conventions/index.htm','EnglishSectionLabel==Conventions','FrenchSectionLabel==Conventions','SpanishSectionLabel==Convenios');
g_navNode_1_0=g_navNode_1.addNode('2260','Convention No. 107',ssUrlPrefix + 'Conventions/no107/index.htm','EnglishSectionLabel==Convention No. 107','FrenchSectionLabel==Convention n\xb0 107','SpanishSectionLabel==Convenio No. 107');
g_navNode_1_1=g_navNode_1.addNode('2261','Convention No. 169',ssUrlPrefix + 'Conventions/no169/index.htm','EnglishSectionLabel==Convention No. 169','FrenchSectionLabel==Convention n\xb0 169','SpanishSectionLabel==Convenio No. 169');
g_navNode_1_2=g_navNode_1.addNode('2262','Supervision',ssUrlPrefix + 'Conventions/Supervision/index.htm','EnglishSectionLabel==Supervision','FrenchSectionLabel==Supervision','SpanishSectionLabel==Supervisi\xf3n');
g_navNode_2=g_navNode_Root.addNode('2257','Themes',ssUrlPrefix + 'Themes/index.htm','EnglishSectionLabel==Themes','FacetBoxTitleEnglish==by theme','FacetBoxTitleFrench==par th\xe8me','FacetBoxTitleSpanish==por tema','FacetSetTitleEnglish==Resources','FacetSetTitleFrench==Ressources','FacetSetTitleSpanish==Recursos','FrenchSectionLabel==Th\xe8mes','PrimaryFacetType==LOC.IND','SpanishSectionLabel==Temas');
g_navNode_2_1=g_navNode_2.addNode('2269','Child labour',ssUrlPrefix + 'Themes/Childlabour/index.htm','EnglishSectionLabel==Child labour','FacetBoxTitleEnglish==by area of work','FacetBoxTitleFrench==par th\xe8me','FacetBoxTitleSpanish==par tema','FacetQueryIndex==-1','FacetSetTitleEnglish==Resources','FacetSetTitleFrench==Ressources','FacetSetTitleSpanish==Recursos','FrenchSectionLabel==Travail des enfants','PrimaryFacetType==LOC.IND','PrimaryFacetValue==IND.CHLAB','SpanishSectionLabel==Trabajo infantil');
g_navNode_2_1_0=g_navNode_2_1.addNode('3054','Activities',ssUrlPrefix + 'Themes/Childlabour/activities/index.htm','DefaultGroupFieldName==xDateIssued','DefaultGroupType==1','EnglishSectionLabel==Activities and resources on child labour','FacetBoxTitleEnglish==by theme','FacetBoxTitleFrench==par th\xe8me','FacetBoxTitleSpanish==por tema ','FacetQueryIndex==-1','FacetSetTitleEnglish==Activities and resources on child labour','FacetSetTitleFrench==Activit\xe9s et ressources sur le travail des enfants','FacetSetTitleSpanish==Actividades y recursos sobre el trabajo infantil','Facet_1==2259','Facet_2==2258','FrenchSectionLabel==Activit\xe9s et ressources sur le travail des enfants','PrimaryFacetType==LOC.IND','PrimaryFacetValue==IND.CHLAB','Query_1==\x28xClassification \x3csubstring\x3e \x60IND.CHLAB\x60\x29','SpanishSectionLabel==Actividades y recursos sobre el trabajo infantil');
g_navNode_2_2=g_navNode_2.addNode('2270','Discrimination',ssUrlPrefix + 'Themes/Discrimination/index.htm','EnglishSectionLabel==Discrimination','FacetBoxTitleEnglish==by area of work','FacetBoxTitleFrench==par th\xe8me','FacetBoxTitleSpanish==por tema','FacetQueryIndex==-1','FacetSetTitleEnglish==Resources','FacetSetTitleFrench==Ressources','FacetSetTitleSpanish==Recursos','FrenchSectionLabel==Discrimination','PrimaryFacetType==LOC.IND','PrimaryFacetValue==IND.DISC','SpanishSectionLabel==Discriminaci\xf3n');
g_navNode_2_2_0=g_navNode_2_2.addNode('3055','Activities',ssUrlPrefix + 'Themes/Discrimination/activities/index.htm','DefaultGroupFieldName==xDateIssued','DefaultGroupType==1','EnglishSectionLabel==Activities and resources on discrimination','FacetBoxTitleEnglish==by theme','FacetBoxTitleFrench==par th\xe8me','FacetBoxTitleSpanish==por tema ','FacetQueryIndex==-1','FacetSetTitleEnglish==Activities and resources on discrimination','FacetSetTitleFrench==Activit\xe9s et ressources sur la discrimination','FacetSetTitleSpanish==Actividades y recursos sobre la discriminaci\xf3n','Facet_1==2259','Facet_2==2258','FrenchSectionLabel==Activit\xe9s et ressources sur la discrimination','PrimaryFacetType==LOC.IND','PrimaryFacetValue==IND.DISC','Query_1==\x28xClassification \x3csubstring\x3e \x60IND.DISC\x60\x29','SpanishSectionLabel==Actividades y recursos sobre la discriminaci\xf3n');
g_navNode_2_3=g_navNode_2.addNode('2271','Forced labour',ssUrlPrefix + 'Themes/Forcedlabour/index.htm','EnglishSectionLabel==Forced labour','FrenchSectionLabel==Travail forc\xe9','SpanishSectionLabel==Trabajo forzoso');
g_navNode_2_3_0=g_navNode_2_3.addNode('3056','Activities',ssUrlPrefix + 'Themes/Forcedlabour/activities/index.htm','DefaultGroupFieldName==xDateIssued','DefaultGroupType==1','EnglishSectionLabel==Activities and resources on forced labour','FacetBoxTitleEnglish==by theme','FacetBoxTitleFrench==par th\xe8me','FacetBoxTitleSpanish==por tema ','FacetQueryIndex==-1','FacetSetTitleEnglish==Activities and resources on forced labour','FacetSetTitleFrench==Activit\xe9s et ressources sur le travail forc\xe9','FacetSetTitleSpanish==Actividades y recursos sobre el trabajo forzoso','Facet_1==2259','Facet_2==2258','FrenchSectionLabel==Activit\xe9s et ressources sur le travail forc\xe9','PrimaryFacetType==LOC.IND','PrimaryFacetValue==IND.FL','Query_1==\x28xClassification \x3csubstring\x3e \x60IND.FL\x60\x29','SpanishSectionLabel==Actividades y recursos sobre el trabajo forzoso');
g_navNode_2_5=g_navNode_2.addNode('2273','Millennium Development Goals',ssUrlPrefix + 'Themes/MDG/index.htm','EnglishSectionLabel==Millennium Development Goals','FrenchSectionLabel==Objectifs du Mill\xe9naire pour le d\xe9veloppement','SpanishSectionLabel==Objetivos de Desarrollo del Milenio');
g_navNode_2_5_0=g_navNode_2_5.addNode('3058','Activities',ssUrlPrefix + 'Themes/MDG/activities/index.htm','DefaultGroupFieldName==xDateIssued','DefaultGroupType==1','EnglishSectionLabel==Activities and resources on Millennium Development Goals','FacetBoxTitleEnglish==by theme','FacetBoxTitleFrench==par th\xe8me','FacetBoxTitleSpanish==por tema ','FacetQueryIndex==-1','FacetSetTitleEnglish==Activities and resources on Millennium Development Goals','FacetSetTitleFrench==Activit\xe9s et ressources sur les Objectifs du Mill\xe9naire pour le d\xe9veloppement','FacetSetTitleSpanish==Actividades y recursos sobre los Objetivos de Desarrollo del Milenio','Facet_1==2259','Facet_2==2258','FrenchSectionLabel==Activit\xe9s et ressources sur les Objectifs du Mill\xe9naire pour le d\xe9veloppement','PrimaryFacetType==LOC.IND','PrimaryFacetValue==IND.MDG','Query_1==\x28xClassification \x3csubstring\x3e \x60IND.MDG\x60\x29','SpanishSectionLabel==Actividades y recursos sobre los Objetivos de Desarrollo del Milenio');
g_navNode_2_6=g_navNode_2.addNode('2274','Poverty Reduction Strategy papers',ssUrlPrefix + 'Themes/PRSP/index.htm','EnglishSectionLabel==Poverty Reduction Strategy papers','FrenchSectionLabel==Documents de strat\xe9gie pour la r\xe9duction de la pauvret\xe9 \x28DSRP\x29','SpanishSectionLabel==Documento de estrategia de lucha contra la pobreza ');
g_navNode_2_6_0=g_navNode_2_6.addNode('3059','Activities',ssUrlPrefix + 'Themes/PRSP/activities/index.htm','DefaultGroupFieldName==xDateIssued','DefaultGroupType==1','EnglishSectionLabel==Activities and resources on Poverty Reduction Strategy Papers','FacetBoxTitleEnglish==by theme','FacetBoxTitleFrench==par th\xe8me','FacetBoxTitleSpanish==por tema ','FacetQueryIndex==-1','FacetSetTitleEnglish==Activities and resources on Poverty Reduction Strategy Papers','FacetSetTitleFrench==Activit\xe9s et ressources sur les documents de strat\xe9gie pour la r\xe9duction de la pauvret\xe9','FacetSetTitleSpanish==Actividades y recursos sobre los documentos de estrategia de lucha contra la pobreza','Facet_1==2259','Facet_2==2258','FrenchSectionLabel==Activit\xe9s et ressources sur les documents de strat\xe9gie pour la r\xe9duction de la pauvret\xe9','PrimaryFacetType==LOC.IND','PrimaryFacetValue==IND.PRSP','Query_1==\x28xClassification \x3csubstring\x3e \x60IND.PRSP\x60\x29','SpanishSectionLabel==Actividades y recursos sobre los documentos de estrategia de lucha contra la pobreza');
g_navNode_2_7=g_navNode_2.addNode('2275','Training and Capacity Building',ssUrlPrefix + 'Themes/TrainingandCapacityBuilding/index.htm','EnglishSectionLabel==Training and Capacity Building','FrenchSectionLabel==Formation et renforcement des capacit\xe9s','SpanishSectionLabel==Formaci\xf3n y desarrollo de capacidad');
g_navNode_2_7_0=g_navNode_2_7.addNode('2276','Fellowship programme',ssUrlPrefix + 'Themes/TrainingandCapacityBuilding/Fellowshipprogramme/index.htm','EnglishSectionLabel==Fellowship programme','FrenchSectionLabel==Programme des bourses','SpanishSectionLabel==Programa de Becarios');
g_navNode_2_7_1=g_navNode_2_7.addNode('2277','Training courses',ssUrlPrefix + 'Themes/TrainingandCapacityBuilding/Trainingcourses/index.htm','EnglishSectionLabel==Training courses','FrenchSectionLabel==Formation','SpanishSectionLabel==Cursos de formaci\xf3n');
g_navNode_2_7_2=g_navNode_2_7.addNode('2278','Training modules',ssUrlPrefix + 'Themes/TrainingandCapacityBuilding/Trainingmodules/index.htm','EnglishSectionLabel==Training modules','FrenchSectionLabel==Outils de formation','SpanishSectionLabel==Material de formaci\xf3n');
g_navNode_2_7_3=g_navNode_2_7.addNode('3060','Activities',ssUrlPrefix + 'Themes/TrainingandCapacityBuilding/activities/index.htm','DefaultGroupFieldName==xDateIssued','DefaultGroupType==1','EnglishSectionLabel==Activities and resources on training and capacity building','FacetBoxTitleEnglish==by theme','FacetBoxTitleFrench==par th\xe8me','FacetBoxTitleSpanish==por tema ','FacetQueryIndex==-1','FacetSetTitleEnglish==Activities and resources on training and capacity building','FacetSetTitleFrench==Activit\xe9s et ressources sur la formation et renforcement des capacit\xe9s','FacetSetTitleSpanish==Actividades y recursos sobre la formaci\xf3n, capacitaci\xf3n y fortalecimiento institucional','Facet_1==2259','Facet_2==2258','FrenchSectionLabel==Activit\xe9s et ressources sur la formation et renforcement des capacit\xe9s','HideInNav==TRUE','PrimaryFacetType==LOC.IND','PrimaryFacetValue==IND.TCB','Query_1==\x28xClassification \x3csubstring\x3e \x60IND.TCB\x60\x29','SpanishSectionLabel==Actividades y recursos sobre la formaci\xf3n, capacitaci\xf3n y fortalecimiento institucional');
g_navNode_2_9=g_navNode_2.addNode('2280','UN coordination',ssUrlPrefix + 'Themes/UNcoordination/index.htm','EnglishSectionLabel==UN coordination','FrenchSectionLabel==Coordination avec le syst\xe8me des Nations unies','SpanishSectionLabel==Coordinaci\xf3n con la ONU');
g_navNode_2_9_0=g_navNode_2_9.addNode('2281','Permanent Forum on Indigenous Issues and Interagency Support Group',ssUrlPrefix + 'Themes/UNcoordination/PermanentForum/index.htm','EnglishSectionLabel==Permanent Forum on Indigenous Issues and Interagency Support Group','FrenchSectionLabel==Instance permanente sur les questions autochtones et groupe','SpanishSectionLabel==Foro Permanente para las Cuestiones Ind\xedgenas y Grupo de Apoyo Interagencial');
g_navNode_2_9_1=g_navNode_2_9.addNode('2282','UN Human Rights Bodies',ssUrlPrefix + 'Themes/UNcoordination/UNHumanRightsBodies/index.htm','EnglishSectionLabel==UN Human Rights Bodies','FrenchSectionLabel==Organes de l\u2019ONU relatives aux droits de l\u2019homme','SpanishSectionLabel==\xd3rganos sobre los derechos humanos de la ONU');
g_navNode_2_9_2=g_navNode_2_9.addNode('2283','UN System Programs and Agencies',ssUrlPrefix + 'Themes/UNcoordination/UNSystem/index.htm','EnglishSectionLabel==UN System Programs and Agencies','FrenchSectionLabel==Agences et programmes du syst\xe8me des Nations unies','SpanishSectionLabel==Programas y Agencias del Sistema de las NU');
g_navNode_2_9_3=g_navNode_2_9.addNode('3062','Activities',ssUrlPrefix + 'Themes/UNcoordination/activities/index.htm','DefaultGroupFieldName==xDateIssued','DefaultGroupType==1','EnglishSectionLabel==Activities and resources on UN coordination','FacetBoxTitleEnglish==by theme','FacetBoxTitleFrench==par th\xe8me','FacetBoxTitleSpanish==por tema ','FacetQueryIndex==-1','FacetSetTitleEnglish==Activities and resources on UN coordination','FacetSetTitleFrench==Activit\xe9s et ressources sur la coordination avec le syst\xe8me des Nations unies','FacetSetTitleSpanish==Actividades y recursos sobre la coordinaci\xf3n con la ONU','Facet_1==2259','Facet_2==2258','FrenchSectionLabel==Activit\xe9s et ressources sur la coordination avec le syst\xe8me des Nations unies','HideInNav==TRUE','PrimaryFacetType==LOC.UNC','PrimaryFacetValue==IND.UNC','Query_1==\x28xClassification \x3csubstring\x3e \x60IND.CONS\x60\x29','SpanishSectionLabel==Actividades y recursos sobre la coordinaci\xf3n con la ONU');
g_navNode_3=g_navNode_Root.addNode('2258','Activities by region',ssUrlPrefix + 'Activitiesbyregion/index.htm','EnglishSectionLabel==Activities by region','FacetBoxTitleEnglish==by country/region','FacetBoxTitleFrench==par r\xe9gion/pays','FacetBoxTitleSpanish==por regi\xf3n/pa\xeds','FacetSetTitleEnglish==Resources','FacetSetTitleFrench==Ressources','FacetSetTitleSpanish==Recursos','FrenchSectionLabel==Activit\xe9s par r\xe9gion','PrimaryFacetType==GEO','SpanishSectionLabel==Actividades por regi\xf3n');
g_navNode_3_0=g_navNode_3.addNode('2391','Africa',ssUrlPrefix + 'Activitiesbyregion/Africa/index.htm','EnglishSectionLabel==Africa','FrenchSectionLabel==Afrique \x28projet Commission Africaine\x29','SpanishSectionLabel==\xc1frica \x28proyecto de la Comisi\xf3n Africana\x29');
g_navNode_3_0_0=g_navNode_3_0.addNode('2395','Africa Regional Project',ssUrlPrefix + 'Activitiesbyregion/Africa/AfricaRegionalProject/index.htm','EnglishSectionLabel==Africa Regional Project','FrenchSectionLabel==Projet r\xe9gional pour l\u2019Afrique','SpanishSectionLabel==Proyecto regional en \xc1frica');
g_navNode_3_0_1=g_navNode_3_0.addNode('2396','Burundi',ssUrlPrefix + 'Activitiesbyregion/Africa/Burundi/index.htm','EnglishSectionLabel==Burundi','FrenchSectionLabel==Burundi','SpanishSectionLabel==Burundi');
g_navNode_3_0_2=g_navNode_3_0.addNode('2397','Cameroon',ssUrlPrefix + 'Activitiesbyregion/Africa/Cameroon/index.htm','EnglishSectionLabel==Cameroon','FrenchSectionLabel==Cameroun','SpanishSectionLabel==Camer\xfan');
g_navNode_3_0_3=g_navNode_3_0.addNode('2398','Congo',ssUrlPrefix + 'Activitiesbyregion/Africa/Congo/index.htm','EnglishSectionLabel==Congo','FrenchSectionLabel==Congo','SpanishSectionLabel==Rep\xfablica del Congo');
g_navNode_3_0_4=g_navNode_3_0.addNode('2399','Kenya',ssUrlPrefix + 'Activitiesbyregion/Africa/Kenya/index.htm','EnglishSectionLabel==Kenya','FrenchSectionLabel==Kenya','SpanishSectionLabel==Kenia');
g_navNode_3_0_5=g_navNode_3_0.addNode('2400','Morocco',ssUrlPrefix + 'Activitiesbyregion/Africa/Morocco/index.htm','EnglishSectionLabel==Morocco','FrenchSectionLabel==Maroc','SpanishSectionLabel==Marruecos');
g_navNode_3_0_6=g_navNode_3_0.addNode('2401','Namibia',ssUrlPrefix + 'Activitiesbyregion/Africa/Namibia/index.htm','EnglishSectionLabel==Namibia','FrenchSectionLabel==Namibie','SpanishSectionLabel==Namibia');
g_navNode_3_1=g_navNode_3.addNode('2392','Asia',ssUrlPrefix + 'Activitiesbyregion/Asia/index.htm','EnglishSectionLabel==Asia','FrenchSectionLabel==Asie','SpanishSectionLabel==Asia','secondaryUrlVariableField==region1');
g_navNode_3_1_0=g_navNode_3_1.addNode('2403','South Asia sub-regional project',ssUrlPrefix + 'Activitiesbyregion/Asia/SouthAsia/index.htm','EnglishSectionLabel==South Asia sub-regional project','FrenchSectionLabel==Asie du Sud \x28projet sous-regional\x29','SpanishSectionLabel==Sur de Asia \x28proyecto subregional\x29');
g_navNode_3_1_0_0=g_navNode_3_1_0.addNode('2404','Bangladesh',ssUrlPrefix + 'Activitiesbyregion/Asia/SouthAsia/Bangladesh/index.htm','EnglishSectionLabel==Bangladesh','FrenchSectionLabel==Bangladesh','SpanishSectionLabel==Bangladesh');
g_navNode_3_1_0_1=g_navNode_3_1_0.addNode('2405','India',ssUrlPrefix + 'Activitiesbyregion/Asia/SouthAsia/India/index.htm','EnglishSectionLabel==India','FrenchSectionLabel==Inde','SpanishSectionLabel==India');
g_navNode_3_1_0_2=g_navNode_3_1_0.addNode('2406','Nepal',ssUrlPrefix + 'Activitiesbyregion/Asia/SouthAsia/Nepal/index.htm','EnglishSectionLabel==Nepal','FrenchSectionLabel==N\xe9pal','SpanishSectionLabel==Nepal');
g_navNode_3_1_0_3=g_navNode_3_1_0.addNode('2407','Pakistan',ssUrlPrefix + 'Activitiesbyregion/Asia/SouthAsia/Pakistan/index.htm','EnglishSectionLabel==Pakistan','FrenchSectionLabel==Pakistan','SpanishSectionLabel==Pakist\xe1n');
g_navNode_3_1_1=g_navNode_3_1.addNode('2408','Cambodia',ssUrlPrefix + 'Activitiesbyregion/Asia/Cambodia/index.htm','EnglishSectionLabel==Cambodia','FrenchSectionLabel==Cambodge','SpanishSectionLabel==Camboya');
g_navNode_3_1_1_0=g_navNode_3_1_1.addNode('3063','Activities',ssUrlPrefix + 'Activitiesbyregion/Asia/Cambodia/activities/index.htm','DefaultGroupType==1','EnglishSectionLabel==Activities and resources','FacetBoxTitleEnglish==by country','FacetBoxTitleFrench==par pays','FacetBoxTitleSpanish==por pa\xeds','FacetSetTitleEnglish==Activities and resources','FacetSetTitleFrench==Activit\xe9s et ressources','FacetSetTitleSpanish==Actividades y recursos','Facet_1==2259','Facet_2==2257','FrenchSectionLabel==Activit\xe9s et ressources','HideInNav==TRUE','PrimaryFacetType==GEO','PrimaryFacetValue==KHM','Query_1==\x28xCoverageSpatialCountries \x3ccontains\x3e \x60KHM\x60\x29','SpanishSectionLabel==Actividades y recursos');
g_navNode_3_1_2=g_navNode_3_1.addNode('2409','Philippines',ssUrlPrefix + 'Activitiesbyregion/Asia/Philippines/index.htm','EnglishSectionLabel==Philippines','FrenchSectionLabel==Philippines','SpanishSectionLabel==Filipinas');
g_navNode_3_2=g_navNode_3.addNode('2393','Latin America',ssUrlPrefix + 'Activitiesbyregion/LatinAmerica/index.htm','EnglishSectionLabel==Latin America','FrenchSectionLabel==Am\xe9rique latine','SpanishSectionLabel==Am\xe9rica Latina');
g_navNode_3_2_0=g_navNode_3_2.addNode('2410','Argentina',ssUrlPrefix + 'Activitiesbyregion/LatinAmerica/Argentina/index.htm','EnglishSectionLabel==Argentina','FrenchSectionLabel==Argentine','SpanishSectionLabel==Argentina');
g_navNode_3_2_1=g_navNode_3_2.addNode('2411','Bolivia',ssUrlPrefix + 'Activitiesbyregion/LatinAmerica/Bolivia/index.htm','EnglishSectionLabel==Bolivia','FrenchSectionLabel==Bolivie','SpanishSectionLabel==Bolivia');
g_navNode_3_2_2=g_navNode_3_2.addNode('2412','Guatemala',ssUrlPrefix + 'Activitiesbyregion/LatinAmerica/Guatemala/index.htm','EnglishSectionLabel==Guatemala','FrenchSectionLabel==Guatemala','SpanishSectionLabel==Guatemala');
g_navNode_3_2_3=g_navNode_3_2.addNode('2413','Honduras',ssUrlPrefix + 'Activitiesbyregion/LatinAmerica/Honduras/index.htm','EnglishSectionLabel==Honduras','FrenchSectionLabel==Honduras','SpanishSectionLabel==Honduras');
g_navNode_3_2_4=g_navNode_3_2.addNode('2575','Panama',ssUrlPrefix + 'Activitiesbyregion/LatinAmerica/Panama/index.htm','EnglishSectionLabel==Panama','FrenchSectionLabel==Panama','SpanishSectionLabel==Panam\xe1');
g_navNode_3_2_5=g_navNode_3_2.addNode('2576','Peru',ssUrlPrefix + 'Activitiesbyregion/LatinAmerica/Peru/index.htm','EnglishSectionLabel==Peru','FrenchSectionLabel==P\xe9rou','SpanishSectionLabel==Per\xfa');
g_navNode_5=g_navNode_Root.addNode('2259','Resources',ssUrlPrefix + 'Resources/index.htm','EnglishSectionLabel==Resources','FacetBoxTitleEnglish==by type','FacetBoxTitleFrench==par type','FacetBoxTitleSpanish==por tipo','FacetSetTitleEnglish==Resources','FacetSetTitleFrench==Ressources','FacetSetTitleSpanish==Recursos','FrenchSectionLabel==Ressources','PrimaryFacetType==TYP','SpanishSectionLabel==Recursos');
g_navNode_5_1=g_navNode_5.addNode('2309','Publications',ssUrlPrefix + 'Resources/Publications/index.htm','DefaultGroupFieldName==xDateIssued','DefaultGroupType==0','EnglishSectionLabel==Publications','FacetBoxTitleEnglish==by type','FacetBoxTitleFrench==par type','FacetBoxTitleSpanish==por tipo','FacetQueryIndex==1','FacetSetTitleEnglish==Browse publications','FacetSetTitleFrench==Publications','FacetSetTitleSpanish==Publicaciones','Facet_1==2257','Facet_2==2258','FrenchSectionLabel==Publications','PrimaryFacetType==TYP','PrimaryFacetValue==Publication','Query_1==\x28dDocType \x3csubstring\x3e \x60Publication\x60\x29','SpanishSectionLabel==Publicaciones','secondaryUrlVariableField==region1');
g_navNode_5_1_0=g_navNode_5_1.addNode('2310','Publications by subject',ssUrlPrefix + 'Resources/Publications/Bysubject/index.htm','EnglishSectionLabel==Publications by subject','FrenchSectionLabel==Publications par sujet','SpanishSectionLabel==Publicaciones por tema');
g_navNode_5_1_1=g_navNode_5_1.addNode('2311','Publications by region and country',ssUrlPrefix + 'Resources/Publications/Byregion/index.htm','EnglishSectionLabel==Publications by region/country','FrenchSectionLabel==Publications par r\xe9gion/pays','SpanishSectionLabel==Publicaciones por regi\xf3n/pa\xeds','secondaryUrlVariableField==region1');
g_navNode_5_2=g_navNode_5.addNode('2312','Guidelines and manuals',ssUrlPrefix + 'Resources/Guidelinesandmanuals/index.htm','EnglishSectionLabel==Guidelines and manuals','FrenchSectionLabel==Guides et manuels par sujet','Query_1==\x28dDocType \x3csubstring\x3e \x60InstructionalMaterial\x60\x29 \x3cOR\x3e \x28dDocType \x3csubstring\x3e \x60Publication\x60 \x3cAND\x3e xWebsiteSection \x3csubstring\x3e \x60indigenous\x3a2312\x60\x29','SpanishSectionLabel==Directrices y manuales','secondaryUrlVariableField==region1');
g_navNode_5_3=g_navNode_5.addNode('2314','Event documentation',ssUrlPrefix + 'Resources/Eventdocumentation/index.htm','EnglishSectionLabel==Event documentation','FrenchSectionLabel==Documentation des activit\xe9s','SpanishSectionLabel==Documentaci\xf3n de eventos','secondaryUrlVariableField==region1');
g_navNode_5_3_0=g_navNode_5_3.addNode('2315','Workshop/seminar reports',ssUrlPrefix + 'Resources/Eventdocumentation/Workshopseminarreports/index.htm','EnglishSectionLabel==Workshop/seminar reports','FrenchSectionLabel==Rapports des ateliers et des s\xe9minaires','Query_2==\x28dDocType \x3csubstring\x3e \x60MeetingDocument\x60\x29','SpanishSectionLabel==Informes sobre talleres y seminarios','secondaryUrlVariableField==region1');
g_navNode_5_3_1=g_navNode_5_3.addNode('2316','Statements',ssUrlPrefix + 'Resources/Eventdocumentation/Statements/index.htm','EnglishSectionLabel==Statements','FrenchSectionLabel==D\xe9clarations','Query_2==\x28dDocType \x3csubstring\x3e \x60Statement\x60\x29','SpanishSectionLabel==Declaraciones','secondaryUrlVariableField==region1');
g_navNode_5_4=g_navNode_5.addNode('2317','Translations of Convention No. 169',ssUrlPrefix + 'Resources/Translations/index.htm','EnglishSectionLabel==Translations of Convention No. 169','FrenchSectionLabel==Traductions de la Convention n\xb0 169','SpanishSectionLabel==Traducciones del Convenio n\xfam. 169');
g_navNode_5_5=g_navNode_5.addNode('2319','Useful links',ssUrlPrefix + 'Resources/Usefullinks/index.htm','EnglishSectionLabel==Useful links','FrenchSectionLabel==Liens utiles','Query_2==dDocType \x3csubstring\x3e \x60WebPage\x60','SpanishSectionLabel==Enlaces \xfatiles');
g_navNode_6=g_navNode_Root.addNode('2221','Supplemental Navigation',ssUrlPrefix + 'SupplementalNavigation/index.htm','HideInNav==TRUE');
g_navNode_6_0=g_navNode_6.addNode('2222','Disclaimer',ssUrlPrefix + 'SupplementalNavigation/Disclaimer/index.htm','EnglishSectionLabel==Disclaimer','FrenchSectionLabel==D\xe9ni de responsabilit\xe9','HideInNav==TRUE','SpanishSectionLabel==Descargo de responsabilidad');
g_navNode_6_0_0=g_navNode_6_0.addNode('2227','Reproduction of Extracts for Printed form/CD-ROM/Internet',ssUrlPrefix + 'SupplementalNavigation/Disclaimer/ReproductionofExtractsforPrintedformCD-ROMInternet/index.htm');
g_navNode_6_0_1=g_navNode_6_0.addNode('2228','Copyright and Permissions',ssUrlPrefix + 'SupplementalNavigation/Disclaimer/CopyrightandPermissions/index.htm','EnglishSectionLabel==Copyright and permissions','FrenchSectionLabel==Droit d\\x27auteur et autorisations','SpanishSectionLabel==Derechos de autor y autorizaciones');
g_navNode_6_0_2=g_navNode_6_0.addNode('2229','Disclaimer',ssUrlPrefix + 'SupplementalNavigation/Disclaimer/Disclaimer/index.htm','EnglishSectionLabel==Disclaimer','FrenchSectionLabel==D\xe9ni de responsabilit\xe9','SpanishSectionLabel==Descargo de responsabilidad');
g_navNode_6_0_3=g_navNode_6_0.addNode('2230','Request for permission to reproduce ILO Copyright Material',ssUrlPrefix + 'SupplementalNavigation/Disclaimer/RequestforpermissiontoreproduceILOCopyrightMaterial/index.htm');
g_navNode_6_0_4=g_navNode_6_0.addNode('2231','Photocopying',ssUrlPrefix + 'SupplementalNavigation/Disclaimer/Photocopying/index.htm');
g_navNode_6_0_5=g_navNode_6_0.addNode('2232','Translations for Printed form/Internet/CD-ROM',ssUrlPrefix + 'SupplementalNavigation/Disclaimer/TranslationsforPrintedformInternetCD-ROM/index.htm');
g_navNode_6_0_6=g_navNode_6_0.addNode('2236','Reprints for Printed form/Internet/CD-ROM',ssUrlPrefix + 'SupplementalNavigation/Disclaimer/ReprintsforPrintedformInternetCD-ROM/index.htm');
g_navNode_6_1=g_navNode_6.addNode('2223','Contact us',ssUrlPrefix + 'SupplementalNavigation/Contactus/index.htm','EnglishSectionLabel==Contact us','FrenchSectionLabel==Contactez-nous','SpanishSectionLabel==Cont\xe1ctenos');
g_navNode_6_2=g_navNode_6.addNode('2224','Site Search',ssUrlPrefix + 'SupplementalNavigation/SiteSearch/index.htm','HideInNav==TRUE');
g_navNode_6_2_0=g_navNode_6_2.addNode('2233','Contextual Search Results',ssUrlPrefix + 'SupplementalNavigation/SiteSearch/ContextualSearchResults/index.htm');
g_navNode_6_2_1=g_navNode_6_2.addNode('2234','Search Results',ssUrlPrefix + 'SupplementalNavigation/SiteSearch/SearchResults/index.htm');
g_navNode_6_2_2=g_navNode_6_2.addNode('2235','Advanced Search Result',ssUrlPrefix + 'SupplementalNavigation/SiteSearch/AdvancedSearchResult/index.htm');
g_navNode_6_3=g_navNode_6.addNode('2225','Site index',ssUrlPrefix + 'SupplementalNavigation/SiteIndex/index.htm','EnglishSectionLabel==Site index','FrenchSectionLabel==Index du site','HideInNav==TRUE','SpanishSectionLabel==Indice del sitio');
g_navNode_6_4=g_navNode_6.addNode('2226','Site map',ssUrlPrefix + 'SupplementalNavigation/Sitemap/index.htm','EnglishSectionLabel==Site map','FrenchSectionLabel==Plan du site','SpanishSectionLabel==Mapa del sitio');
