/////////////////////////////////////////////////////////////////////////////
// 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('157','Home',ssUrlPrefix + 'index.htm',null,'AlwaysExplode==FALSE','EnglishBreadCrumbLabel==IPEC\x3a Home','EnglishSectionLabel==International Programme on the Elimination of Child Labour \x28IPEC\x29','FrenchSectionLabel==Programme international pour l\\x27abolition du travail des enfants \x28IPEC\x29','GlobalSiteId==5','HideInNav==FALSE','IsSurveyMonkeyOn==TRUE','NavigationRootLevel==0','SiteSupplementalSectionId==447','SpanishSectionLabel==Programa Internacional para la Erradicaci\xf3n del Trabajo Infantil \x28IPEC\x29','secondaryUrlVariableField==region1');
g_navNode_0=g_navNode_Root.addNode('158','The Programme',ssUrlPrefix + 'programme/index.htm','AlwaysExplode==FALSE','EnglishSectionLabel==The Programme','FrenchSectionLabel==Le Programme de l\\x27IPEC','HideInNav==FALSE','LeftColumnSize==75','NavigationRootLevel==0','SpanishSectionLabel==El Programa IPEC','secondaryUrlVariableField==region1');
g_navNode_0_0=g_navNode_0.addNode('172','IPEC worldwide',ssUrlPrefix + 'programme/IPECinthefield/index.htm','EnglishSectionLabel==IPEC worldwide','FrenchSectionLabel==IPEC dans le monde','NavigationRootLevel==0','SpanishSectionLabel==IPEC en el mundo','maxAge==60','secondaryUrlVariableField==region1');
g_navNode_0_2=g_navNode_0.addNode('173','Donors',ssUrlPrefix + 'programme/Donorcountries/index.htm','EnglishSectionLabel==Donors','FrenchSectionLabel==Donateurs','SpanishSectionLabel==Donantes','secondaryUrlVariableField==region1');
g_navNode_0_3=g_navNode_0.addNode('174','Design and evaluation',ssUrlPrefix + 'programme/Designandevaluation/index.htm','EnglishSectionLabel==Design and evaluation','FrenchSectionLabel==Conception et \xe9valuation','NavigationRootLevel==0','SpanishSectionLabel==Dise\xf1o y evaluaci\xf3n','secondaryUrlVariableField==region1');
g_navNode_0_3_0=g_navNode_0_3.addNode('295','The design process',ssUrlPrefix + 'programme/Designandevaluation/Thedesignprocess/index.htm','FrenchSectionLabel==Conception','HideInNav==FALSE','SpanishSectionLabel==Dise\xf1o','secondaryUrlVariableField==region1');
g_navNode_0_3_1=g_navNode_0_3.addNode('296','The evaluation process',ssUrlPrefix + 'programme/Designandevaluation/Theevaluationprocess/index.htm','FrenchSectionLabel==Evaluation','HideInNav==FALSE','SpanishSectionLabel==Evaluaci\xf3n','secondaryUrlVariableField==region1');
g_navNode_0_3_2=g_navNode_0_3.addNode('578','Good practices and lessons learned',ssUrlPrefix + 'programme/Designandevaluation/Goodpractices/index.htm','FrenchSectionLabel==Bonnes pratiques et le\xe7ons apprises','SpanishSectionLabel==Buenas pr\xe1cticas y lecciones aprendidas','secondaryUrlVariableField==region1');
g_navNode_0_3_3=g_navNode_0_3.addNode('577','Impact Assessment',ssUrlPrefix + 'programme/Designandevaluation/ImpactAssessment/index.htm','FrenchSectionLabel==Evaluation de l\\x27impact','SpanishSectionLabel==Evaluaci\xf3n de impacto','secondaryUrlVariableField==region1');
g_navNode_0_3_4=g_navNode_0_3.addNode('576','Strategic Programme Impact Framework \x28SPIF\x29',ssUrlPrefix + 'programme/Designandevaluation/StrategicProgrammeImpactFrameworkSPIF/index.htm','FrenchSectionLabel==Cadre strat\xe9gique d\u2019impact du programme \x28SPIF\x29','SpanishSectionLabel==Marco estrat\xe9gico de impacto del programa \x28SPIF\x29','secondaryUrlVariableField==region1');
g_navNode_1=g_navNode_Root.addNode('452','About child labour',ssUrlPrefix + 'facts/index.htm','AlwaysExplode==FALSE','DontShowChildrenNodes==FALSE','EnglishSectionLabel==About child labour','FrenchSectionLabel==A propos du travail des enfants?','SpanishSectionLabel==\xbfQu\xe9 se entiende por trabajo infantil?','secondaryUrlVariableField==region1');
g_navNode_1_0=g_navNode_1.addNode('455','ILO Conventions on child labour',ssUrlPrefix + 'facts/ILOconventionsonchildlabour/index.htm','EnglishSectionLabel==ILO Conventions on child labour','FrenchSectionLabel==Conventions de l\\x27OIT sur le travail des enfants','HideInNav==FALSE','SpanishSectionLabel==Convenios de la OIT sobre trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_1_1=g_navNode_1.addNode('453','Worst forms of child labour',ssUrlPrefix + 'facts/WorstFormsofChildLabour/index.htm','EnglishSectionLabel==Worst forms of child labour','FrenchSectionLabel==Pires formes de travail des enfants','HideInNav==FALSE','SpanishSectionLabel==Peores formas de trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_1_2=g_navNode_1.addNode('454','Hazardous child labour',ssUrlPrefix + 'facts/Hazardouschildlabour/index.htm','EnglishSectionLabel==Hazardous child labour','FrenchSectionLabel==Travail dangereux','HideInNav==FALSE','SpanishSectionLabel==Trabajo peligroso \xa0','secondaryUrlVariableField==region1');
g_navNode_1_3=g_navNode_1.addNode('2096','Related issues\x3a AIDS, gender...',ssUrlPrefix + 'facts/related/index.htm','EnglishSectionLabel==Related issues\x3a AIDS, gender...','FrenchSectionLabel==Th\xe8mes associ\xe9s\x3a SIDA, genre...','SpanishSectionLabel==Temas relacionados\x3a SIDA, g\xe9nero...','secondaryUrlVariableField==region1');
g_navNode_1_3_0=g_navNode_1_3.addNode('189','AIDS',ssUrlPrefix + 'facts/related/HIVAIDS/index.htm','EnglishSectionLabel==AIDS','FrenchSectionLabel==SIDA','HideInNav==FALSE','SpanishSectionLabel==SIDA','secondaryUrlVariableField==region1');
g_navNode_1_3_1=g_navNode_1_3.addNode('319','Gender',ssUrlPrefix + 'facts/related/Gendermainstreaming/index.htm','EnglishSectionLabel==Gender','FrenchSectionLabel==Int\xe9gration du genre','HideInNav==FALSE','SpanishSectionLabel==G\xe9nero','secondaryUrlVariableField==region1');
g_navNode_2=g_navNode_Root.addNode('175','Child labour by sector',ssUrlPrefix + 'areas/index.htm','DontShowChildrenNodes==FALSE','EnglishSectionLabel==Child labour by sector ','FrenchSectionLabel==Le travail des enfants par secteur','HideInNav==FALSE','SpanishSectionLabel==El trabajo infantil por sector','secondaryUrlVariableField==region1');
g_navNode_2_0=g_navNode_2.addNode('468','Agriculture',ssUrlPrefix + 'areas/Agriculture/index.htm','EnglishSectionLabel==Agriculture','FrenchSectionLabel==Agriculture','HideInNav==FALSE','SpanishSectionLabel==Agricultura','secondaryUrlVariableField==region1');
g_navNode_2_0_0=g_navNode_2_0.addNode('2756','International_Partnership_\x28IPCLA\x29',ssUrlPrefix + 'areas/Agriculture/International_Partnersgip_IPCLA/index.htm','EnglishSectionLabel==International Partnership for Cooperation on Child Labour in Agriculture \x28IPCLA\x29','FrenchSectionLabel==Partenariat international de coop\xe9ration sur le travail des enfants et l\\x27agriculture \x28PITEA\x29','SpanishSectionLabel==Alianza internacional de cooperaci\xf3n sobre el trabajo infantil y la agricultura \x28AITIA\x29');
g_navNode_2_1=g_navNode_2.addNode('186','Children and armed conflict',ssUrlPrefix + 'areas/Armedconflict/index.htm','EnglishSectionLabel==Children and armed conflict','FrenchSectionLabel==Les enfants et les conflits arm\xe9s','HideInNav==FALSE','SpanishSectionLabel==Los ni\xf1os y los conflictos armados','secondaryUrlVariableField==region1');
g_navNode_2_2=g_navNode_2.addNode('2867','Commercial sexual exploitation of children',ssUrlPrefix + 'areas/CSEC/index.htm','FrenchSectionLabel==Explotation sexuelle commerciale des enfants','SpanishSectionLabel==Explotaci\xf3n sexual comercial infantil ');
g_navNode_2_3=g_navNode_2.addNode('185','Domestic labour',ssUrlPrefix + 'areas/Childdomesticlabour/index.htm','EnglishSectionLabel==Domestic labour','FrenchSectionLabel==Travail domestique','HideInNav==FALSE','SpanishSectionLabel==Trabajo dom\xe9stico','secondaryUrlVariableField==region1');
g_navNode_2_3_0=g_navNode_2_3.addNode('2211','Key documents',ssUrlPrefix + 'areas/Childdomesticlabour/Keydocuments/index.htm','EnglishSectionLabel==Key documents','FrenchSectionLabel==Documents principaux','SpanishSectionLabel==Principales documentos ');
g_navNode_2_3_1=g_navNode_2_3.addNode('2212','Rapid assessments, national and regional reports',ssUrlPrefix + 'areas/Childdomesticlabour/Rapidassessmentsnationlaandregionalreports/index.htm','FrenchSectionLabel==Evaluations rapides, rapports r\xe9gionaux et nationaux','SpanishSectionLabel==Evaluaciones r\xe1idas, informes regionales y nacionales');
g_navNode_2_3_2=g_navNode_2_3.addNode('2217','International and national legislation',ssUrlPrefix + 'areas/Childdomesticlabour/iInternationalnationallegislation/index.htm','FrenchSectionLabel==L\xe9gislation internationale et nationale','SpanishSectionLabel==Legislaci\xf3n internacional y nacional');
g_navNode_2_3_3=g_navNode_2_3.addNode('2218','Good practices and lessons learned',ssUrlPrefix + 'areas/Childdomesticlabour/Goodpracticesandlessonslearned/index.htm');
g_navNode_2_3_4=g_navNode_2_3.addNode('2219','Awareness-raising materials',ssUrlPrefix + 'areas/Childdomesticlabour/Awareness-raisingmaterials/index.htm');
g_navNode_2_3_5=g_navNode_2_3.addNode('2865','Training materials',ssUrlPrefix + 'areas/Childdomesticlabour/Trainingmaterials/index.htm');
g_navNode_2_4=g_navNode_2.addNode('190','Mining and quarrying',ssUrlPrefix + 'areas/Miningandquarrying/index.htm','EnglishSectionLabel==Mining and quarrying','FrenchSectionLabel==Mines et carri\xe8res','HideInNav==FALSE','SpanishSectionLabel==Minas y canteras','secondaryUrlVariableField==region1');
g_navNode_2_4_0=g_navNode_2_4.addNode('2133','Learn more about child labour in mining',ssUrlPrefix + 'areas/Miningandquarrying/MoreaboutCLinmining/index.htm','EnglishSectionLabel==Learn more about child labour in mining','FrenchSectionLabel==A propos du travail des enfants dans les mines','SpanishSectionLabel==Acerca del trabajo infantil en las minas','secondaryUrlVariableField==region1');
g_navNode_2_4_0_0=g_navNode_2_4_0.addNode('2134','In their own words...',ssUrlPrefix + 'areas/Miningandquarrying/MoreaboutCLinmining/Intheirownwords.../index.htm','EnglishSectionLabel==In their own words...','FrenchSectionLabel==Avec leurs propres mots...','SpanishSectionLabel==Con sus propias palabras...','secondaryUrlVariableField==region1');
g_navNode_2_5=g_navNode_2.addNode('187','Trafficking in children',ssUrlPrefix + 'areas/Traffickingofchildren/index.htm','EnglishSectionLabel==Trafficking in children','FrenchSectionLabel==Traite des enfants','HideInNav==FALSE','SpanishSectionLabel==Trata infantil','secondaryUrlVariableField==region1');
g_navNode_3=g_navNode_Root.addNode('318','Child labour statistics',ssUrlPrefix + 'ChildlabourstatisticsSIMPOC/index.htm','EnglishSectionLabel==Child labour statistics','FrenchSectionLabel==Statistiques sur le travail des enfants','HideInNav==FALSE','SpanishSectionLabel==Estad\xedsticas sobre trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_3_0=g_navNode_3.addNode('535','Model questionnaires',ssUrlPrefix + 'ChildlabourstatisticsSIMPOC/Model questionnaires/index.htm','EnglishSectionLabel==Model questionnaires','FrenchSectionLabel==Questionnaires type','SpanishSectionLabel==Cuestionarios modelo','secondaryUrlVariableField==region1');
g_navNode_3_1=g_navNode_3.addNode('537','Manuals',ssUrlPrefix + 'ChildlabourstatisticsSIMPOC/Manuals/index.htm','EnglishSectionLabel==Manuals','FrenchSectionLabel==Manuels','SpanishSectionLabel==Manuales','secondaryUrlVariableField==region1');
g_navNode_3_2=g_navNode_3.addNode('536','Documents and publications',ssUrlPrefix + 'ChildlabourstatisticsSIMPOC/Documentsandpublications/index.htm','EnglishSectionLabel==Documents and publications','FrenchSectionLabel==Documents et publications','SpanishSectionLabel==Documentos y publicaciones','secondaryUrlVariableField==region1');
g_navNode_3_3=g_navNode_3.addNode('539','ICLS and child labour',ssUrlPrefix + 'ChildlabourstatisticsSIMPOC/ICLSandchildlabour/index.htm','EnglishSectionLabel==ICLS and Child Labour','FrenchSectionLabel==La CIST et le travail des enfants','SpanishSectionLabel==La CIET y el trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_3_4=g_navNode_3.addNode('538','Workshops',ssUrlPrefix + 'ChildlabourstatisticsSIMPOC/Workshops/index.htm','EnglishSectionLabel==Workshops','FrenchSectionLabel==Ateliers','SpanishSectionLabel==Talleres','secondaryUrlVariableField==region1');
g_navNode_3_5=g_navNode_3.addNode('534','Surveys',ssUrlPrefix + 'ChildlabourstatisticsSIMPOC/Questionnairessurveysandreports/index.htm','DontShowChildrenNodes==FALSE','EnglishSectionLabel==Surveys','FrenchSectionLabel==Enqu\xeates','HideInNav==FALSE','SpanishSectionLabel==Encuestas','secondaryUrlVariableField==region1');
g_navNode_4=g_navNode_Root.addNode('176','Action against child labour',ssUrlPrefix + 'Action/index.htm','AlwaysExplode==FALSE','DontShowChildrenNodes==FALSE','EnglishSectionLabel==Action against child labour','FrenchSectionLabel==Action contre le travail des enfants ','SpanishSectionLabel==Acci\xf3n contra el trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_4_0=g_navNode_4.addNode('178','Education',ssUrlPrefix + 'Action/Education/index.htm','EnglishSectionLabel==Education','FrenchSectionLabel==\xc9ducation','HideInNav==FALSE','SpanishSectionLabel==Educaci\xf3n','secondaryUrlVariableField==region1');
g_navNode_4_0_0=g_navNode_4_0.addNode('555','Education in the work of IPEC',ssUrlPrefix + 'Action/Education/EducationintheworkofIPEC/index.htm','EnglishSectionLabel==Education in the work of IPEC','FrenchSectionLabel==Education et IPEC','SpanishSectionLabel==Educaci\xf3n e IPEC','secondaryUrlVariableField==region1');
g_navNode_4_0_1=g_navNode_4_0.addNode('556','Child labour and Education for All',ssUrlPrefix + 'Action/Education/ChildlabourandEducationforAll/index.htm','EnglishSectionLabel==Child labour and Education for All','FrenchSectionLabel==Travail des enfants et Education pour tous','SpanishSectionLabel==Trabajo infantil y Educaci\xf3n para todos','secondaryUrlVariableField==region1');
g_navNode_4_0_2=g_navNode_4_0.addNode('557','Global Task Force on Child Labour and Education',ssUrlPrefix + 'Action/Education/GlobalTaskForceonchildlaboburandeducation/index.htm','EnglishSectionLabel==Group Task Force on Child Labour and Education','FrenchSectionLabel==Groupe sp\xe9cial mondial sur le travail des enfants et l\\x27\xe9ducation','SpanishSectionLabel==Grupo mundial sobre el trabajo infantil y la educaci\xf3n','secondaryUrlVariableField==region1');
g_navNode_4_0_3=g_navNode_4_0.addNode('558','Non-formal education and training',ssUrlPrefix + 'Action/Education/Non-formaleducationandtraining/index.htm','EnglishSectionLabel==Non-formal education and training','FrenchSectionLabel==Education non formelle et formation','SpanishSectionLabel==Educaci\xf3n no formal y formaci\xf3n','secondaryUrlVariableField==region1');
g_navNode_4_0_4=g_navNode_4_0.addNode('559','Formal education and the prevention of child labour',ssUrlPrefix + 'Action/Education/Formaleducationandthepreventionofchildlabour/index.htm','EnglishSectionLabel==Formal education and the prevention of child labour','FrenchSectionLabel==Formation et pr\xe9vention contre le travail des enfants','SpanishSectionLabel==Formaci\xf3n y prevenci\xf3n contra el trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_4_0_5=g_navNode_4_0.addNode('560','Education and social mobilization',ssUrlPrefix + 'Action/Education/Educationandsocialmobilization/index.htm','EnglishSectionLabel==Education and social moblization','FrenchSectionLabel==Education et mobilisation sociale','SpanishSectionLabel==Educaci\xf3n y mobilizaci\xf3n social','secondaryUrlVariableField==region1');
g_navNode_4_0_6=g_navNode_4_0.addNode('561','Teachers, educators and their organizations',ssUrlPrefix + 'Action/Education/Teacherseducatorsandtheirorganizations/index.htm','EnglishSectionLabel==Teachers, educators and their organizations','FrenchSectionLabel==Enseignants, \xe9ducateurs et leurs organisations','SpanishSectionLabel==Maestros, educadores y sus organizaciones','secondaryUrlVariableField==region1');
g_navNode_4_0_7=g_navNode_4_0.addNode('562','Other ILO departments',ssUrlPrefix + 'Action/Education/OtherILOdepartments/index.htm','EnglishSectionLabel==Other ILO departments','FrenchSectionLabel==Autres d\xe9partements du BIT','SpanishSectionLabel==Otros departamentos de la OIT','secondaryUrlVariableField==region1');
g_navNode_4_1=g_navNode_4.addNode('317','Child labour monitoring',ssUrlPrefix + 'Action/Childlabourmonitoring/index.htm','EnglishSectionLabel==Child labour monitoring \x28CLM\x29','FrenchSectionLabel==Observation et suivi du travail des enfants \x28OSTE\x29','HideInNav==FALSE','SpanishSectionLabel==Vigilancia y seguimiento del trabajo infantil \x28VSTI\x29','secondaryUrlVariableField==region1');
g_navNode_4_1_0=g_navNode_4_1.addNode('573','Why is CLM useful?',ssUrlPrefix + 'Action/Childlabourmonitoring/WhyisCLMuseful/index.htm','EnglishSectionLabel==Why is CLM useful?','FrenchSectionLabel==Pourquoi la m\xe9thode d\\x27OSTE est-elle utile?','SpanishSectionLabel==\xbfPor qu\xe9 resulta \xfatil el m\xe9todo de VSTI?','secondaryUrlVariableField==region1');
g_navNode_4_1_1=g_navNode_4_1.addNode('574','Evolution of CLM',ssUrlPrefix + 'Action/Childlabourmonitoring/EvolutionofCLM/index.htm','EnglishSectionLabel==Evolution of CLM','FrenchSectionLabel==\xc9volution de la m\xe9thode d\u2019OSTE ','SpanishSectionLabel==Evoluci\xf3n del m\xe9todo de VSTI','secondaryUrlVariableField==region1');
g_navNode_4_1_2=g_navNode_4_1.addNode('575','Guidance materials',ssUrlPrefix + 'Action/Childlabourmonitoring/Guidancematerials/index.htm','EnglishSectionLabel==Guidance materials','FrenchSectionLabel==Guides et mat\xe9riels d\\x27orientation','SpanishSectionLabel==Material de orientaci\xf3n','secondaryUrlVariableField==region1');
g_navNode_4_1_3=g_navNode_4_1.addNode('3104','Training materials',ssUrlPrefix + 'Action/Childlabourmonitoring/Trainingmaterials/index.htm','EnglishSectionLabel==Training materials','FrenchSectionLabel==Mat\xe9riels de formation','SpanishSectionLabel==Material de formaci\xf3n');
g_navNode_4_3=g_navNode_4.addNode('320','Labour inspection ',ssUrlPrefix + 'Action/Labourinspection/index.htm','EnglishSectionLabel==Labour inspection ','FrenchSectionLabel==Inspection du travail','HideInNav==FALSE','SpanishSectionLabel==Inspecci\xf3n de trabajo','secondaryUrlVariableField==region1');
g_navNode_4_4=g_navNode_4.addNode('323','Time-bound programmes \x28TBPs\x29',ssUrlPrefix + 'Action/Time-BoundProgrammes/index.htm','FrenchSectionLabel==Programmes assortis de d\xe9lais \x28PAD\x29','HideInNav==FALSE','SpanishSectionLabel==Programas de duraci\xf3n determinada \x28PDD\x29','secondaryUrlVariableField==region1');
g_navNode_4_4_0=g_navNode_4_4.addNode('321','Legal instruments ',ssUrlPrefix + 'Action/Time-BoundProgrammes/Legal/index.htm','EnglishSectionLabel==Legal instruments','FrenchSectionLabel==Instruments juridiques ','HideInNav==FALSE','SpanishSectionLabel==Instrumentos jur\xeddicos','secondaryUrlVariableField==region1');
g_navNode_4_4_0_0=g_navNode_4_4_0.addNode('541','ILO Conventions and Recommendations on child labour',ssUrlPrefix + 'Action/Time-BoundProgrammes/Legal/Conventions/index.htm','FrenchSectionLabel==Conventions et recommandations de l\\x27OIT sur le travail des enfants','SpanishSectionLabel==Convenciones y Recomendaci\xf3nes de la OIT sobre el trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_4_4_0_1=g_navNode_4_4_0.addNode('582','General reading and guides',ssUrlPrefix + 'Action/Time-BoundProgrammes/Legal/Generalreadingandguides/index.htm','FrenchSectionLabel==Lectures et guides','SpanishSectionLabel==Lecturas y gu\xedas','secondaryUrlVariableField==region1');
g_navNode_4_4_0_2=g_navNode_4_4_0.addNode('583','Other international treaties',ssUrlPrefix + 'Action/Time-BoundProgrammes/Legal/Otherinternationaltreaties/index.htm','FrenchSectionLabel==Autres trait\xe9s internationaux','SpanishSectionLabel==Otros tratados internacionales','secondaryUrlVariableField==region1');
g_navNode_4_4_1=g_navNode_4_4.addNode('543','Characteristics',ssUrlPrefix + 'Action/Time-BoundProgrammes/Characteristics/index.htm','EnglishSectionLabel==Characteristics','FrenchSectionLabel==Caract\xe9ristiques','SpanishSectionLabel==Caracter\xedsticas','secondaryUrlVariableField==region1');
g_navNode_4_4_2=g_navNode_4_4.addNode('544','Components',ssUrlPrefix + 'Action/Time-BoundProgrammes/Components/index.htm','EnglishSectionLabel==Components','FrenchSectionLabel==El\xe9ments constitutifs','SpanishSectionLabel==Componentes','secondaryUrlVariableField==region1');
g_navNode_4_4_3=g_navNode_4_4.addNode('545','Implementation',ssUrlPrefix + 'Action/Time-BoundProgrammes/Implementation/index.htm','EnglishSectionLabel==Implementation','FrenchSectionLabel==Mise en oeuvre','SpanishSectionLabel==Ejecuci\xf3n','secondaryUrlVariableField==region1');
g_navNode_4_4_4=g_navNode_4_4.addNode('546','TBP Manual for Action Planning \x28MAP\x29',ssUrlPrefix + 'Action/Time-BoundProgrammes/TBPManualforActionPlanningMAP/index.htm','EnglishSectionLabel==TBP Manual for Action Planning \x28MAP\x29','FrenchSectionLabel==Manuel de planification de l\\x27action des PAD','SpanishSectionLabel==Manual de planificaci\xf3n de la acci\xf3n de los PDD','secondaryUrlVariableField==region1');
g_navNode_5=g_navNode_Root.addNode('163','Partners',ssUrlPrefix + 'Partners/index.htm','DontShowChildrenNodes==FALSE','EnglishSectionLabel==Partners','FrenchSectionLabel==Partenaires','SpanishSectionLabel==Socios','secondaryUrlVariableField==region1');
g_navNode_5_0=g_navNode_5.addNode('209','Governments',ssUrlPrefix + 'Partners/Governments/index.htm','EnglishSectionLabel==Governments','FrenchSectionLabel==Gouvernements','SpanishSectionLabel==Gobiernos','secondaryUrlVariableField==region1');
g_navNode_5_1=g_navNode_5.addNode('210','Employers',ssUrlPrefix + 'Partners/Employers/index.htm','EnglishSectionLabel==Employers','FrenchSectionLabel==Employeurs','SpanishSectionLabel==Empleadores','secondaryUrlVariableField==region1');
g_navNode_5_2=g_navNode_5.addNode('211','Workers',ssUrlPrefix + 'Partners/Workers/index.htm','EnglishSectionLabel==Workers','FrenchSectionLabel==Travailleurs','SpanishSectionLabel==Trabajadores','secondaryUrlVariableField==region1');
g_navNode_5_3=g_navNode_5.addNode('212','NGOs',ssUrlPrefix + 'Partners/NGOs/index.htm','EnglishSectionLabel==NGOs','FrenchSectionLabel==ONG','SpanishSectionLabel==ONG','secondaryUrlVariableField==region1');
g_navNode_5_4=g_navNode_5.addNode('213','Teachers',ssUrlPrefix + 'Partners/Teachers/index.htm','DontShowChildrenNodes==FALSE','EnglishSectionLabel==Teachers','FrenchSectionLabel==Enseignants','SpanishSectionLabel==Maestros','secondaryUrlVariableField==region1');
g_navNode_5_4_0=g_navNode_5_4.addNode('564','How IPEC works with teachers',ssUrlPrefix + 'Partners/Teachers/HowIPECworkswithteachers/index.htm','FrenchSectionLabel==L\\x27IPEC et les enseignants','SpanishSectionLabel==El IPEC y los maestros','secondaryUrlVariableField==region1');
g_navNode_5_4_1=g_navNode_5_4.addNode('565','Improvement of working and employment conditions for teachers',ssUrlPrefix + 'Partners/Teachers/Improvementofworkingandemploymentconditionsforteachers/index.htm','FrenchSectionLabel==Am\xe9lioration des conditions de travail et d\\x27emploi','SpanishSectionLabel==Mejora de las condiciones de trabajo y de empleo','secondaryUrlVariableField==region1');
g_navNode_5_4_2=g_navNode_5_4.addNode('566','IPEC teachers\' information kit',ssUrlPrefix + 'Partners/Teachers/IPECteachersinformationkit/index.htm','FrenchSectionLabel==Kit d\\x27information de l\\x27IPEC pour les enseignants','SpanishSectionLabel==Kit de informaci\xf3n del IPEC para los maestros','secondaryUrlVariableField==region1');
g_navNode_5_4_3=g_navNode_5_4.addNode('567','Teachers, educators and their organizations as agents of social change',ssUrlPrefix + 'Partners/Teachers/Teacherseducatorsandtheirorganizationsasagentsofsocialchange/index.htm','FrenchSectionLabel==Les enseignants, les \xe9ducateurs et leurs organisations','SpanishSectionLabel==Maestros, educadores y sus organizaciones','secondaryUrlVariableField==region1');
g_navNode_5_4_4=g_navNode_5_4.addNode('568','What teachers\' organizations can do in the fight to eliminate child labour',ssUrlPrefix + 'Partners/Teachers/Whatteachersorganizationscandointhefighttoeliminatechildlabour/index.htm','FrenchSectionLabel==Comment les organisations d\\x27enseignants peuvent-elles lutter contre le travail des enfants?','SpanishSectionLabel==Como las organizaciones de educadores pueden luchar contra el trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_6=g_navNode_Root.addNode('161','Regions and countries',ssUrlPrefix + 'Regionsandcountries/index.htm','EnglishSectionLabel==Regions and countries','FrenchSectionLabel==R\xe9gions et pays','SpanishSectionLabel==Regiones y pa\xedses','secondaryUrlVariableField==region1');
g_navNode_6_0=g_navNode_6.addNode('194','Africa',ssUrlPrefix + 'Regionsandcountries/Africa/index.htm','EnglishSectionLabel==Africa','FrenchSectionLabel==Afrique','HideInNav==FALSE','SpanishSectionLabel==Africa','secondaryUrlVariableField==region1');
g_navNode_6_1=g_navNode_6.addNode('195','Arab States',ssUrlPrefix + 'Regionsandcountries/Arabstates/index.htm','EnglishSectionLabel==Arab States','FrenchSectionLabel==\xc9tats arabes','SpanishSectionLabel==Estados Arabes','secondaryUrlVariableField==region1');
g_navNode_6_2=g_navNode_6.addNode('196','Asia and the Pacific',ssUrlPrefix + 'Regionsandcountries/Asia/index.htm','EnglishSectionLabel==Asia and the Pacific','FrenchSectionLabel==Asie et le Pacifique','SpanishSectionLabel==Asia y el Pac\xedfico','secondaryUrlVariableField==region1');
g_navNode_6_3=g_navNode_6.addNode('197','Europe and Central Asia',ssUrlPrefix + 'Regionsandcountries/EuropeandCentralAsia/index.htm','EnglishSectionLabel==Europe and Central Asia','FrenchSectionLabel==Europe et Asie centrale','SpanishSectionLabel==Europa y Asia central','secondaryUrlVariableField==region1');
g_navNode_6_4=g_navNode_6.addNode('198','Latin America and Caribbean',ssUrlPrefix + 'Regionsandcountries/LatinAmericaandCaribbean/index.htm','EnglishSectionLabel==Latin America and Caribbean','FrenchSectionLabel==Am\xe9rique latine et Cara\xefbes','SpanishSectionLabel==Am\xe9rica Latina y el Caribe','secondaryUrlVariableField==region1');
g_navNode_7=g_navNode_Root.addNode('473','Campaign and advocacy',ssUrlPrefix + 'Campaignandadvocacy/index.htm','DontShowChildrenNodes==FALSE','EnglishSectionLabel==Campaign and advocacy','FrenchSectionLabel==Campagnes et sensibilisation','SpanishSectionLabel==Campa\xf1a y sensibilizaci\xf3n','secondaryUrlVariableField==region1');
g_navNode_7_0=g_navNode_7.addNode('3647','The Hague Global Child Labour Conference',ssUrlPrefix + 'Campaignandadvocacy/GlobalChildLabourConference/index.htm','EnglishSectionLabel==The Hague Global Child Labour Conference - 10-11 May 2010','FrenchSectionLabel==Conf\xe9rence mondiale sur le travail des enfants - La Haye, 10-11 mai 2010','SpanishSectionLabel==Conferencia mundial sobre trabajo infantil - La Haya, 10-11 de mayo de 2010','secondaryUrlVariableField==region1');
g_navNode_7_1=g_navNode_7.addNode('512','World Day Against Child Labour - 12 June',ssUrlPrefix + 'Campaignandadvocacy/WDACL/index.htm','DontShowChildrenNodes==FALSE','EnglishSectionLabel==World Day Against Child Labour - 12 June','FrenchSectionLabel==Journ\xe9e mondiale contre le travail des enfants - 12 juin','LeftColumnSize==75','SpanishSectionLabel==D\xeda mundial contra el trabajo infantil - 12 de junio','secondaryUrlVariableField==region1');
g_navNode_7_1_0=g_navNode_7_1.addNode('3646','World Day Against Child Labour 2010',ssUrlPrefix + 'Campaignandadvocacy/WDACL/WorldDay2010/index.htm','EnglishSectionLabel==World Day Against Child Labour 2010','FrenchSectionLabel==Journ\xe9e mondiale contre le travail des enfants 2010','SpanishSectionLabel==D\xeda mundial contra el trabajo infantil 2010');
g_navNode_7_1_1=g_navNode_7_1.addNode('3052','World Day Against Child Labour 2009\x3a Girls and child labour',ssUrlPrefix + 'Campaignandadvocacy/WDACL/WorldDay2009/index.htm','EnglishSectionLabel==World Day 2009\x3a Give girls a chance\x3a End child labour','FrenchSectionLabel==Journ\xe9e mondiale 2009\x3a Donnons une chance aux filles\x3a \xe9liminons le travail des enfants','SpanishSectionLabel==D\xeda mundial 2009\x3a Demos una oportunidad a las ni\xf1as\x3a Erradiquemos el trabajo infantil');
g_navNode_7_1_1_0=g_navNode_7_1_1.addNode('3217','World Day 2009 - News and events',ssUrlPrefix + 'Campaignandadvocacy/WDACL/WorldDay2009/WDACL2009_Events/index.htm','EnglishSectionLabel==World Day 2009 - News and events','FrenchSectionLabel==Journ\xe9e mondiale 2009 - Nouvelles et \xe9v\xe9nements','HideInNav==FALSE','SpanishSectionLabel==D\xeda mundial 2009 - Noticias y eventos');
g_navNode_7_1_2=g_navNode_7_1.addNode('2597','World Day Against Child Labour 2008\x3a Education... the right response to child labour',ssUrlPrefix + 'Campaignandadvocacy/WDACL/2008/index.htm','EnglishSectionLabel==World Day Against Child Labour 2008 - Education\x3a The right response to child labour','EnglishSectionLabel_2==Education... the right response to child labour ','FrenchSectionLabel==Journ\xe9e mondiale contre le travail des enfants 2008 - L\\x27\xe9ducation\x3a La bonne r\xe9ponse au travail des enfants','SpanishSectionLabel==D\xeda mundial contra el trabajo infantil 2008 - La educaci\xf3n\x3a La respuesta acertada al trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_7_1_2_0=g_navNode_7_1_2.addNode('2793','World Day 2008 - Events',ssUrlPrefix + 'Campaignandadvocacy/WDACL/2008/WorldDay2008-Events/index.htm','EnglishSectionLabel==World Day 2008 - News and events','FrenchSectionLabel==Journ\xe9e mondiale 2008 - Nouvelles et \xe9v\xe9nements','SpanishSectionLabel==D\xeda mundial 2008 - Noticias y eventos');
g_navNode_7_1_3=g_navNode_7_1.addNode('2084','Child Labour and agriculture \x282007\x29',ssUrlPrefix + 'Campaignandadvocacy/WDACL/2007/index.htm','FrenchSectionLabel==Travail des enfants et l\\x27agriculture \x282007\x29','SpanishSectionLabel==El trabajo infantil y la agricultura \x282007\x29','secondaryUrlVariableField==region1');
g_navNode_7_1_3_0=g_navNode_7_1_3.addNode('2094','World Day 2007 - Events',ssUrlPrefix + 'Campaignandadvocacy/WDACL/2007/WDACL2007Events/index.htm','EnglishSectionLabel==World Day 2007 - Events','FrenchSectionLabel==Journ\xe9e mondiale 2007 - Ev\xe8nements','SpanishSectionLabel==D\xeda mundial 2007 - Eventos','secondaryUrlVariableField==region1');
g_navNode_7_1_4=g_navNode_7_1.addNode('547','The End of Child Labour\x3a Together we can do it\x21 \x28WDACL 2006\x29',ssUrlPrefix + 'Campaignandadvocacy/WDACL/2006/index.htm','FrenchSectionLabel==La fin du travail des enfants\x3a Ensemble nous pouvons le faire\x21 \x28WDACL 2006\x29','SpanishSectionLabel==La eliminaci\xf3n del trabajo infantil\x3a iJuntos podemos hacerlo\x21 \x28WDACL 2006\x29','secondaryUrlVariableField==region1');
g_navNode_7_1_5=g_navNode_7_1.addNode('548','A Load too Heavy\x3a Child labour in mining and quarrying \x28WDACL 2005\x29',ssUrlPrefix + 'Campaignandadvocacy/WDACL/2005/index.htm','FrenchSectionLabel==Une charge trop lourde\x3a le travail des enfants dans les mines et les carri\xe8res \x28WDACL 2005\x29','SpanishSectionLabel==Un carga demasiado pesada\x3a trabajo infantil en minas y canteras \x28WDACL 2005\x29','secondaryUrlVariableField==region1');
g_navNode_7_1_6=g_navNode_7_1.addNode('549','Behind Closed Doors\x3a Child domestic labour \x28WDACL 2004\x29',ssUrlPrefix + 'Campaignandadvocacy/WDACL/2004/index.htm','FrenchSectionLabel==Derri\xe8re les portes closes\x3a le travail domestique des enfants \x28WDACL 2004\x29','SpanishSectionLabel==A puerta cerrada - trabajo infantil dom\xe9stico \x28WDACL 2004\x29','secondaryUrlVariableField==region1');
g_navNode_7_1_7=g_navNode_7_1.addNode('550','Trafficking in Children \x28WDACL 2003\x29',ssUrlPrefix + 'Campaignandadvocacy/WDACL/2003/index.htm','FrenchSectionLabel==Traite des enfants \x28WDACL 2003\x29','SpanishSectionLabel==Trata de ni\xf1os y ni\xf1as \x28WDACL 2003\x29','secondaryUrlVariableField==region1');
g_navNode_7_1_8=g_navNode_7_1.addNode('551','A Future Without Child Labour \x282002\x29',ssUrlPrefix + 'Campaignandadvocacy/WDACL/2002/index.htm','FrenchSectionLabel==Un avenir sans travail des enfants  \x282002\x29','SpanishSectionLabel==Un futuro sin trabajo infantil \x282002\x29','secondaryUrlVariableField==region1');
g_navNode_7_2=g_navNode_7.addNode('474','Scream',ssUrlPrefix + 'Campaignandadvocacy/Scream/index.htm','EnglishSectionLabel==SCREAM\x3a Supporting Children\\x27s Rights through Education, the Arts and the Media','FrenchSectionLabel==SCREAM - Halte au travail des enfants \x21','HideInNav==FALSE','SpanishSectionLabel==SCREAM - i Alto al trabajo infantil\x21','secondaryUrlVariableField==region1');
g_navNode_7_2_0=g_navNode_7_2.addNode('584','What is SCREAM?',ssUrlPrefix + 'Campaignandadvocacy/Scream/WhatisSCREAM/index.htm','EnglishSectionLabel==What is SCREAM?','FrenchSectionLabel==Au sujet de SCREAM','SpanishSectionLabel==Acerca de SCREAM','secondaryUrlVariableField==region1');
g_navNode_7_2_2=g_navNode_7_2.addNode('586','SCREAM resources',ssUrlPrefix + 'Campaignandadvocacy/Scream/SCREAMresources/index.htm','EnglishSectionLabel==SCREAM\x3a Education pack and resources','FrenchSectionLabel==SCREAM\x3a coffret p\xe9dagogique et autres ressources','SpanishSectionLabel==SCREAM\x3a Paquete did\xe1ctico y otros recursos','secondaryUrlVariableField==region1');
g_navNode_7_2_3=g_navNode_7_2.addNode('587','SCREAM around the world',ssUrlPrefix + 'Campaignandadvocacy/Scream/Events/index.htm','EnglishSectionLabel==SCREAM around the world','FrenchSectionLabel==SCREAM \xe0 travers le monde','SpanishSectionLabel==SCREAM alrededor del mundo','secondaryUrlVariableField==region1');
g_navNode_7_3=g_navNode_7.addNode('2910','12to12 Partnership Initiative',ssUrlPrefix + 'Campaignandadvocacy/12to12_Partnership/index.htm','EnglishSectionLabel==12 to 12 partnership initiative','FrenchSectionLabel==Partenariat de collaboration \"du 12 au 12\"','SpanishSectionLabel==Alianza de colaboraci\xf3n \"12 a 12\"','secondaryUrlVariableField==region1');
g_navNode_7_3_0=g_navNode_7_3.addNode('2923','About 12 to 12',ssUrlPrefix + 'Campaignandadvocacy/12to12_Partnership/About12to12/index.htm','EnglishSectionLabel==About 12 to 12','FrenchSectionLabel==Au sujet du Partenariat de collaboration \"du 12 au 12\"','SpanishSectionLabel==Acerca de la Alianza de colaboraci\xf3n \"12 a 12\"');
g_navNode_7_3_1=g_navNode_7_3.addNode('2911','12 to 12 Partners in action',ssUrlPrefix + 'Campaignandadvocacy/12to12_Partnership/12to12_Partners_action/index.htm','EnglishSectionLabel==12 to 12 partners in action','FrenchSectionLabel==Les partenaires \"du 12 au 12\" en action','SpanishSectionLabel==Los socios de la Alianza \"12 a 12\" en acci\xf3n');
g_navNode_7_4=g_navNode_7.addNode('3148','Youth in action against child labour',ssUrlPrefix + 'Campaignandadvocacy/Youthinaction/index.htm','EnglishSectionLabel==Youth in action against child labour','FrenchSectionLabel==Les jeunes en action contre le travail des enfants','SpanishSectionLabel==J\xf3venes en acci\xf3n contra el trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_7_4_0=g_navNode_7_4.addNode('3211','Youth-orientated version of Convention No. 182',ssUrlPrefix + 'Campaignandadvocacy/Youthinaction/C182-Youth-orientated/index.htm','EnglishSectionLabel==Youth-orientated version of Convention No. 182','FrenchSectionLabel==Version de la convention n\xba 182 destin\xe9e aux jeunes','SpanishSectionLabel==Versi\xf3n del Convenio n\xfam. 182 destinada a los j\xf3venes');
g_navNode_7_4_0_1=g_navNode_7_4_0.addNode('3213','Convention No. 182',ssUrlPrefix + 'Campaignandadvocacy/Youthinaction/C182-Youth-orientated/C182Youth_Convention/index.htm','EnglishSectionLabel==Convention No. 182','FrenchSectionLabel==Convention n\xba 182','SpanishSectionLabel==Convenci\xf3n n\xfam. 182');
g_navNode_7_4_0_2=g_navNode_7_4_0.addNode('3214','Background information on child labour and ILO',ssUrlPrefix + 'Campaignandadvocacy/Youthinaction/C182-Youth-orientated/C182Youth_Background/index.htm','EnglishSectionLabel==Background information on child labour and ILO','FrenchSectionLabel==Informations de base sur le travail des enfants et l\\x27OIT','SpanishSectionLabel==Informaci\xf3n de base sobre el trabajo infantil y la OIT');
g_navNode_7_4_0_3=g_navNode_7_4_0.addNode('3215','The worst forms of child labour',ssUrlPrefix + 'Campaignandadvocacy/Youthinaction/C182-Youth-orientated/worstforms/index.htm','EnglishSectionLabel==The worst forms of child labour','FrenchSectionLabel==Les pires formes de travail des enfants','SpanishSectionLabel==Las peores formas de trabajo infantil');
g_navNode_7_4_0_4=g_navNode_7_4_0.addNode('3216','Taking action and useful resources',ssUrlPrefix + 'Campaignandadvocacy/Youthinaction/C182-Youth-orientated/Resources/index.htm','EnglishSectionLabel==Taking action and useful resources','FrenchSectionLabel==Passer \xe0 l\\x27action et ressources utiles','SpanishSectionLabel==Pasar a la acci\xf3n y recursos \xfatiles');
g_navNode_7_4_1=g_navNode_7_4.addNode('3320','Uniting to end child labour\x3a Keep the pinwheel moving\x21',ssUrlPrefix + 'Campaignandadvocacy/Youthinaction/Pinwheel/index.htm','EnglishSectionLabel==Uniting to end child labour\x3a Keep the pinwheel moving\x21','FrenchSectionLabel==Unissons-nous pour mettre fin au travail des enfants\x3a que le moulinet tourne \xe0 jamais\x21','SpanishSectionLabel==Un\xe1monos para eliminar el trabajo infantil\x3a \xa1Que el molinete gire por siempre\x21');
g_navNode_7_5=g_navNode_7.addNode('511','Red Card to Child Labour',ssUrlPrefix + 'Campaignandadvocacy/RedCardtoChildLabour/index.htm','FrenchSectionLabel==Carton rouge au travail des enfants','SpanishSectionLabel==Tarjeta roja al trabajo infantil','secondaryUrlVariableField==region1');
g_navNode_8=g_navNode_Root.addNode('160','Events',ssUrlPrefix + 'Events/index.htm','DefaultGroupFieldName==xDateAvailableStartDate','DefaultGroupType==0','DontShowChildrenNodes==FALSE','EnglishSectionLabel==Events ','FrenchSectionLabel==Ev\xe9nements','ListNodeId_1==265','Query_1==\x28dDocType \x3cmatches\x3e \x60Event\x60  \x3cAND\x3e  dDocAccount \x3csubstring\x3e \x60ED_NORM/IPEC\x60\x29','SpanishSectionLabel==Eventos','secondaryUrlVariableField==region1');
g_navNode_8_0=g_navNode_8.addNode('265','Events',ssUrlPrefix + 'Events/Events/index.htm','DefaultGroupFieldName==xDateAvailableStartDate','DefaultGroupType==0','FrenchSectionLabel==Ev\xe9nements','HideInNav==TRUE','Query_1==\x28dDocType \x3cmatches\x3e \x60Event\x60  \x3cAND\x3e  dDocAccount \x3csubstring\x3e \x60ED_NORM/IPEC\x60\x29','Query_2==\x28dDocType \x3cmatches\x3e \x60Event\x60  \x3cAND\x3e  dDocAccount \x3csubstring\x3e \x60DGREPORTS/DCOMM\x60  \x3cAND\x3e  xSubject \x3csubstring\x3e \x60A.10\x60\x29','SpanishSectionLabel==Eventos','secondaryUrlVariableField==region1');
g_navNode_9=g_navNode_Root.addNode('162','Information resources',ssUrlPrefix + 'Informationresources/index.htm','EnglishSectionLabel==Information resources','FrenchSectionLabel==Ressources d\\x27information','SpanishSectionLabel==Fuentes de informaci\xf3n','secondaryUrlVariableField==region1');
g_navNode_10=g_navNode_Root.addNode('469','Links',ssUrlPrefix + 'Links/index.htm','EnglishSectionLabel==Links','FrenchSectionLabel==Liens','SpanishSectionLabel==Enlaces','secondaryUrlVariableField==region1');
g_navNode_11=g_navNode_Root.addNode('447','Supplemental Navigation',ssUrlPrefix + 'SupplementalNavigation/index.htm','HideInNav==TRUE');
g_navNode_11_0=g_navNode_11.addNode('448','Site map',ssUrlPrefix + 'SupplementalNavigation/sitemap/index.htm','FrenchSectionLabel==Plan du site','SpanishSectionLabel==Mapa del sitio','secondaryUrlVariableField==region1');
g_navNode_11_1=g_navNode_11.addNode('449','Contact us',ssUrlPrefix + 'SupplementalNavigation/Contactus/index.htm','FrenchSectionLabel==Contactez-nous','SpanishSectionLabel==Cont\xe1ctenos','secondaryUrlVariableField==region1');
g_navNode_11_2=g_navNode_11.addNode('475','Site Search',ssUrlPrefix + 'SupplementalNavigation/SiteSearch/index.htm','HideInNav==TRUE','secondaryUrlVariableField==region1');
g_navNode_11_2_0=g_navNode_11_2.addNode('483','   ',ssUrlPrefix + 'SupplementalNavigation/SiteSearch/ContextualSearchResults/index.htm','secondaryUrlVariableField==region1');
g_navNode_11_2_1=g_navNode_11_2.addNode('477','Search Results',ssUrlPrefix + 'SupplementalNavigation/SiteSearch/SearchResults/index.htm','secondaryUrlVariableField==region1');
g_navNode_12=g_navNode_Root.addNode('524','Error Handler',ssUrlPrefix + 'ErrorHandler/index.htm','HideInNav==TRUE','secondaryUrlVariableField==region1');
