/////////////////////////////////////////////////////////////////////////////
// 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 eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		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 eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		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('410','Home',ssUrlPrefix + 'index.htm',null,'Keywords==oil field services, oilfield services, oil and gas services, drilling, oilfield evaluation, drilling services, drilling intervention, drilling production services, drilling completion services, formation evaluation, oilfield service tools, logging while drilling, lwd, mwd, surface logging systems, mud logging, GC-Tracer, wireline services, drilling hazard mitigation, safety systems, precision drilling, centralizers,mechanical cementing tools, offshore drilling, measurement while drilling','PageDescription==Weatherford International provides oilfield products and services across the drilling, evaluation, completion, production and intervention areas.','PageTitle==Weatherford International ');
g_navNode_0=g_navNode_Root.addNode('411','About Weatherford',ssUrlPrefix + 'AboutWeatherford/ ','Keywords==oil field services, oilfield services, oil and gas services, drilling, oilfield evaluation, drilling services, drilling intervention, drilling production services, drilling completion services,','PageDescription==Weatherford provides oilfield services and equipment across the drilling, evaluation, completion, production and intervention areas.','TopNavTitle==About Weatherford','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_0=g_navNode_0.addNode('413','Locations',ssUrlPrefix + 'AboutWeatherford/Locations/ ','PageDescription==Weatherford International Ltd. \u2013 Locations','PageTitle==Locations','TopNavTitle==Locations','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1=g_navNode_0.addNode('644','Company Information',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/ ','PageDescription==Weatherford International Ltd. - Company Information','PageTitle==Company Information','TopNavTitle==Company Information','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_0=g_navNode_0_1.addNode('426','Company Background',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/CompanyBackground/ ','PageDescription==Weatherford International Ltd. - Company Background','PageTitle==Company Background','TopNavTitle==Company Information','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_0_0=g_navNode_0_1_0.addNode('725','Areas of Focus',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/CompanyBackground/AreasofFocus/ ','LeftNavTitle==Company Background','TopNavTitle==Company Background','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_1=g_navNode_0_1.addNode('591','Careers',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/Careers/ ','PageDescription==Weatherford International Ltd. - Careers','PageTitle==Careers','TopNavTitle==Company Information','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_1_0=g_navNode_0_1_1.addNode('683','View',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/Careers/View/ ','TopNavTitle==Careers','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_1_0_0=g_navNode_0_1_1_0.addNode('1213','OpenPositions',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/Careers/View/OpenPositions/ ','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_1_1=g_navNode_0_1_1.addNode('684','Fraudulent Recruitment and Employment Offers',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/Careers/FraudulentRecruitment/ ','TopNavTitle==Careers','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_1_2=g_navNode_0_1_1.addNode('685','What\'s Weatherford Like?',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/Careers/WhatsWeatherfordLike/ ','TopNavTitle==Careers','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_1_3=g_navNode_0_1_1.addNode('686','Focused on Growth',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/Careers/FocusedonGrowth/ ','TopNavTitle==Careers','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_1_4=g_navNode_0_1_1.addNode('687','Career Options',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/Careers/CareerOptions/ ','TopNavTitle==Careers','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_1_5=g_navNode_0_1_1.addNode('688','Employee Development',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/Careers/EmployeeDevelopment/ ','TopNavTitle==Careers','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_1_6=g_navNode_0_1_1.addNode('689','Students and Graduates',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/Careers/StudentsandGraduates/ ','TopNavTitle==Careers','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_1_7=g_navNode_0_1_1.addNode('690','Weatherford People',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/Careers/WeatherfordPeople/ ','TopNavTitle==Careers','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_1_8=g_navNode_0_1_1.addNode('1214','Jobs-Taleo',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/Careers/Taleo/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_1_9=g_navNode_0_1_1.addNode('1597','Career Fairs',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/Careers/CareerFairs/index.htm','Keywords==Weatherford Career Fairs','PageDescription==Career Fairs','PageTitle==Career Fairs');
g_navNode_0_1_2=g_navNode_0_1.addNode('708','Press Room',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/ ','PageDescription==Weatherford International Ltd. - Press Room','PageTitle==Press Room','TopNavTitle==Company Information','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_0=g_navNode_0_1_2.addNode('416','W Magazine',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/WMagazine/ ','LeftNavTitle==News Stand','PageDescription==Weatherford International Ltd. \u2013 W Magazine','PageTitle==W Magazine','TopNavTitle==Company Information','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_0_0=g_navNode_0_1_2_0.addNode('717','Current Issue',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/WMagazine/CurrentIssue/ ','LeftNavTitle==W Magazine','PageDescription==Weatherford International Ltd. \u2013 W Magazine Current Issue','PageTitle==W Magazine Current Issue','TopNavTitle==Company Information','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_0_1=g_navNode_0_1_2_0.addNode('718','Archive Issues',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/WMagazine/ArchiveIssues/ ','LeftNavTitle==W Magazine','PageDescription==Weatherford International Ltd. \u2013 W Magazine Archive Issues','PageTitle==Archive Issues','TopNavTitle==Company Information','secondaryUrlVariableField==pl_WFTCorp_Dynamic_Pages','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_2=g_navNode_0_1_2.addNode('722','Advertisements',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/Advertisements/ ','PageDescription==Weatherford International Ltd. \u2013 Advertisements','PageTitle==Advertisements','TopNavTitle==Press Room','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_2_0=g_navNode_0_1_2_2.addNode('1258','Change Ad 1',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/Advertisements/ChangeAd1/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_2_1=g_navNode_0_1_2_2.addNode('1276','Change Ad 2',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/Advertisements/ChangeAd2/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_2_2=g_navNode_0_1_2_2.addNode('1277','Change Ad 3',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/Advertisements/ChangeAd3/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_2_3=g_navNode_0_1_2_2.addNode('1278','Change Ad 4',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/Advertisements/ChangeAd4/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_2_4=g_navNode_0_1_2_2.addNode('1304','Change Ad 5',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/Advertisements/ChangeAd5/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_2_5=g_navNode_0_1_2_2.addNode('1338','Change Ad 6',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/Advertisements/ChangeAd6/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_2_6=g_navNode_0_1_2_2.addNode('1341','Change Ad 7',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/Advertisements/ChangeAd7/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_3=g_navNode_0_1_2.addNode('723','Company Magazine',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/CompanyMagazine/ ','PageDescription==Weatherford International Ltd. \u2013 Company Magazine','PageTitle==Company Magazine','TopNavTitle==Press Room','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_4=g_navNode_0_1_2.addNode('415','Trade Show Calendar',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/TradeShowCalendar/ ','PageDescription==Weatherford International Ltd. \u2013 Tradeshows and Events','PageTitle==Tradeshows and Events','TopNavTitle==Tradeshows and Events','secondaryUrlVariableField==pl_WFTCorp_Dynamic_Pages','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_2_4_0=g_navNode_0_1_2_4.addNode('1253','TradeShow',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/PressRoom/TradeShowCalendar/TradeShow/index.htm','PageTitle==Global Exhibitions and Events','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_3=g_navNode_0_1.addNode('417','Enterprise Excellence \x28EEP\x29',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/EnterpriseExcellence/ ','PageDescription==Weatherford International Ltd. - Enterprise Excellence','PageTitle==Enterprise Excellence','TopNavTitle==Company Information','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_1_4=g_navNode_0_1.addNode('418','QHSSE',ssUrlPrefix + 'AboutWeatherford/CompanyInformation/QHSSE/ ','PageDescription==Weatherford International Ltd. - QHSSE','PageTitle==QHSSE','TopNavTitle==Company Information','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_2=g_navNode_0.addNode('412','Corporate Governance',ssUrlPrefix + 'AboutWeatherford/CorporateGovernance/ ','PageDescription==Weatherford International Ltd. - Corporate Governance','PageTitle==Corporate Governance','TopNavTitle==Corporate Governance','Top_Title_Text==Corporate Governance','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_2_0=g_navNode_0_2.addNode('699','Corporate Governance Policies',ssUrlPrefix + 'AboutWeatherford/CorporateGovernance/CorporateGovernancePolicies/ ','PageDescription==Weatherford International Ltd. \u2013 Corporate Governance Policies','PageTitle==Corporate Governance Policies','TopNavTitle==Corporate Governance','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_2_1=g_navNode_0_2.addNode('701','Board Composition',ssUrlPrefix + 'AboutWeatherford/CorporateGovernance/BoardComposition/ ','PageDescription==Weatherford International Ltd. \u2013 Board Composition','PageTitle==Board Composition','TopNavTitle==Corporate Governance','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_2_2=g_navNode_0_2.addNode('700','Governing Documents',ssUrlPrefix + 'AboutWeatherford/CorporateGovernance/GoverningDocuments/ ','PageDescription==Weatherford International Ltd. \u2013 Governing Documents','PageTitle==Governing Documents','TopNavTitle==Corporate Governance','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_2_3=g_navNode_0_2.addNode('702','Committee Charters',ssUrlPrefix + 'AboutWeatherford/CorporateGovernance/CommitteeCharters/ ','PageDescription==Weatherford International Ltd. \u2013 Committee Charters','PageTitle==Committee Charters','TopNavTitle==Corporate Governance','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_2_4=g_navNode_0_2.addNode('703','Code of Business Conduct',ssUrlPrefix + 'AboutWeatherford/CorporateGovernance/CodeofConduct/ ','PageDescription==Weatherford International Ltd. \u2013 Code of Business Conduct','PageTitle==Code of Business Conduct','TopNavTitle==Corporate Governance','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_2_5=g_navNode_0_2.addNode('707','Compliance and Ethics Concerns',ssUrlPrefix + 'AboutWeatherford/CorporateGovernance/ComplianceandEthicsConcerns/ ','PageDescription==Weatherford International Ltd. \u2013 Compliance and Ethics Concerns','PageTitle==Compliance and Ethics Concerns','TopNavTitle==Corporate Governance','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_0_3=g_navNode_0.addNode('580','Investor Relations',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/ ','PageDescription==Weatherford International Ltd. - Investor Relations','PageTitle==Investor Relations','TopNavTitle==Investor Relations','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Investor Relations\x60');
g_navNode_0_3_0=g_navNode_0_3.addNode('1096','News Archive',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/NewsArchive/ ','PageDescription==Weatherford International Ltd. - Financial News Archive','PageTitle==News Archive','TopNavTitle==Investor Relations','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Investor Relations\x60');
g_navNode_0_3_1=g_navNode_0_3.addNode('581','News Releases',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/NewsReleases/ ','PageDescription==Weatherford International Ltd. - Financial News','PageTitle==Financial News','TopNavTitle==Investor Relations','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Investor Relations\x60');
g_navNode_0_3_1_0=g_navNode_0_3_1.addNode('1137','News Viewer',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/NewsReleases/NewsViewer/NewsArticle.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Investor Relations\x60');
g_navNode_0_3_2=g_navNode_0_3.addNode('582','Investor FAQs',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/InvestorFAQs/ ','PageDescription==Weatherford International Ltd. - Frequently Asked Questions','PageTitle==Frequently Asked Questions','TopNavTitle==Investor Relations','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Investor Relations\x60');
g_navNode_0_3_3=g_navNode_0_3.addNode('583','SEC Filings',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/SECFilings/ ','PageDescription==Weatherford International Ltd. - SEC Filings','PageTitle==SEC Filings','TopNavTitle==Investor Relations','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Investor Relations\x60');
g_navNode_0_3_4=g_navNode_0_3.addNode('584','Stock Quotes',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/StockQuotes/ ','PageDescription==Weatherford International Ltd. - Stock Quotes','PageTitle==Stock Quotes','TopNavTitle==Investor Relations','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Investor Relations\x60');
g_navNode_0_3_5=g_navNode_0_3.addNode('586','Investor Presentation',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/InvestorPresentation/ ','PageDescription==Weatherford International Ltd. - Investor Presentation','PageTitle==Investor Presentations','TopNavTitle==Investor Relations','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Investor Relations\x60');
g_navNode_0_3_6=g_navNode_0_3.addNode('587','Conference Call Archive',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/ConferenceCallArchive/ ','PageDescription==Weatherford International Ltd. - Conference Call Archive','PageTitle==Conference Call Archive','TopNavTitle==Investor Relations','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Investor Relations\x60');
g_navNode_0_3_7=g_navNode_0_3.addNode('588','Financial Information',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/FinancialInformation/ ','PageDescription==Weatherford International Ltd. - Financial Information','PageTitle==Financial Information','TopNavTitle==Investor Relations','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Investor Relations\x60');
g_navNode_0_3_8=g_navNode_0_3.addNode('697','Proxy Materials\x3a Annual General Meeting',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/ProxyMaterials/ ','PageDescription==Weatherford International Ltd. - Proxy Materials\x3a Annual General Meeting','PageTitle==Proxy Materials','TopNavTitle==Investor Relations','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Investor Relations\x60');
g_navNode_0_3_9=g_navNode_0_3.addNode('1464','Trade Media Releases ',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/TradeMediaReleases/index.htm','PageDescription==Weatherford International Ltd. - Shareholder Information and News','PageTitle==Trade Media Releases ','TopNavTitle==Investor Relations','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Investor Relations\x60');
g_navNode_0_3_10=g_navNode_0_3.addNode('1490','Analyst Coverage',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/AnalystCoverage/index.htm');
g_navNode_0_3_11=g_navNode_0_3.addNode('1532','Annual Reports',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/AnnualReports/index.htm');
g_navNode_0_3_11_0=g_navNode_0_3_11.addNode('585','Annual Reports Archive',ssUrlPrefix + 'AboutWeatherford/InvestorRelations/AnnualReports/AnnualReportsArchive/index.htm','PageDescription==Weatherford International Ltd. - Annual Reports','PageTitle==Annual Reports','TopNavTitle==Investor Relations','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Investor Relations\x60');
g_navNode_0_4=g_navNode_0.addNode('1260','Order W Magazine',ssUrlPrefix + 'AboutWeatherford/OrderW/index.htm','PageDescription==Weatherford International Ltd. \u2013 W Magazine','PageTitle==Order W Magazine','TopNavTitle==Order W Magazine','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60About Weatherford\x60');
g_navNode_1=g_navNode_Root.addNode('432','Products and Services',ssUrlPrefix + 'Products/ ','LeftNavTitle==','TopNavTitle==Products and Services');
g_navNode_1_0=g_navNode_1.addNode('433','Drilling',ssUrlPrefix + 'Products/Drilling/ ','Keywords==directional drilling services, well construction, drilling tools, drilling with casing, secure drilling services','PageDescription==Weatherford has created a portfolio of drilling services and products that make well construction safer, reduce nonproductive time and enhance reservoir deliverability.','PageTitle==Drilling ','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0=g_navNode_1_0.addNode('434','Secure Drilling Services',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/ ','Keywords==secure driling services','PageDescription==Our Secure Drilling Services minimize the risk of drilling hazards related to a wellbore\u2019s pressure profile, and ultimately optimize life-of-well performance.','PageTitle==Secure Drilling Services','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_0=g_navNode_1_0_0.addNode('792','Underbalanced Drilling',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/UnderbalancedDrilling/ ','Keywords==underbalanced drilling, ubd','PageDescription==Weatherford\u2019s underbalanced drilling \x28UBD\x29 services reduce formation damage, discover bypassed pay zones and increase reserves','PageTitle==Underbalanced Drilling','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_1=g_navNode_1_0_0.addNode('793','Managed Pressure Drilling',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/ManagedPressureDrilling/ ','Keywords==managed pressure drilling, mpd','PageDescription==Weatherford\u2019s managed pressure drilling \x28MPD\x29 services maximize control of your wellbore\u2019s pressure profile, mitigate drilling hazards and ultimately make otherwise undrillable prospects drillable.','PageTitle==Managed Pressure Drilling','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_1_0=g_navNode_1_0_0_1.addNode('1469','Closing the Loop',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/ManagedPressureDrilling/ClosingtheLoop/index.htm','Keywords==closed-loop system, RCD','PageDescription==A closed loop system canot exist without an RCD.','PageTitle==Closing the Loop');
g_navNode_1_0_0_1_1=g_navNode_1_0_0_1.addNode('1470','Enabling Pressure Control',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/ManagedPressureDrilling/EnablingPressureControl/index.htm','PageDescription==Enabling Pressure Control','PageTitle==Enabling Pressure Control');
g_navNode_1_0_0_1_2=g_navNode_1_0_0_1.addNode('1471','Precisely Managing Pressure',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/ManagedPressureDrilling/PreciselyManagingPressure/index.htm','Keywords==Precisely Managing Pressure','PageDescription==Precisely Managing Pressure','PageTitle==Precisely Managing Pressure');
g_navNode_1_0_0_1_3=g_navNode_1_0_0_1.addNode('1472','Optimizing through Prediction',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/ManagedPressureDrilling/OptimizingthroughPrediction/index.htm','Keywords==Optimizing through Prediction','PageDescription==Optimizing through Prediction','PageTitle==Optimizing through Prediction');
g_navNode_1_0_0_2=g_navNode_1_0_0.addNode('794','Air Drilling',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/AirDrilling/ ','Keywords==air drilling, ROP','PageDescription==Weatherford\u2019s air drilling services increase rate of penetration \x28ROP\x29 and reduce drilling costs','PageTitle==Air Drilling','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_2_0=g_navNode_1_0_0_2.addNode('1106','Surface Equipment',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/AirDrilling/SurfaceEquipment/index.htm','Keywords==Surface equipment, air compression equipment, rotating control devices, and two-phase separation equipment','PageDescription==Surface equipment\x3a air compression equipment, rotating control devices, and two-phase separation equipment','PageTitle==Surface Equipment','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_2_1=g_navNode_1_0_0_2.addNode('1133','Downhole Deployment Valve',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/AirDrilling/DownholeDeploymentValve/index.htm','Keywords==ddv, ddv tool, downhole barrier','PageDescription==The DDV tool is a downhole barrier valve with a flapper-type seal mechanism that contains reservoir fluids in the casing, preventing pressure at surface. ','PageTitle==Downhole Deployment Valve','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_3=g_navNode_1_0_0.addNode('795','SURE - Suitable Underbalanced Reservoir Evaluation Process',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/SURE-SuitableUnderbalancedReservoirEvaluationProcess/ ','Keywords==SURE, MPD, UBD','PageDescription==Weatherford\u2019s SURE candidate selection process improves he success rate of air drilling, managed pressure drilling \x28MPD\x29 and underbalanced drilling \x28UBD\x29 applications by determining the most technologically and economically appropriate way to drill the well.','PageTitle==SURE Candidate Selector','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_4=g_navNode_1_0_0.addNode('1097','Underbalanced Pages',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/UnderbalancedPages/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_4_0=g_navNode_1_0_0_4.addNode('1104','SURE',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/UnderbalancedPages/SURE/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_4_1=g_navNode_1_0_0_4.addNode('1105','Engineered Chemistry',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/UnderbalancedPages/EngineeredChemistry/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_5=g_navNode_1_0_0.addNode('1298','Technologies',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/Technologies/index.htm','Keywords==Rotating Control Devices, RCD, Downhole Deployment Valve, DDV, Microflux\u2122 control system, Gateway\u2122 Wireline-Retrievable Nonreturn Valve, WR-NRV','PageDescription==Weatherford provides a broad selection of managed pressure drilling \x28MPD\x29 Air Drilling and Underbalanced Drilling \x28UBD\x29 technologies that help minimize the risk of drilling hazards related to a wellbore\u2019s pressure profile.','PageTitle==Managed pressure drilling \x28MPD\x29, Air Drilling and Underbalanced Drilling \x28UBD\x29 Technologies ','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_5_0=g_navNode_1_0_0_5.addNode('1301','Rotating Control Devices',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/Technologies/RotatingControlDevices/index.htm','Keywords==rotating control devices, RCD, ROP, ','PageDescription==Weatherford offers a full line of rotating control devices \x28RCD\x29 to maintain a pressure-tight barrier between fluid returns and personnel on the rig floor.  ','PageTitle==Rotating Control Devices','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_5_1=g_navNode_1_0_0_5.addNode('1302','Downhole Deployment Valve',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/Technologies/DownholeDeploymentValve/index.htm','Keywords==DDV, Downhole Deplyment Valve','PageDescription==The DDV tool is a downhole barrier valve that increases safety and reduces formation damage with a flapper-type seal mechanism that contains reservoir fluids in the casing, preventing pressure at surface.','PageTitle==Downhole Deplyment Valve','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_5_2=g_navNode_1_0_0_5.addNode('1322','Microflux Control System',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/Technologies/MicrofluxControlSystem/index.htm','Keywords==Microflux','PageDescription==The Microflux control system combines closed-loop technology with sophisticated, proprietary data acquisition and computer-controlled equipment to enhance rig safety and drilling efficiency to a level not attainable with standard drilling systems or even other managed pressure drilling systems.','PageTitle==Microflux control system','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_5_3=g_navNode_1_0_0_5.addNode('1323','Gateway WR-NRV',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/Technologies/GatewayWR-NRV/index.htm','Keywords==Gateway Wireline Retrievable Non-Return Valve, Gateway WR-NRV','PageDescription==The Gateway wireline retrievable non-return float valve is a flapper-style, drill float valve that manages backpressure in the drillstring to enhance safety, and provides unique recovery options for greater efficiency and reduced risk. ','PageTitle==Gateway Wireline Retrievable Non-Return Valve','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_0_6=g_navNode_1_0_0.addNode('1299','Fluid Systems',ssUrlPrefix + 'Products/Drilling/SecureDrillingServices/FluidSystems/index.htm','Keywords==drilling fluids, fluid systems','PageDescription==Weatherford\u2019s fluid systems maximize drilling performance and security.','PageTitle==Fluid Systems','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_1=g_navNode_1_0.addNode('435','Mechanized Rig Systems',ssUrlPrefix + 'Products/Drilling/MechanizedRigSystems/ ','LeftNavTitle==Mechanized Rig Systems','PageDescription==Weatherford offers a mechanized option for any rig environment','PageTitle==Mechanized Rig Systems','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_1_0=g_navNode_1_0_1.addNode('1067','All-in-One Technology',ssUrlPrefix + 'Products/Drilling/MechanizedRigSystems/All-in-OneTechnology/ ','Keywords==All-in-One Iron Roughnecks','LeftNavTitle==Mechanized Rig Systems','PageDescription==Weatherford\u2019s iron roughneck systems facilitate hands-off tubular makeup and breakout operations','PageTitle==All-in-One Technology','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_1_1=g_navNode_1_0_1.addNode('1068','Bucking Units',ssUrlPrefix + 'Products/Drilling/MechanizedRigSystems/BuckingUnits/ ','Keywords==CAM, Coupling Application Machine systems ','LeftNavTitle==Mechanized Rig Systems','PageDescription==Weatherford\u2019s custom-designed bucking systems','PageTitle==Bucking Units','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_1_2=g_navNode_1_0_1.addNode('1069','Control Systems',ssUrlPrefix + 'Products/Drilling/MechanizedRigSystems/ControlSystems/ ','Keywords==control systems','LeftNavTitle==Mechanized Rig Systems','PageDescription==Weatherford\u2019s control systems are designed for stand-alone operation, but can also interface with the rig\\x27s control system to prevent collision between the various pieces of equipment used in the operational sequences, thus reducing the chance of human error.','PageTitle==Control Systems','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_1_3=g_navNode_1_0_1.addNode('1070','Hydraulic Power Units',ssUrlPrefix + 'Products/Drilling/MechanizedRigSystems/HydraulicPowerUnits/ ','LeftNavTitle==Mechanized Rig Systems','PageDescription==Electric- or diesel-power units are available to provide a reliable power source for a wide range of hydraulic requirements, including all onshore and offshore applications. ','PageTitle==Hydraulic Power Units','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_1_4=g_navNode_1_0_1.addNode('1071','Iron Roughnecks and Drillpipe Tongs',ssUrlPrefix + 'Products/Drilling/MechanizedRigSystems/IronRoughnecksandDrillpipeTongs/ ','Keywords==roughnecks','LeftNavTitle==Mechanized Rig Systems','PageDescription==Weatherford\u2019s iron roughnecks have the muscle to deliver exceptional makeup and breakout performance','PageTitle==Iron Roughnecks','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_1_5=g_navNode_1_0_1.addNode('1072','Pipe Handling Equipment',ssUrlPrefix + 'Products/Drilling/MechanizedRigSystems/PipeHandlingEquipment/ ','Keywords==drillpipe and collars','LeftNavTitle==Mechanized Rig Systems','PageDescription==Weatherford\u2019s Iron Derrickman\xae pipe-handling systems mechanize the process of lifting and moving stands of drillpipe and collars from hole center to programmed coordinates in the racking board.','PageTitle==Pipe Handling Equipment','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_1_6=g_navNode_1_0_1.addNode('1073','Positioning Devices',ssUrlPrefix + 'Products/Drilling/MechanizedRigSystems/PositioningDevices/ ','Keywords==rig positioning devices','LeftNavTitle==Mechanized Rig Systems','PageDescription==Our positioning systems accelerate total makeup time by efficient tong manipulation, saving rig time and enhancing safety.','PageTitle==Positioning Devices','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_1_7=g_navNode_1_0_1.addNode('1528','Monitoring and Testing',ssUrlPrefix + 'Products/Drilling/MechanizedRigSystems/MonitoringandTesting/index.htm','Keywords==Monitoring and Testing ','PageDescription==Monitoring and Testing ','PageTitle==Monitoring and Testing ');
g_navNode_1_0_2=g_navNode_1_0.addNode('445','Solid Expandables',ssUrlPrefix + 'Products/Drilling/SolidExpandables/ ','Keywords==solid expandables, open and cased hole solid expandables','PageDescription==Weatherford\u2019s new-generation MetalSkin\xae open- and cased-hole solid expandables offer ingenious ideas for well construction and remediation.','PageTitle==MetalSkin\xae Solid Expandable Systems ','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_2_0=g_navNode_1_0_2.addNode('771','MetalSkin Open-Hole Liner System',ssUrlPrefix + 'Products/Drilling/SolidExpandables/MetalSkinOpen-HoleLinerSystem/ ','Keywords==open-hole liner system','LeftNavTitle==Solid Expandables','PageDescription==The MetalSkin open-hole liner system is a solid expandable drilling liner that reduces well construction costs with the ability to provide an additional casing string while conserving hole size.','PageTitle==MetalSkin\xae Open-Hole Liner System','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_2_1=g_navNode_1_0_2.addNode('772','MetalSkin Monobore Open-Hole Liner Systems',ssUrlPrefix + 'Products/Drilling/SolidExpandables/MetalSkinMonoboreOpen-HoleLinerSystems/ ','Keywords==MetalSkin, open-hole liner system','LeftNavTitle==Solid Expandables','PageDescription==The MetalSkin monobore open-hole liner system eliminates the slimming of a well profile.','PageTitle==MetalSkin Monobore Open-Hole Liner Systems','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_2_2=g_navNode_1_0_2.addNode('773','MetalSkin Cased-Hole Liner System',ssUrlPrefix + 'Products/Drilling/SolidExpandables/MetalSkinCased-HoleLinerSystem/ ','Keywords==MetalSkin, cased-hole liner system','LeftNavTitle==Solid Expandables','PageDescription==The MetalSkin cased-hole liner system deals with excessive water production, reservoir sweep inefficiency and other issues of aging wells.','PageTitle==MetalSkin Cased-Hole Liner System','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_2_3=g_navNode_1_0_2.addNode('774','MetalSkin Monobore Open-Hole Clad Systems',ssUrlPrefix + 'Products/Drilling/SolidExpandables/MetalSkinMonoboreOpen-HoleCladSystems/ ','Keywords==MetalSkin, monobore, open-hole clad system','LeftNavTitle==Solid Expandables','PageDescription==The MetalSkin monobore open-hole clad system is much more efficient than pumping thicker muds and cement to seal a formation.','PageTitle==MetalSkin Monobore Open-Hole Clad Systems','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_2_4=g_navNode_1_0_2.addNode('775','ABL - Alternative Borehole Liner Expandable Liner System',ssUrlPrefix + 'Products/Drilling/SolidExpandables/ABLAlternativeBoreholeLinerExpandableLinerSystem/ ','Keywords==zonal isolation, borehole, expandable liner system','LeftNavTitle==Solid Expandables','PageDescription==The ABL alternative borehole liner is slotted tubular expandable technology that provides an attractive, cost-effective solution in the drilling phase.','PageTitle==ABL - Alternative Borehole Liner Expandable Liner System','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_2_5=g_navNode_1_0_2.addNode('776','HOMCO Internal Steel Liner Casing Patch',ssUrlPrefix + 'Products/Drilling/SolidExpandables/HOMCOInternalSteelLinerCasingPatch/ ','Keywords==HOMCO','LeftNavTitle==Solid Expandables','PageDescription==The HOMCO steel liner casing patch seals perforations, collar and thread leaks, splits and limited corroded areas in tubing and casing. ','PageTitle==HOMCO Internal Steel Liner Casing Patch','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_2_6=g_navNode_1_0_2.addNode('777','HydraSkin Open- and Cased-Hole Liner System',ssUrlPrefix + 'Products/Drilling/SolidExpandables/HydraSkinOpen-andCased-HoleLinerSystem/ ','Keywords==HydraSkin, solid expandable system','LeftNavTitle==Solid Expandables','PageDescription==The HydraSkin solid expandable system is a hydraulic bottom-up expansion system that uses the expandable casing as a pressure chamber to pump the cone up the expandable liner. ','PageTitle==HydraSkin Open- and Cased-Hole Liner System ','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_3=g_navNode_1_0.addNode('446','Cementing Products',ssUrlPrefix + 'Products/Drilling/CementingProducts/ ','Keywords==cementing products, oilwell cementing products, float-equipment testing, centralizer, API','LeftNavTitle==Cementing Products','PageDescription==Weatherford offers the largest and most extensive line of cementing products ','PageTitle==Cementing Products','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_3_0=g_navNode_1_0_3.addNode('798','Mechanical Cementing Products',ssUrlPrefix + 'Products/Drilling/CementingProducts/MechanicalCementingProducts/ ','LeftNavTitle==Cementing Products','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_3_1=g_navNode_1_0_3.addNode('799','Float and Stage Equipment',ssUrlPrefix + 'Products/Drilling/CementingProducts/FloatandStageEquipment/ ','LeftNavTitle==Cementing Products','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_3_2=g_navNode_1_0_3.addNode('800','Torque and Drag Reduction',ssUrlPrefix + 'Products/Drilling/CementingProducts/TorqueandDragReduction/ ','LeftNavTitle==Cementing Products','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_3_3=g_navNode_1_0_3.addNode('801','Surge Reduction Systems',ssUrlPrefix + 'Products/Drilling/CementingProducts/SurgeReductionSystems/ ','LeftNavTitle==Cementing Products','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_3_4=g_navNode_1_0_3.addNode('802','WellMaster Deepwater System',ssUrlPrefix + 'Products/Drilling/CementingProducts/WellMasterDeepwaterSystem/ ','LeftNavTitle==Cementing Products','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_3_5=g_navNode_1_0_3.addNode('804','Software',ssUrlPrefix + 'Products/Drilling/CementingProducts/Software/ ','LeftNavTitle==Cementing Products','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_3_6=g_navNode_1_0_3.addNode('1582','High-Pressure Plug Set',ssUrlPrefix + 'Products/Drilling/CementingProducts/High-PressurePlugSet/index.htm','Keywords==High-Pressure Plug Set','PageDescription==High-Pressure Plug Set','PageTitle==High-Pressure Plug Set');
g_navNode_1_0_4=g_navNode_1_0.addNode('436','Directional Drilling Services',ssUrlPrefix + 'Products/Drilling/DrillingServices/ ','Keywords==drilling efficiency, directional drilling, MWD, LWD, RSS, drilling services','LeftNavTitle==Directional Drilling ','PageDescription==Directional Drilling services','PageTitle==Directional Drilling Services','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_4_0=g_navNode_1_0_4.addNode('437','Rotary Steerable',ssUrlPrefix + 'Products/Drilling/DrillingServices/RotarySteerable/ ','Keywords==RSS, rotary steerable system, point-the-bit technology','LeftNavTitle==Drilling Services','PageDescription==The Revolution rotary-steerable system uses point-the-bit technology for more precise steering, longer bit life and a smoother borehole.','PageTitle==Rotary Steerable Systems \x28RSS\x29','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_4_1=g_navNode_1_0_4.addNode('438','MWD',ssUrlPrefix + 'Products/Drilling/DrillingServices/MWD/ ','Keywords==MWD, measurement while drilling','LeftNavTitle==Drilling Services','PageDescription==Weatherford\u2019s broad portfolio of manned and unmanned MWD systems accommodates today\u2019s expansive range of simple, low-risk to complex, high-risk drilling scenarios.','PageTitle==MWD and Surveying Services','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_4_2=g_navNode_1_0_4.addNode('439','LWD',ssUrlPrefix + 'Products/Drilling/DrillingServices/LWD/ ','Keywords==LWD, Logging while drilling, ','LeftNavTitle==Drilling Services','PageDescription==The Weatherford\xae LWD system delivers the industry\u2019s fastest logging speeds while drilling\u2014up to 400 ft/hr \x28122 m/hr\x29 for nuclear sensors\u2014while providing wireline-quality log data.','PageTitle==LWD','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_4_2_0=g_navNode_1_0_4_2.addNode('1481','ShockWave Sonic Tool',ssUrlPrefix + 'Products/Drilling/DrillingServices/LWD/ShockWaveSonic/index.htm','Keywords==ShockWave sonic tool, robust, monopole acoustic tool ','PageDescription==ShockWave sonic tool is a robust, monopole acoustic tool used in','PageTitle==ShockWave Sonic Tool ');
g_navNode_1_0_4_3=g_navNode_1_0_4.addNode('440','Directional Drilling Motors',ssUrlPrefix + 'Products/Drilling/DrillingServices/DirectionalDrilling/ ','Keywords==drilling motors, directional drilling motors','LeftNavTitle==Drilling Services','PageDescription==Weatherford has been developing mud-lubricated directional drilling motors for over 25 years.','PageTitle==Directional Drilling Motors','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_4_4=g_navNode_1_0_4.addNode('1473','MotarySteerable Directional Control System',ssUrlPrefix + 'Products/Drilling/DrillingServices/MotarySteerableDirectionalControlSystem/index.htm','Keywords==rotary directional control, MotarySteerable system, rotary well trajectory','PageDescription==The MotarySteerable system is an innovation in rotary directional control technology that offers an economic alternative for rotary well trajectory control in a variety of drilling conditions','PageTitle==MotarySteerable\u2122 directional control system');
g_navNode_1_0_4_5=g_navNode_1_0_4.addNode('1474','Adjustable Gauge Stabilizers',ssUrlPrefix + 'Products/Drilling/DrillingServices/AdjustableGaugeStabilizers/index.htm');
g_navNode_1_0_5=g_navNode_1_0.addNode('442','Power Sections',ssUrlPrefix + 'Products/Drilling/PowerSections/ ','LeftNavTitle==Power Sections','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_5_0=g_navNode_1_0_5.addNode('778','Rotors',ssUrlPrefix + 'Products/Drilling/PowerSections/Rotors/ ','LeftNavTitle==Power Sections','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_5_1=g_navNode_1_0_5.addNode('779','Stator Relining',ssUrlPrefix + 'Products/Drilling/PowerSections/StatorRelining/ ','LeftNavTitle==Power Sections','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_5_2=g_navNode_1_0_5.addNode('780','Stators',ssUrlPrefix + 'Products/Drilling/PowerSections/Stators/ ','LeftNavTitle==Power Sections','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_6=g_navNode_1_0.addNode('448','Well Control',ssUrlPrefix + 'Products/Drilling/WellControl/ ','LeftNavTitle==Well Control','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_6_0=g_navNode_1_0_6.addNode('805','Wellcat Critical Well Control',ssUrlPrefix + 'Products/Drilling/WellControl/WellcatCriticalWellControl/ ','LeftNavTitle==Well Control','TopNavTitle==Drilling');
g_navNode_1_0_7=g_navNode_1_0.addNode('449','Tubular Running Services',ssUrlPrefix + 'Products/Drilling/TubularRunningServices/ ','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_7_0=g_navNode_1_0_7.addNode('760','TRS',ssUrlPrefix + 'Products/Drilling/TubularRunningServices/TRS/ ','LeftNavTitle==Tubular Running Services','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_7_0_0=g_navNode_1_0_7_0.addNode('1161','Tubular Connection Database',ssUrlPrefix + 'Products/Drilling/TubularRunningServices/TRS/TubularConnectionDatabase/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_7_1=g_navNode_1_0_7.addNode('761','Bucking Units',ssUrlPrefix + 'Products/Drilling/TubularRunningServices/BuckingUnits/ ','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_7_2=g_navNode_1_0_7.addNode('762','Casing, Running and Drilling',ssUrlPrefix + 'Products/Drilling/TubularRunningServices/CasingRunningandDrilling/ ','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_7_3=g_navNode_1_0_7.addNode('763','Control Systems',ssUrlPrefix + 'Products/Drilling/TubularRunningServices/ControlSystems/ ','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_7_4=g_navNode_1_0_7.addNode('764','Handling Tools',ssUrlPrefix + 'Products/Drilling/TubularRunningServices/HandlingTools/ ','Keywords==handling tools','PageDescription==Weatherford provides a variety of handling tools to increase efficiency while eliminating dangerous rig-floor operations.','PageTitle==Handling Tools','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_7_4_0=g_navNode_1_0_7_4.addNode('1279','SafeGuard Single Joint Elevator',ssUrlPrefix + 'Products/Drilling/TubularRunningServices/HandlingTools/SafeGuardSingleJointElevat/index.htm','Keywords==SafeGuard\u2122 Single Joint Elevator, pipe-alignment system, drillpipe, drillpipe single joints','PageDescription==SafeGuard\u2122 Single Joint Elevator','PageTitle==SafeGuard\u2122 Single Joint Elevator','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_7_4_1=g_navNode_1_0_7_4.addNode('1352','UniSlips',ssUrlPrefix + 'Products/Drilling/TubularRunningServices/HandlingTools/UniSlips/index.htm','Keywords==Unislip, Unislips, slip, slips, handling tool, handling tools, casing, tubing, drillpipe, completion strings, production riser, workover riser, cotntrol lines, umbilicals','PageDescription==Weatherford\u2019s innovative UniSlips\u2122 is a rotary-mounted multi-functional slip that can be used for casing, tubing or drill pipe operations','PageTitle==Unislips','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_7_5=g_navNode_1_0_7.addNode('765','Hydraulic Power Units',ssUrlPrefix + 'Products/Drilling/TubularRunningServices/HydraulicPowerUnits/ ','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_7_6=g_navNode_1_0_7.addNode('766','Positioning Devices',ssUrlPrefix + 'Products/Drilling/TubularRunningServices/PositioningDevices/ ','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_7_7=g_navNode_1_0_7.addNode('767','Power Tongs',ssUrlPrefix + 'Products/Drilling/TubularRunningServices/PowerTongs/ ','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_8=g_navNode_1_0.addNode('441','Drilling with Casing',ssUrlPrefix + 'Products/Drilling/DrillingwCasing/ ','LeftNavTitle==Drilling with Casing','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_8_0=g_navNode_1_0_8.addNode('788','Drilling With Casing Applications',ssUrlPrefix + 'Products/Drilling/DrillingwCasing/DrillingWithCasingApplications/ ','LeftNavTitle==Drilling with Casing','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_8_1=g_navNode_1_0_8.addNode('789','Drilling with Liners Applications',ssUrlPrefix + 'Products/Drilling/DrillingwCasing/DrillingwithLinersApplications/ ','LeftNavTitle==Drilling with Casing','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_8_2=g_navNode_1_0_8.addNode('790','SeaLance Subsea Drilling with Casing Systems',ssUrlPrefix + 'Products/Drilling/DrillingwCasing/SeaLanceSubseaDrillingwithCasingSystems/ ','LeftNavTitle==Drilling with Casing','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_8_3=g_navNode_1_0_8.addNode('791','Products',ssUrlPrefix + 'Products/Drilling/DrillingwCasing/Products/ ','LeftNavTitle==Drilling with Casing','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_9=g_navNode_1_0.addNode('451','Drilling Tools - Rentals',ssUrlPrefix + 'Products/Drilling/DrillingToolsRentals/ ','LeftNavTitle==Drilling Tools - Rentals','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_9_0=g_navNode_1_0_9.addNode('781','Drilling Tools',ssUrlPrefix + 'Products/Drilling/DrillingToolsRentals/DrillingTools/ ','LeftNavTitle==Drilling Tools - Rentals','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_9_1=g_navNode_1_0_9.addNode('782','Torque and Drag Reduction',ssUrlPrefix + 'Products/Drilling/DrillingToolsRentals/TorqueandDragReduction/ ','LeftNavTitle==Drilling Tools - Rentals','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_9_2=g_navNode_1_0_9.addNode('783','Downhole Tools',ssUrlPrefix + 'Products/Drilling/DrillingToolsRentals/DownholeTools/ ','LeftNavTitle==Drilling Tools - Rentals','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_9_2_0=g_navNode_1_0_9_2.addNode('1197','Jars, Accelerators and Shock Tools',ssUrlPrefix + 'Products/Drilling/DrillingToolsRentals/DownholeTools/JarsAcceleratorsandShockTools/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_9_2_1=g_navNode_1_0_9_2.addNode('1198','Drillpipe, Collars and Tubulars',ssUrlPrefix + 'Products/Drilling/DrillingToolsRentals/DownholeTools/DrillpipeCollarsandTubulars/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_9_3=g_navNode_1_0_9.addNode('784','Hole Enlargement',ssUrlPrefix + 'Products/Drilling/DrillingToolsRentals/HoleEnlargement/ ','Keywords==hole enlargement, RipTide, drilling reamer, wellbore','LeftNavTitle==Drilling Tools - Rentals','PageDescription==Our high-performance, concentric RipTide\u2122 drilling reamer provides specific applications for enlarging the wellbore, including expanding pilot holes, managing equivalent circulation density \x28ECD\x29 and optimizing cement jobs.','PageTitle==Hole Enlargement','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_9_4=g_navNode_1_0_9.addNode('785','Extended Reach Drilling',ssUrlPrefix + 'Products/Drilling/DrillingToolsRentals/ExtendedReachDrilling/ ','LeftNavTitle==Drilling Tools - Rentals','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_9_5=g_navNode_1_0_9.addNode('786','Pressure Control Equipment',ssUrlPrefix + 'Products/Drilling/DrillingToolsRentals/PressureControlEquipment/ ','LeftNavTitle==Drilling Tools - Rentals','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_9_6=g_navNode_1_0_9.addNode('787','Surface Equipment',ssUrlPrefix + 'Products/Drilling/DrillingToolsRentals/SurfaceEquipment/ ','LeftNavTitle==Drilling Tools - Rentals','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_10=g_navNode_1_0.addNode('452','Contract Drilling Rigs',ssUrlPrefix + 'Products/Drilling/ContractDrillingRigs/ ','LeftNavTitle==Contract Drilling Rigs','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_10_0=g_navNode_1_0_10.addNode('796','Rig Fleet',ssUrlPrefix + 'Products/Drilling/ContractDrillingRigs/RigFleet/ ','LeftNavTitle==Contract Drilling Rigs','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_10_1=g_navNode_1_0_10.addNode('797','HSE and Training',ssUrlPrefix + 'Products/Drilling/ContractDrillingRigs/HSEandTraining/ ','LeftNavTitle==Contract Drilling Rigs','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11=g_navNode_1_0.addNode('450','Well Servicing',ssUrlPrefix + 'Products/Drilling/WellServicing/ ','LeftNavTitle==Well Servicing','PageTitle==Well Servicing','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_0=g_navNode_1_0_11.addNode('1262','Power Units Manuals',ssUrlPrefix + 'Products/Drilling/WellServicing/PowerUnitsManuals/index.htm','PageTitle==Power Units','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_1=g_navNode_1_0_11.addNode('1263','Rod Elevators and Hooks',ssUrlPrefix + 'Products/Drilling/WellServicing/RodElevatorsandHooks/index.htm','PageTitle==Rod Elevators and Hooks','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_2=g_navNode_1_0_11.addNode('1264','Rod Tongs',ssUrlPrefix + 'Products/Drilling/WellServicing/RodTongs/index.htm','PageTitle==Rod Tongs','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_3=g_navNode_1_0_11.addNode('1265','Spiders Manuals',ssUrlPrefix + 'Products/Drilling/WellServicing/SpidersManuals/index.htm','PageTitle==Spiders','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_4=g_navNode_1_0_11.addNode('1266','Tubing Elevators',ssUrlPrefix + 'Products/Drilling/WellServicing/TubingElevators/index.htm','PageTitle==Tubing Elevators','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_5=g_navNode_1_0_11.addNode('1267','Tubing Tongs',ssUrlPrefix + 'Products/Drilling/WellServicing/TubingTongs/index.htm','PageTitle==Tubing Tongs','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_6=g_navNode_1_0_11.addNode('1268','Elevators',ssUrlPrefix + 'Products/Drilling/WellServicing/Elevators/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_6_0=g_navNode_1_0_11_6.addNode('1280','Center Latch Tubing Elevator',ssUrlPrefix + 'Products/Drilling/WellServicing/Elevators/CenterLatchTubingElevator/index.htm','PageTitle==Center Latch Tubing Elevator','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_6_1=g_navNode_1_0_11_6.addNode('1281','Heavy Duty Rod Elevator',ssUrlPrefix + 'Products/Drilling/WellServicing/Elevators/HeavyDutyRodElevator/index.htm','PageTitle==Heavy Duty Rod Elevator','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_6_2=g_navNode_1_0_11_6.addNode('1282','Load-Locking 100-Ton Tubing Elevator',ssUrlPrefix + 'Products/Drilling/WellServicing/Elevators/Load-Locking100-TonTubingElevator/index.htm','PageTitle==Load-Locking 100-Ton Tubing Elevator','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_6_3=g_navNode_1_0_11_6.addNode('1283','ExTG Electronic Explosion-Proof Torque Gauge System',ssUrlPrefix + 'Products/Drilling/WellServicing/Elevators/ExTGElectronicExplosion-ProofTorqueGaugeSystem/index.htm','PageTitle==ExTG Electronic Explosion-Proof Torque Gauge System','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_7=g_navNode_1_0_11.addNode('1269','Miscellaneous',ssUrlPrefix + 'Products/Drilling/WellServicing/Miscellaneous/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_7_0=g_navNode_1_0_11_7.addNode('1284','Depthometers',ssUrlPrefix + 'Products/Drilling/WellServicing/Miscellaneous/Depthometers/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_7_1=g_navNode_1_0_11_7.addNode('1285','Heavy Duty Rod Hooks',ssUrlPrefix + 'Products/Drilling/WellServicing/Miscellaneous/HeavyDutyRodHooks/index.htm','PageTitle==Heavy Duty Rod Hooks','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_7_2=g_navNode_1_0_11_7.addNode('1286','Rod Handling Accessories',ssUrlPrefix + 'Products/Drilling/WellServicing/Miscellaneous/RodHandlingAccessories/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_7_3=g_navNode_1_0_11_7.addNode('1287','Sucker Rod Wrench',ssUrlPrefix + 'Products/Drilling/WellServicing/Miscellaneous/SuckerRodWrench/index.htm','PageTitle==Sucker Rod Wrench','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_7_4=g_navNode_1_0_11_7.addNode('1288','Blocks and Hooks',ssUrlPrefix + 'Products/Drilling/WellServicing/Miscellaneous/BlocksandHooks/index.htm','PageTitle==Blocks and Hooks','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_8=g_navNode_1_0_11.addNode('1270','Links',ssUrlPrefix + 'Products/Drilling/WellServicing/Links/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_8_0=g_navNode_1_0_11_8.addNode('1289','Big Eye Links',ssUrlPrefix + 'Products/Drilling/WellServicing/Links/BigEyeLinks/index.htm','PageTitle==Big Eye Links','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_8_1=g_navNode_1_0_11_8.addNode('1290','Weldless Elevator Links',ssUrlPrefix + 'Products/Drilling/WellServicing/Links/WeldlessElevatorLinks/index.htm','PageTitle==Weldless Elevator Links','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_9=g_navNode_1_0_11.addNode('1271','Power Units',ssUrlPrefix + 'Products/Drilling/WellServicing/PowerUnits/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_10=g_navNode_1_0_11.addNode('1272','Spiders',ssUrlPrefix + 'Products/Drilling/WellServicing/Spiders/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_10_0=g_navNode_1_0_11_10.addNode('1291','Inverted Snubbing Spiders',ssUrlPrefix + 'Products/Drilling/WellServicing/Spiders/InvertedSnubbingSpiders/index.htm','PageTitle==Inverted Snubbing Spiders','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_10_1=g_navNode_1_0_11_10.addNode('1292','Tubing Spiders',ssUrlPrefix + 'Products/Drilling/WellServicing/Spiders/TubingSpiders/index.htm','PageTitle==Tubing Spiders','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_11=g_navNode_1_0_11.addNode('1273','Tongs',ssUrlPrefix + 'Products/Drilling/WellServicing/Tongs/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_11_0=g_navNode_1_0_11_11.addNode('1293','Closed Head Tubing Tongs',ssUrlPrefix + 'Products/Drilling/WellServicing/Tongs/ClosedHeadTubingTongs/index.htm','PageTitle==Closed Head Tubing Tongs','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_11_1=g_navNode_1_0_11_11.addNode('1294','Open-Face Tubing Tongs',ssUrlPrefix + 'Products/Drilling/WellServicing/Tongs/Open-FaceTubingTongs/index.htm','PageTitle==Open-Face Tubing Tongs','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_11_2=g_navNode_1_0_11_11.addNode('1295','Open Head Tubing Tongs',ssUrlPrefix + 'Products/Drilling/WellServicing/Tongs/OpenHeadTubingTongs/index.htm','PageTitle==Open Head Tubing Tongs','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_11_3=g_navNode_1_0_11_11.addNode('1296','Power Sucker Rod Tong',ssUrlPrefix + 'Products/Drilling/WellServicing/Tongs/PowerSuckerRodTong/index.htm','PageTitle==Power Sucker Rod Tong','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_11_11_4=g_navNode_1_0_11_11.addNode('1297','Three-Jaw \x26 MS Back-Up Tongs',ssUrlPrefix + 'Products/Drilling/WellServicing/Tongs/Three-JawMSBack-UpTongs/index.htm','PageTitle==Three-Jaw \x26 MS Back-Up Tongs','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_12=g_navNode_1_0.addNode('1333','Swellable Well Construction Systems',ssUrlPrefix + 'Products/Drilling/SwellableWellConstructionSystems/index.htm','PageTitle==Swellable Well Construction Systems','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_12_0=g_navNode_1_0_12.addNode('1334','Applications',ssUrlPrefix + 'Products/Drilling/SwellableWellConstructionSystems/Applications/index.htm','PageTitle==Swellable Well Construction Applications','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_13=g_navNode_1_0.addNode('1408','Drilling Hazard Mitigation',ssUrlPrefix + 'Products/Drilling/DrillingHazardMitigation/index.htm','Keywords==drilling hazard mitigation, dhm, wellbore instability, lost-circulation zones, overpressured formations, shallow flows','PageTitle==Drilling Hazard Mitigation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_14=g_navNode_1_0.addNode('567','Drilling Fluids and Drilling Waste Management',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/ ','Keywords==Drilling Fluids and Drilling Waste Management','PageTitle==Drilling Fluids and Drilling Waste Management','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_0_14_0=g_navNode_1_0_14.addNode('826','Aqueous Fluids Systems',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/AirFoamSurfactants/ ','PageTitle==Air Foam Surfactants','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_0_14_1=g_navNode_1_0_14.addNode('827','Corrosion Inhibitors',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/CorrosionInhibitors/ ','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_0_14_2=g_navNode_1_0_14.addNode('828','Non-Aqueous Fluids Systems',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/Emulsifiers/ ','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_0_14_3=g_navNode_1_0_14.addNode('829','Weighting Agents',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/WettingAgents/ ','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_0_14_4=g_navNode_1_0_14.addNode('830','Commercial Chemicals',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/DrillingMudDetergents/ ','Keywords==Commercial Chemicals','PageDescription==Commercial Chemicals','PageTitle==Commercial Chemicals','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_0_14_5=g_navNode_1_0_14.addNode('831','Workover and Completion Fluids',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/WorkoverandCompletionFluids/ ','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_0_14_6=g_navNode_1_0_14.addNode('832','Wellbore Clean Up Additives',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/WellboreCleanUpAdditives/ ','Keywords==Wellbore Clean Up Additives','PageDescription==Wellbore Clean Up Additives','PageTitle==Wellbore Clean Up Additives','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_0_14_7=g_navNode_1_0_14.addNode('1493','Drill-inFluidSystems',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/Drill-inFluidSystems/index.htm','Keywords==Drill-in Fluid Systems','PageDescription==Drill-in Fluid Systems','PageTitle==Drill-in Fluid Systems');
g_navNode_1_0_14_8=g_navNode_1_0_14.addNode('1502','Air and Foam Systems',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/AirandFoamSystems/index.htm','Keywords==Air and Foam Systems','PageDescription==Air and Foam Systems','PageTitle==Air and Foam Systems');
g_navNode_1_0_14_9=g_navNode_1_0_14.addNode('1503','Completion Fluid Systems',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/CompletionFluidSystems/index.htm','PageDescription==Completion Fluid Systems','PageTitle==Completion Fluid Systems');
g_navNode_1_0_14_10=g_navNode_1_0_14.addNode('1504','Specialty Products',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/SpecialtyProducts/index.htm','PageDescription==Drilling Fluids and Drilling Waste Management Specialty Products','PageTitle==Specialty Products');
g_navNode_1_0_14_11=g_navNode_1_0_14.addNode('1505','Dispersants and Deflocculants',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/DispersantsandDeflocculants/index.htm','Keywords==Dispersants and Deflocculants','PageDescription==Dispersants and Deflocculants','PageTitle==Dispersants and Deflocculants');
g_navNode_1_0_14_12=g_navNode_1_0_14.addNode('1506','Filtration Control Agents',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/FiltrationControlAgents/index.htm','Keywords==Filtration Control Agents','PageDescription==Filtration Control Agents','PageTitle==Filtration Control Agents');
g_navNode_1_0_14_13=g_navNode_1_0_14.addNode('1507','High Performance Water Based Mud',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/HighPerformanceWaterBasedMud/index.htm');
g_navNode_1_0_14_14=g_navNode_1_0_14.addNode('1508','Lost Circulation Materials',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/LostCirculationMaterials/index.htm','Keywords==Lost Circulation Materials','PageDescription==Lost Circulation Materials','PageTitle==Lost Circulation Materials');
g_navNode_1_0_14_15=g_navNode_1_0_14.addNode('1509','Lubricants and Surfactants',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/LubricantsandSurfactants/index.htm','Keywords==Lubricants and Surfactants','PageDescription==Lubricants and Surfactants','PageTitle==Lubricants and Surfactants');
g_navNode_1_0_14_16=g_navNode_1_0_14.addNode('1510','Oil and Synthetic Based Additives',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/OilandSyntheticBasedAdditives/index.htm','Keywords==Oil and Synthetic Based Additives','PageDescription==Oil and Synthetic Based Additives','PageTitle==Oil and Synthetic Based Additives');
g_navNode_1_0_14_17=g_navNode_1_0_14.addNode('1511','Shale Control Additives',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/ShaleControlAdditives/index.htm','Keywords==Shale Control Additives','PageDescription==Shale Control Additives','PageTitle==Shale Control Additives');
g_navNode_1_0_14_18=g_navNode_1_0_14.addNode('1512','Viscosifiers',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/Viscosifiers/index.htm','Keywords==Viscosifiers','PageDescription==Viscosifiers','PageTitle==Viscosifiers');
g_navNode_1_0_14_19=g_navNode_1_0_14.addNode('1513','Preservatives',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/Preservatives/index.htm','Keywords==Preservatives','PageDescription==Preservatives','PageTitle==Preservatives');
g_navNode_1_0_14_20=g_navNode_1_0_14.addNode('1514','Drill-In Reservoir Additives',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/Drill-InReservoir/index.htm');
g_navNode_1_0_14_21=g_navNode_1_0_14.addNode('1515','Stuck Pipe Additives',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/StuckPipeAdditives/index.htm','Keywords==Stuck Pipe Additives','PageDescription==Stuck Pipe Additives','PageTitle==Stuck Pipe Additives');
g_navNode_1_0_14_22=g_navNode_1_0_14.addNode('1516','Engineering Services',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/EngineeringServices/index.htm','Keywords==Engineering Services','PageDescription==Engineering Services','PageTitle==Engineering Services');
g_navNode_1_0_14_23=g_navNode_1_0_14.addNode('1517','Solids Control',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/SolidsControl/index.htm','Keywords==Solids Control, solids control equipment, shakers, screens, centrifuges, agitators, de-gasser, mud mixing systems','PageDescription==Weatherford offers a full range of solids control equipment and services.','PageTitle==Solids Control');
g_navNode_1_0_14_24=g_navNode_1_0_14.addNode('1518','Containment and Handling',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/ContainmentandHandling/index.htm');
g_navNode_1_0_14_25=g_navNode_1_0_14.addNode('1519','Recycling and Recovery',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/RecyclingandRecovery/index.htm','Keywords==Recycling and Recovery','PageDescription==Recycling and Recovery','PageTitle==Recycling and Recovery');
g_navNode_1_0_14_26=g_navNode_1_0_14.addNode('1521','Treatment and Disposal',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/TreatmentandDisposal/index.htm');
g_navNode_1_0_14_27=g_navNode_1_0_14.addNode('1522','Engineered Fluids Management Services',ssUrlPrefix + 'Products/Drilling/DrillingFluidsandDrillingWasteManagement/EngineeredFluidsManagementServices/index.htm','Keywords==Engineered Fluids ManagementSM Services','PageDescription==Engineered Fluids Management Services','PageTitle==Engineered Fluids Management Services');
g_navNode_1_0_15=g_navNode_1_0.addNode('1066','Rig Equipment Sales',ssUrlPrefix + 'Products/Drilling/RigEquipmentSales/ ','Keywords==rig equipment, rig systems, mechanized rig systems, rig sales','LeftNavTitle==Mechanized Rig Systems','PageDescription==Our aftermarket service and support is provided through the industry\u2019s most extensive distribution network, coupled with a highly optimized supply chain operations.','PageTitle==Rig Equipment Sales','TopNavTitle==Drilling','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_1_0_15_0=g_navNode_1_0_15.addNode('1590','Rig Equipment Sales-Control Systems',ssUrlPrefix + 'Products/Drilling/RigEquipmentSales/ControlSystems/index.htm','PageTitle==Rig Equipment Sales Control Systems');
g_navNode_1_0_15_1=g_navNode_1_0_15.addNode('1591','Rig Equipment Sales-Mechanized Rig Equipment',ssUrlPrefix + 'Products/Drilling/RigEquipmentSales/MechanizedRigEquipment/index.htm','PageDescription==Rig Equipment Sales-Mechanized Rig Equipment','PageTitle==Rig Equipment Sales-Mechanized Rig Equipment');
g_navNode_1_0_15_2=g_navNode_1_0_15.addNode('1592','Rig Equipment Sales-Mud Pumps',ssUrlPrefix + 'Products/Drilling/RigEquipmentSales/MudPumps/index.htm','PageDescription==Rig Equipment Mud Pumps','PageTitle==Rig Equipment Sales-Mud Pumps');
g_navNode_1_0_15_3=g_navNode_1_0_15.addNode('1594','Rig Equipment Sales-Pressure Control Equipment',ssUrlPrefix + 'Products/Drilling/RigEquipmentSales/PressureControlEquipment/index.htm','PageDescription==Rig Equipment Sales-Pressure Control Equipment','PageTitle==Rig Equipment Sales-Pressure Control Equipment  ');
g_navNode_1_0_15_4=g_navNode_1_0_15.addNode('1595','Rig Equipment Sales-Tubular Running Equipment',ssUrlPrefix + 'Products/Drilling/RigEquipmentSales/TubularRunningEquipment/index.htm','PageDescription==Rig Equipment Sales-Tubular Running Equipment ','PageTitle==Rig Equipment Sales-Tubular Running Equipment');
g_navNode_1_0_15_5=g_navNode_1_0_15.addNode('1596','Rig Equipment Sales-Drilling Fluids and Drilling Waste Management',ssUrlPrefix + 'Products/Drilling/RigEquipmentSales/DrillingFluidsandDrillingWasteManagement/index.htm','Keywords==drilling waste management equipment, centrifuges, filtration systems, mud-mixing systems, shale shakers','PageDescription==Rig Equipment Sales-Drilling Fluids and Drilling Waste Management ','PageTitle==Rig Equipment Sales-Drilling Fluids and Drilling Waste Management ');
g_navNode_1_0_16=g_navNode_1_0.addNode('1675','Total Depth',ssUrlPrefix + 'Products/Drilling/TotalDepth/index.htm','PageDescription==Weatherford\u2019s Total Depth\u2122 services change the way you reach planned depth ','PageTitle==Total Depth Services');
g_navNode_1_0_16_0=g_navNode_1_0_16.addNode('1677','Extended-Reach Drilling',ssUrlPrefix + 'Products/Drilling/TotalDepth/Extended-ReachDrilling/index.htm','PageDescription==High-integrity Casing Strings in Extended-Reach Wells','PageTitle==Extended-Reach Drilling');
g_navNode_1_0_16_1=g_navNode_1_0_16.addNode('1678','HP/HT',ssUrlPrefix + 'Products/Drilling/TotalDepth/HPHT/index.htm','PageDescription==High-integrity Casing Strings in HP/HT wells','PageTitle==High-integrity Casing Strings in HP/HT wells');
g_navNode_1_0_16_2=g_navNode_1_0_16.addNode('1680','Deepwater',ssUrlPrefix + 'Products/Drilling/TotalDepth/Deepwater/index.htm','PageDescription==High-integrity Casing Strings in Deepwater','PageTitle==High-integrity Casing Strings in Deepwater');
g_navNode_1_0_16_3=g_navNode_1_0_16.addNode('1682','Shale',ssUrlPrefix + 'Products/Drilling/TotalDepth/Shale/index.htm','PageDescription==High-integrity Casing Strings in Shale','PageTitle==High-integrity Casing Strings in Shale');
g_navNode_1_1=g_navNode_1.addNode('460','Evaluation',ssUrlPrefix + 'Products/Evaluation/ ','PageDescription==Our extensive portfolio of conveyance systems, coupled with industry-qualified measurements, are being applied to open-hole and cased-hole wireline, slickline, LWD, well testing and geoscience services.','PageTitle==Evaluation','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_0=g_navNode_1_1.addNode('485','Data Services',ssUrlPrefix + 'Products/Evaluation/DataServices/ ','LeftNavTitle==Data Services','PageTitle==Data services','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_0_0=g_navNode_1_1_0.addNode('1212','PreView',ssUrlPrefix + 'Products/Evaluation/DataServices/PreView/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1=g_navNode_1_1.addNode('713','Surface Logging Systems',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/ ','Keywords==Surface Logging Systems, mud logging, SLS','PageDescription==Weatherford is one of the largest and fastest-growing providers of surface logging \x28mud logging\x29 services in the world.','PageTitle==Surface Logging Systems','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_0=g_navNode_1_1_1.addNode('974','Formation Gas Analysis',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/FormationGasAnalysis/ ','Keywords==GC-TRACER\u2122 surface gas detector , GC-TRACER\u2122, Gas Chromatograph Tool for Real-Time Analysis, Characterization and Evaluation of Reservoirs, surface-logging technology ','PageDescription==GC-TRACER\u2122 \x28Gas Chromatograph Tool for Real-Time Analysis, Characterization and Evaluation of Reservoirs\x29 surface gas detector lends increased relevance to the role of formation gas analysis in reservoir characterization signifying a major innovation in surface-logging technology.','PageTitle==Formatin Gas Analysis','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_1=g_navNode_1_1_1.addNode('975','Formation Cuttings Analysis',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/FormationCuttingsAnalysis/ ','Keywords==Formation Cuttings Analysis','PageDescription==The analysis of formation cuttings carried to the surface in drilling mud is a fundamental component of surface logging','PageTitle==Formation Cuttings Analysis','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_2=g_navNode_1_1_1.addNode('976','Geoscience Consulting Services',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/Geoscienceconsultingservices/ ','Keywords==geoscience-based consulting services','PageDescription==We offer a broad range of geoscience-based consulting services at the wellsite and from remote locations.','PageTitle==Geoscience Consulting Services','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_3=g_navNode_1_1_1.addNode('977','Geopressure Consulting Services',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/Geopressureconsultingservices/ ','Keywords==Geopressure Consulting Services','PageDescription==Geopressure Consulting Services','PageTitle==Geopressure Consulting Services','TopNavTitle==Evaluation');
g_navNode_1_1_1_4=g_navNode_1_1_1.addNode('978','Electronic Drilling Recorders',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/Electronicdrillingrecorders/ ','Keywords==Electronic Drilling Recorders , edr','PageDescription==Electronic Drilling Recorders ','PageTitle==Electronic Drilling Recorders ','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_5=g_navNode_1_1_1.addNode('979','Hole-Stability Monitoring',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/Hole-stabilitymonitoring/ ','Keywords==Hole-Stability Monitoring','PageDescription==Hole-Stability Monitoring','PageTitle==Hole-Stability Monitoring','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_6=g_navNode_1_1_1.addNode('980','H2S Detection',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/H2Sdetection/ ','Keywords==H2S Detection','PageDescription==H2S Detection','PageTitle==H2S Detection','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_7=g_navNode_1_1_1.addNode('981','Kick Detection',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/Kickdetection/ ','Keywords==Kick Detection','PageDescription==Kick Detection','PageTitle==Kick Detection','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_8=g_navNode_1_1_1.addNode('982','Underbalanced Drilling',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/Underbalanceddrilling/ ','Keywords==Underbalanced Drilling ','PageTitle==Underbalanced Drilling ','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_9=g_navNode_1_1_1.addNode('983','Vibration Detection',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/Vibrationdetection/ ','Keywords==Vibration Detection','PageDescription==Leveraging our proprietary vibration-detection software suite, we help you detect and remedy vibration before it becomes a problem.','PageTitle==Vibration Detection','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_10=g_navNode_1_1_1.addNode('984','Real-Time Operations',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/Real-timeoperations/ ','Keywords==Real-Time Operations','PageDescription==Weatherford\u2019s network of wellsite and remote data hubs enables consolidation and communication of data streams from multiple sources, including LWD/MWD, surface logging and wireline logging','PageTitle==Real-Time Operations','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_11=g_navNode_1_1_1.addNode('985','Integrated Data Systems',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/IntegratedDataSystems/ ','Keywords==Integrated Data Systems','PageDescription==Weatherford\u2019s TourTracker personnel tracking software enables users to consolidate drilling personnel data into one secure, user-friendly system','PageTitle==Integrated Data Systems','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_12=g_navNode_1_1_1.addNode('1164','Innovation',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/Innovation/ ','Keywords==innovative surface logging technologies','PageDescription==Our innovative surface logging technologies and systems are designed to provide you with better data, which translate to better decisions','PageTitle==Innovation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_13=g_navNode_1_1_1.addNode('1165','Expertise',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/Expertise/ ','Keywords==surface logging experts, mud logging experts','PageDescription==you have access to a global team of highly qualified surface logging experts','PageTitle==Expertise','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_1_14=g_navNode_1_1_1.addNode('1404','Wellsite Geochemical Analysis',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/WellsiteGeochemicalAnalysis/index.htm','Keywords==Wellsite Geochemical Analysis','PageDescription==Weatherford\u2019s wellsite geochemical analysis services incorporate advanced applications to analyze both the organic \x28hydrocarbon\x29 and inorganic \x28nonhydrocarbon\x29 components of formation samples','PageTitle==Wellsite Geochemical Analysis');
g_navNode_1_1_1_14_0=g_navNode_1_1_1_14.addNode('1405','Organic analysis',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/WellsiteGeochemicalAnalysis/Organicanalysis/index.htm','Keywords==source rock analysis, organic analysis, surface gas detection','PageDescription==Our advanced GC-TRACER\xae surface gas detector extracts formation gas samples from drilling fluid','PageTitle==Organic analysis');
g_navNode_1_1_1_14_1=g_navNode_1_1_1_14.addNode('1406','Inorganic analysis',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/WellsiteGeochemicalAnalysis/Inorganicanalysis/index.htm','Keywords==Inorganic analysis, Quantitative mineralogical and elemental analysis, ','PageDescription==Quantitative mineralogical and elemental analysis','PageTitle==Inorganic analysis');
g_navNode_1_1_1_14_2=g_navNode_1_1_1_14.addNode('1407','Integrated data sheets',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/WellsiteGeochemicalAnalysis/Integrateddatasheets/index.htm','Keywords==integrate wellsite geochemical analysis, integrated data set, integrated data sheets','PageDescription==We integrate wellsite geochemical analysis with our complementary wireline and logging-while-drilling formation evaluation capabilities to provide an integrated data set','PageTitle==Integrated data sheets');
g_navNode_1_1_1_15=g_navNode_1_1_1.addNode('1647','Gas Wizard',ssUrlPrefix + 'Products/Evaluation/SurfaceLoggingSystems/GasWizard/index.htm','Keywords==gas wizard, formation gas','PageDescription==the GasWizard system enables you to extract and characterize formation gas from the surface in real time, regardless of mud type, flow rate or gas solubility','PageTitle==Gas Wizard');
g_navNode_1_1_2=g_navNode_1_1.addNode('712','EarthView',ssUrlPrefix + 'Products/Evaluation/EarthView/ ','LeftNavTitle==EarthView','PageTitle==EarthView','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_3=g_navNode_1_1.addNode('711','Conveyance',ssUrlPrefix + 'Products/Evaluation/Conveyance/ ','LeftNavTitle==Conveyance','PageTitle==Conveyance','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_3_0=g_navNode_1_1_3.addNode('973','Extended-Reach Logging and Intervention System',ssUrlPrefix + 'Products/Evaluation/Conveyance/Extended-ReachLoggingandInterventionSystem/ ','LeftNavTitle==Conveyance','PageTitle==Extended-Reach Logging and Intervention System','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_4=g_navNode_1_1.addNode('469','Cased-Hole Services',ssUrlPrefix + 'Products/Evaluation/CasedHoleServices/ ','LeftNavTitle==Cased-Hole Services','PageTitle==Cased-Hole Services','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_4_0=g_navNode_1_1_4.addNode('470','Reservoir Evaluation',ssUrlPrefix + 'Products/Evaluation/CasedHoleServices/ReservoirEvaluation/ ','LeftNavTitle==Cased-Hole Services','PageTitle==Reservoir Evaluation','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_4_1=g_navNode_1_1_4.addNode('471','Production Logging',ssUrlPrefix + 'Products/Evaluation/CasedHoleServices/ProductionLogging/ ','LeftNavTitle==Cased-Hole Services','PageTitle==Production Logging','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_4_2=g_navNode_1_1_4.addNode('472','Cement Evaluation',ssUrlPrefix + 'Products/Evaluation/CasedHoleServices/CementEvaluation/ ','LeftNavTitle==Cased-Hole Services','PageTitle==Cement Evaluation','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_4_3=g_navNode_1_1_4.addNode('473','Casing Inspection',ssUrlPrefix + 'Products/Evaluation/CasedHoleServices/CasingInspection/ ','LeftNavTitle==Cased-Hole Services','PageTitle==Casing Inspection','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_4_4=g_navNode_1_1_4.addNode('474','Perforating',ssUrlPrefix + 'Products/Evaluation/CasedHoleServices/Perforating/ ','LeftNavTitle==Cased-Hole Services','PageTitle==Perforating','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_4_5=g_navNode_1_1_4.addNode('476','Tubing-Conveyed Perforating',ssUrlPrefix + 'Products/Evaluation/CasedHoleServices/TubingConveyedPerforating/ ','LeftNavTitle==Cased-Hole Services','PageTitle==Tubing-Conveyed Perforating','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_4_6=g_navNode_1_1_4.addNode('477','Propellant Stimulation',ssUrlPrefix + 'Products/Evaluation/CasedHoleServices/PropellantStimulation/ ','LeftNavTitle==Cased-Hole Services','PageTitle==Propellant Stimulation','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_4_7=g_navNode_1_1_4.addNode('1246','Pipe Recovery',ssUrlPrefix + 'Products/Evaluation/CasedHoleServices/PipeRecovery/index.htm','Keywords==pipe recovery','PageTitle==Pipe Recovery','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_5=g_navNode_1_1.addNode('461','Open-Hole Services',ssUrlPrefix + 'Products/Evaluation/OpenHoleServices/ ','Keywords==Wireline, Openhole logging, acoustic, dipole, sonic, Compact, CXD, cross-dipole, fast-shear azimuth, assured, conveyance, porosity, drillpipe, triple-combo, anisotropy, analysis, horizontal, logging','LeftNavTitle==Open-Hole Services','PageTitle==Open-Hole Services','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_5_0=g_navNode_1_1_5.addNode('462','Resistivity',ssUrlPrefix + 'Products/Evaluation/OpenHoleServices/Resistivity/ ','LeftNavTitle==Open-Hole Services','PageTitle==Resistivity','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_5_1=g_navNode_1_1_5.addNode('463','Porosity/Lithology',ssUrlPrefix + 'Products/Evaluation/OpenHoleServices/PorosityLithology/ ','LeftNavTitle==Open-Hole Services','PageTitle==Porosity/Lithology ','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_5_2=g_navNode_1_1_5.addNode('464','Acoustic',ssUrlPrefix + 'Products/Evaluation/OpenHoleServices/Acoustic/ ','Keywords==Wireline, Openhole logging, acoustic, dipole, sonic, Compact, CXD, cross-dipole, fast-shear azimuth, assured, conveyance, porosity, drillpipe, triple-combo, anisotropy, analysis, horizontal, logging','LeftNavTitle==Open-Hole Services','PageTitle==Acoustic Open-Hole Services','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_5_2_0=g_navNode_1_1_5_2.addNode('1339','Compact Cross-dipole Sonic \x28CXD\x29 Tool',ssUrlPrefix + 'Products/Evaluation/OpenHoleServices/Acoustic/CompactCross-dipoleSonicCXDTool/index.htm','Keywords==Compact Cross-dipole Sonic \x28CXD\x29 Tool, Wireline, Openhole logging, acoustic, dipole, sonic, Compact, CXD, cross-dipole, fast-shear azimuth, assured, conveyance, porosity, drillpipe, triple-combo, anisotropy, analysis, horizontal, logging','PageTitle==Compact\u2122 cross-dipole sonic \x28CXD\x29 tool','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_5_3=g_navNode_1_1_5.addNode('465','Formation Testing',ssUrlPrefix + 'Products/Evaluation/OpenHoleServices/FormationTesting/ ','LeftNavTitle==Open-Hole Services','PageTitle==Formation Testing ','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_5_4=g_navNode_1_1_5.addNode('466','Imaging',ssUrlPrefix + 'Products/Evaluation/OpenHoleServices/Imaging/ ','LeftNavTitle==Open-Hole Services','PageDescription==High-resolution micro imager \x28HMI\xae\x29 service is a fast and efficient way to capture virtually all reservoir features in a single run','PageTitle==Imaging ','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_5_5=g_navNode_1_1_5.addNode('467','Memory Logging',ssUrlPrefix + 'Products/Evaluation/OpenHoleServices/MemoryLogging/ ','LeftNavTitle==Open-Hole Services','PageTitle==Memory Logging','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_5_6=g_navNode_1_1_5.addNode('1390','Queen\'s Award',ssUrlPrefix + 'Products/Evaluation/OpenHoleServices/QueensAward/QueensAward','Keywords==Queen\\x27s Award, Wireline Queen\\x27s Award, Compact\u2122 logging tools and services','PageDescription==Weatherford Wirleline services named 2010 Queen\u2019s Award recipient for innovation. From 2004 to 2008, Weatherford has designed and manufactured three highly innovative and commercially successful technologies under the Compact\u2122 family of logging tools and services','PageTitle==Queen\\x27s Award','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_6=g_navNode_1_1.addNode('478','Testing and Production Services',ssUrlPrefix + 'Products/Evaluation/TestingServices/ ','LeftNavTitle==Well Testing ','PageTitle==Testing and Production Services','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_6_0=g_navNode_1_1_6.addNode('1217','Exploration and Appraisal Well Testing ',ssUrlPrefix + 'Products/Evaluation/TestingServices/ExplorationandAppraisalWellTesting/ ','PageTitle==Exploration and Appraisal Well Testing','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_6_1=g_navNode_1_1_6.addNode('1218','Production and Development Wells',ssUrlPrefix + 'Products/Evaluation/TestingServices/ProductionandDevelopmentWells/index.htm','PageTitle==Production and Development Wells','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_6_2=g_navNode_1_1_6.addNode('1219','Early Production Facilities and Water Treatment',ssUrlPrefix + 'Products/Evaluation/TestingServices/EarlyProductionFacilitiesandWaterTreatment/index.htm','PageTitle==Early Production Facilities and Water Treatment','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_6_3=g_navNode_1_1_6.addNode('1376','Reference Library',ssUrlPrefix + 'Products/Evaluation/TestingServices/ReferenceLibrary/index.htm','PageDescription==Announcing the upcoming release of the Pressure Transient Analysis reference series By Dr. George Stewart','PageTitle==Pressure Transient Analysis Reference Library','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_7=g_navNode_1_1.addNode('481','Geoscience Services',ssUrlPrefix + 'Products/Evaluation/GeoscienceServices/ ','LeftNavTitle==Geoscience Services','PageTitle==Geoscience Services','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_7_0=g_navNode_1_1_7.addNode('483','Log Analysis \x26 Interpretation',ssUrlPrefix + 'Products/Evaluation/GeoscienceServices/LogAnalysisInterpretation/ ','LeftNavTitle==Geoscience Services','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_7_1=g_navNode_1_1_7.addNode('484','Interpretation Development',ssUrlPrefix + 'Products/Evaluation/GeoscienceServices/InterpretationDevelopment/ ','LeftNavTitle==Geoscience Services','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_7_2=g_navNode_1_1_7.addNode('482','Data Distribution',ssUrlPrefix + 'Products/Evaluation/GeoscienceServices/DataDistribution/ ','LeftNavTitle==Geoscience Services','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_8=g_navNode_1_1.addNode('479','Slimline',ssUrlPrefix + 'Products/Evaluation/Slimline/ ','LeftNavTitle==Slimline','PageTitle==Slimline','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_9=g_navNode_1_1.addNode('1093','Integrated Laboratory Services',ssUrlPrefix + 'Products/Evaluation/IntegratedLaboratoryServices/index.htm','PageTitle==Integrated Laboratory Services','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_10=g_navNode_1_1.addNode('1362','Production and Produced Water Systems',ssUrlPrefix + 'Products/Evaluation/ProductionandProducedWater/index.htm','Keywords==Early Production Facilities, FPSO Topsides, Engineering Resources, Permanent Production Facilities, Extended Well Testing, Project Management, Field Development Studies, Supply Chain Management','PageDescription==Weatherford provides complete production solutions for field development and / or production optimization projects','PageTitle==Production \x26 Produced Water Systems','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_10_0=g_navNode_1_1_10.addNode('1363','Early Production Facilities',ssUrlPrefix + 'Products/Evaluation/ProductionandProducedWater/EarlyProductionFacilities/index.htm','PageTitle==Early Production Facilities','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_10_1=g_navNode_1_1_10.addNode('1364','Engineering Resources',ssUrlPrefix + 'Products/Evaluation/ProductionandProducedWater/EngineeringResources/index.htm','PageTitle==Engineering Resources','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_10_2=g_navNode_1_1_10.addNode('1365','Extended Well Testing',ssUrlPrefix + 'Products/Evaluation/ProductionandProducedWater/ExtendedWellTesting/index.htm','PageTitle==Extended Well Testing','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_10_3=g_navNode_1_1_10.addNode('1366','Field Development Studies',ssUrlPrefix + 'Products/Evaluation/ProductionandProducedWater/FieldDevelopmentStudies/index.htm','PageTitle==Field Development Studies','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_10_4=g_navNode_1_1_10.addNode('1367','FPSO Topsides',ssUrlPrefix + 'Products/Evaluation/ProductionandProducedWater/FPSOTopsides/index.htm','PageTitle==FPSO Topsides','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_10_5=g_navNode_1_1_10.addNode('1368','Permanent Production Facilities',ssUrlPrefix + 'Products/Evaluation/ProductionandProducedWater/PermanentProductionFacilities/index.htm','PageTitle==Permanent Production Facilities','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_10_6=g_navNode_1_1_10.addNode('1369','Project Management',ssUrlPrefix + 'Products/Evaluation/ProductionandProducedWater/ProjectManagement/index.htm','PageTitle==Project Management','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_10_7=g_navNode_1_1_10.addNode('1370','Supply Chain Management',ssUrlPrefix + 'Products/Evaluation/ProductionandProducedWater/SupplyChainManagement/index.htm','PageTitle==Supply Chain Management','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_10_8=g_navNode_1_1_10.addNode('1401','Produced Water Systems',ssUrlPrefix + 'Products/Evaluation/ProductionandProducedWater/ProducedWaterSystems/index.htm','PageTitle==Produced Water Systems','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_11=g_navNode_1_1.addNode('480','Borehole Seismic Services',ssUrlPrefix + 'Products/Evaluation/BoreholeSeismicServices/ ','Keywords==Borehole Seismic Services','PageDescription==Borehole Seismic Services','PageTitle==Borehole Seismic Services','TopNavTitle==Evaluation','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Evaluation\x60');
g_navNode_1_1_11_0=g_navNode_1_1_11.addNode('1588','Vertical Seismic Profile Surveys',ssUrlPrefix + 'Products/Evaluation/BoreholeSeismicServices/VerticalSeismicProfile/index.htm','Keywords==Vertical Seismic Profile ','PageDescription==Vertical Seismic Profile ','PageTitle==Vertical Seismic Profile ');
g_navNode_1_1_11_1=g_navNode_1_1_11.addNode('1589','Microseismic Monitoring',ssUrlPrefix + 'Products/Evaluation/BoreholeSeismicServices/MicroseismicMonitoring/index.htm','Keywords==Microseismic Surveys','PageDescription==Microseismic Surveys','PageTitle==Microseismic Surveys');
g_navNode_1_2=g_navNode_1.addNode('487','Completion',ssUrlPrefix + 'Products/Completion/ ','Keywords==completion services','PageDescription==comprehensive line of products for conventional completion in benign reservoir applications to engineered and integrated completion systems for complex and challenging environments','PageTitle==Completion Services','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_0=g_navNode_1_2.addNode('493','Hydraulic Intelligent Completions',ssUrlPrefix + 'Products/Completion/HydraulicIntelligentCompletions/ ','Keywords==Hydraulic Intelligent Completions','PageDescription==Hydraulic Intelligent Completions','PageTitle==Hydraulic Intelligent Completions','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_1=g_navNode_1_2.addNode('489','Downhole Control Valves',ssUrlPrefix + 'Products/Completion/DownholeControlValve/ ','LeftNavTitle==Downhole Control Valve','PageDescription==Downhole Control Valves','PageTitle==Downhole Control Valves','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_2=g_navNode_1_2.addNode('494','Gravel Pack',ssUrlPrefix + 'Products/Completion/GravelPack/ ','Keywords==Gravel pack, Gravel packing, Frac pack, Frac packing, Sand aid','LeftNavTitle==Gravel Pack','PageDescription==Gravel Pack','PageTitle==Gravel Pack','TopNavTitle==Completion');
g_navNode_1_2_2_0=g_navNode_1_2_2.addNode('737','Hook-Up Nipple \x28HUN\x29 Systems',ssUrlPrefix + 'Products/Completion/GravelPack/Hook-UpNippleHUNSystems/ ','LeftNavTitle==Gravel Pack','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_2_1=g_navNode_1_2_2.addNode('738','4P Sealbore Packer Systems',ssUrlPrefix + 'Products/Completion/GravelPack/4PSealborePackerSystems/ ','LeftNavTitle==Gravel Pack','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_2_2=g_navNode_1_2_2.addNode('739','WFX Fixed-Position Sand-Control Completion Systems',ssUrlPrefix + 'Products/Completion/GravelPack/WFXFixedPositionSandControlCompletionSystems/ ','LeftNavTitle==Gravel Pack','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_3=g_navNode_1_2.addNode('492','Packer Systems',ssUrlPrefix + 'Products/Completion/PackerSystems/ ','Keywords==packer systems','LeftNavTitle==Packer Systems','PageDescription==packer systems','PageTitle==Packer Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_3_0=g_navNode_1_2_3.addNode('727','Intelligent Completions',ssUrlPrefix + 'Products/Completion/PackerSystems/IntelligentCompletions/ ','LeftNavTitle==Packer Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_3_1=g_navNode_1_2_3.addNode('728','Permanent Completions',ssUrlPrefix + 'Products/Completion/PackerSystems/PermanentCompletions/ ','LeftNavTitle==Packer Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_3_2=g_navNode_1_2_3.addNode('729','Sealbore Completions',ssUrlPrefix + 'Products/Completion/PackerSystems/SealboreCompletions/ ','LeftNavTitle==Packer Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_3_3=g_navNode_1_2_3.addNode('730','Lare Bore Retrievable Completions',ssUrlPrefix + 'Products/Completion/PackerSystems/LareBoreRetrievableCompletions/ ','LeftNavTitle==Packer Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_3_4=g_navNode_1_2_3.addNode('731','Single-String Hydraulic Completions',ssUrlPrefix + 'Products/Completion/PackerSystems/Single-StringHydraulicCompletions/ ','LeftNavTitle==Packer Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_3_5=g_navNode_1_2_3.addNode('732','Multi-String Completions',ssUrlPrefix + 'Products/Completion/PackerSystems/Multi-StringCompletions/ ','LeftNavTitle==Packer Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_3_6=g_navNode_1_2_3.addNode('733','Mechanical Packers',ssUrlPrefix + 'Products/Completion/PackerSystems/MechanicalPackers/ ','LeftNavTitle==Packer Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_3_7=g_navNode_1_2_3.addNode('734','Thermal Completions',ssUrlPrefix + 'Products/Completion/PackerSystems/ThermalCompletions/ ','LeftNavTitle==Packer Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_3_8=g_navNode_1_2_3.addNode('735','Completion Accessories',ssUrlPrefix + 'Products/Completion/PackerSystems/CompletionAccessories/ ','LeftNavTitle==Packer Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_3_9=g_navNode_1_2_3.addNode('736','Service Tools',ssUrlPrefix + 'Products/Completion/PackerSystems/ServiceTools/ ','LeftNavTitle==Packer Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_4=g_navNode_1_2.addNode('714','Open Hole Completions',ssUrlPrefix + 'Products/Completion/OpenHoleCompletions/ ','LeftNavTitle==Open Hole Completions','PageDescription==Open Hole Completions','PageTitle==Open Hole Completions','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_4_0=g_navNode_1_2_4.addNode('740','Liner-top Isolation',ssUrlPrefix + 'Products/Completion/OpenHoleCompletions/Liner-topIsolation/ ','LeftNavTitle==Open Hole Completions','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_4_1=g_navNode_1_2_4.addNode('741','Fracturing Sleeves',ssUrlPrefix + 'Products/Completion/OpenHoleCompletions/FracSleeves/ ','LeftNavTitle==Open Hole Completions','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_4_2=g_navNode_1_2_4.addNode('742','Plugs and Accessories',ssUrlPrefix + 'Products/Completion/OpenHoleCompletions/PlugsandAccessories/ ','LeftNavTitle==Open Hole Completions','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_4_3=g_navNode_1_2_4.addNode('1331','Swellable Packers',ssUrlPrefix + 'Products/Completion/OpenHoleCompletions/SwellablePackers/SwellablePackers','Keywords==swellable packers','PageTitle==Swellables','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_4_4=g_navNode_1_2_4.addNode('1332','Swellables',ssUrlPrefix + 'Products/Completion/OpenHoleCompletions/Swellables/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_4_5=g_navNode_1_2_4.addNode('1598','Openhole Isolation',ssUrlPrefix + 'Products/Completion/OpenHoleCompletions/OpenholeIsolation/index.htm');
g_navNode_1_2_4_6=g_navNode_1_2_4.addNode('1599','Engineering \x26 Job Planning',ssUrlPrefix + 'Products/Completion/OpenHoleCompletions/EngineeringJobPlanning/index.htm','PageDescription==Engineering \x26 job planning','PageTitle==Engineering \x26 job planning');
g_navNode_1_2_4_7=g_navNode_1_2_4.addNode('1600','Shale Plays',ssUrlPrefix + 'Products/Completion/OpenHoleCompletions/ShalePlays/index.htm');
g_navNode_1_2_4_8=g_navNode_1_2_4.addNode('1601','Offshore',ssUrlPrefix + 'Products/Completion/OpenHoleCompletions/Offshore/index.htm');
g_navNode_1_2_5=g_navNode_1_2.addNode('488','Cased Hole Completion',ssUrlPrefix + 'Products/Completion/CasedHoleCompletion/ ','Keywords==cased hole, cased hole completion, ','LeftNavTitle==Cased Hole Completion','PageDescription==Weatherford\u2019s systems-based approach to premium cased-hole completion design enables you to meet the challenges of deepwater, high-pressure/high-temperature and other hostile environments.','PageTitle==Cased Hole Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_6=g_navNode_1_2.addNode('506','Liner Systems',ssUrlPrefix + 'Products/Completion/LinerSystems/ ','LeftNavTitle==Liner Systems','PageDescription==Liner Systems','PageTitle==Liner Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_6_0=g_navNode_1_2_6.addNode('744','Case Histories',ssUrlPrefix + 'Products/Completion/LinerSystems/CaseHistories/ ','LeftNavTitle==Liner Systems','PageTitle==Liner Systems Case Histories','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_6_1=g_navNode_1_2_6.addNode('745','Applications',ssUrlPrefix + 'Products/Completion/LinerSystems/Applications/ ','LeftNavTitle==Liner Systems','PageTitle==Liner Systems Applications','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_6_2=g_navNode_1_2_6.addNode('746','Products Overview',ssUrlPrefix + 'Products/Completion/LinerSystems/ProductsOverview/ ','Keywords==liner systems, running tools','LeftNavTitle==Liner Systems','PageDescription==Weatherford\u2019s liner systems and running tools are designed and built to work together as a system.','PageTitle==Liner Sytems Products Overview','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_6_2_0=g_navNode_1_2_6_2.addNode('1478','Liner Packers',ssUrlPrefix + 'Products/Completion/LinerSystems/ProductsOverview/LinerPackers/index.htm','Keywords==Liner Packer Systems','PageDescription==liner packers are run as an integral part of the liner-hanger assembly and provide a protective seal between the liner OD and host-casing ID.','PageTitle==Liner Packers');
g_navNode_1_2_6_2_1=g_navNode_1_2_6_2.addNode('1479','Liner Hangers',ssUrlPrefix + 'Products/Completion/LinerSystems/ProductsOverview/LinerHangers/index.htm','Keywords==liner hangers','PageDescription==Weatherford liner hangers have superb run-in features, such as large bypass area and high load capacity. ','PageTitle==Liner Hangers');
g_navNode_1_2_6_2_2=g_navNode_1_2_6_2.addNode('1480','Running Tools',ssUrlPrefix + 'Products/Completion/LinerSystems/ProductsOverview/RunningTools/index.htm','Keywords==Liner sytems, running tools','PageDescription==Weatherford manufactures a variety of running tools all consistently designed for reliable liner running operations','PageTitle==Running Tools');
g_navNode_1_2_6_3=g_navNode_1_2_6.addNode('1491','TruForm\u2122 Liner Hanger System',ssUrlPrefix + 'Products/Completion/LinerSystems/TruFormLinerHangerSystem/index.htm','PageTitle==TruForm\u2122 Liner Hanger System');
g_navNode_1_2_7=g_navNode_1_2.addNode('508','Intelligent Well Systems',ssUrlPrefix + 'Products/Completion/IntelligentWellSystems/ ','Keywords==Intelligent Well Systems','LeftNavTitle==Intelligent Well Systems','PageDescription==Intelligent Well Systems','PageTitle==Intelligent Well Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_8=g_navNode_1_2.addNode('491','Flow Control Systems',ssUrlPrefix + 'Products/Completion/FlowControlSystems/ ','Keywords==Flow Control Systems','LeftNavTitle==Flow Control Systems','PageDescription==Flow Control Systems','PageTitle==Flow Control Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_8_0=g_navNode_1_2_8.addNode('691','Uniset\xae Well Servicing System',ssUrlPrefix + 'Products/Completion/FlowControlSystems/Uniset\xaeWellServicingSystem/ ','Keywords==Uniset\xae Well Servicing System','LeftNavTitle==Flow Control Systems','PageDescription==The Uniset system uses nipples for simple, reliable, low-cost well completion and servicing, as well as bridge plugs for redundant well plugging later in field life.','PageTitle==Uniset\xae Well Servicing System','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_8_1=g_navNode_1_2_8.addNode('692','Standard Flow Control Products',ssUrlPrefix + 'Products/Completion/FlowControlSystems/StandardFlowControlProducts/ ','Keywords==flow control devices, nipples, lock mandrels, plugs, flow control vlaves','LeftNavTitle==Flow Control Systems','PageDescription==Weatherford offers a wide range of industry-standard flow control devices including nipples, lock mandrels, plugs and accessories','PageTitle==Standard Flow Control Products ','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_8_2=g_navNode_1_2_8.addNode('693','Wireline and Coiled Tubing Tools',ssUrlPrefix + 'Products/Completion/FlowControlSystems/WirelineandCoiledTubingTools/ ','Keywords==Wireline and Coiled Tubing Tools, wireline valve,, wireline tools, coiled tubing tools','LeftNavTitle==Flow Control Systems','PageDescription==The latest innovation in wireline technology is Weatherford\u2019s RapidRedress\u2122 wireline valve, which minimizes the time required for redressing','PageTitle==Wireline and Coiled Tubing Tools','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_8_3=g_navNode_1_2_8.addNode('694','Slickplug\u2122 Retrievable Bridge Plugs',ssUrlPrefix + 'Products/Completion/FlowControlSystems/Slickplug\u2122RetrievableBridgePlugs/ ','Keywords==Slickplug Retrievable Bridge Plugs, slickplug, bridge plug, retrievable bridge plug, composite bridge plug','LeftNavTitle==Flow Control Systems','PageTitle==Slickplug\u2122 Retrievable Bridge Plugs','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_9=g_navNode_1_2.addNode('509','Well Screens',ssUrlPrefix + 'Products/Completion/WellScreens/ ','Keywords==Well screen, Well screens, Screen well, Screen selection, Well screening, Sand screen, Sand screens, Metal mesh, Metal mesh screen, Wire wrap, Wire wrap screen,Wire wrapped,Wire wrapped screen,Wire wrapped screens,Pre pack screen','LeftNavTitle==Well Screens','PageDescription==Well Screens','PageTitle==Well Screens');
g_navNode_1_2_10=g_navNode_1_2.addNode('510','Fracturing Technologies',ssUrlPrefix + 'Products/Completion/FracturingTechnologies/ ','Keywords==Fracturing Technologies','LeftNavTitle==Fracturing Technologies','PageDescription==Fracturing Technologies','PageTitle==Fracturing Technologies','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_10_0=g_navNode_1_2_10.addNode('753','Fluid Systems',ssUrlPrefix + 'Products/Completion/FracturingTechnologies/FluidSystems/ ','Keywords==fluid systems','LeftNavTitle==Fracturing Technologies','PageDescription==fluid systems','PageTitle==Fracturing Technologies','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_10_1=g_navNode_1_2_10.addNode('754','Equipment',ssUrlPrefix + 'Products/Completion/FracturingTechnologies/Equipment/ ','Keywords==fracturing, fracturing equipment','LeftNavTitle==Fracturing Technologies','PageDescription==Fracturing Equipment','PageTitle==Fracturing Equipment','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_11=g_navNode_1_2.addNode('512','Wellhead Systems',ssUrlPrefix + 'Products/Completion/WellheadSystems/ ','Keywords==Wellhead Systems','LeftNavTitle==Wellhead Systems','PageDescription==Wellhead Systems','PageTitle==Wellhead Systems','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_12=g_navNode_1_2.addNode('490','Safety Valves',ssUrlPrefix + 'Products/Completion/SafetyValves/ ','Keywords==Safety Valves, safety check valves, safety check valve, safety relief valve, check valve','LeftNavTitle==Safety Valves','PageDescription==Safety Valves','PageTitle==Safety Valves','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_12_0=g_navNode_1_2_12.addNode('756','Optimax Slim Line Tubing Mounted Safety Valves',ssUrlPrefix + 'Products/Completion/SafetyValves/OptimaxSlimLineTubingMountedSafetyValves/ ','Keywords==Optimax Slim Line Tubing Mounted Safety Valves, safety valves','LeftNavTitle==Safety Valves','PageDescription==Optimax Slim Line Tubing Mounted Safety Valves','PageTitle==Optimax Slim Line Tubing Mounted Safety Valves','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_12_1=g_navNode_1_2_12.addNode('757','Optimax Tubing Mounted Valves',ssUrlPrefix + 'Products/Completion/SafetyValves/OptimaxTubingMountedValves/ ','Keywords==Optimax Tubing Mounted Valves','LeftNavTitle==Safety Valves','PageDescription==Optimax Tubing Mounted Valves','PageTitle==Optimax Tubing Mounted Valves','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_12_2=g_navNode_1_2_12.addNode('758','Optimax Wireline Valves',ssUrlPrefix + 'Products/Completion/SafetyValves/OptimaxWirelineValves/ ','Keywords==Optimax Wireline Valves ','LeftNavTitle==Safety Valves','PageDescription==Optimax Wireline Valves ','PageTitle==Optimax Wireline Valves ','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_12_3=g_navNode_1_2_12.addNode('759','Renaissance System',ssUrlPrefix + 'Products/Completion/SafetyValves/RenaissanceSystem/ ','Keywords==safety valves','LeftNavTitle==Safety Valves','PageDescription==The Renaissance\u2122 system of safety valves provides unique, cost-effective solutions for common well problems that previously required expensive repair.','PageTitle==Renaissance System','TopNavTitle==Completion','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_12_3_0=g_navNode_1_2_12_3.addNode('1221','Optimax Damaged Seal Bore Solution',ssUrlPrefix + 'Products/Completion/SafetyValves/RenaissanceSystem/OptimaxDamagedSealBoreSolution/index.htm','Keywords==Optimax Damaged Seal Bore Solution','PageDescription==Weatherford\u2019s Renaissance WDB damaged bore safety valve is designed to be run and set in wireline nipples and tubing mounted safety valves that have been severely damaged by wireline, electric line, or coil tubing. ','PageTitle==Optimax Damaged Seal Bore Solution','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_12_3_1=g_navNode_1_2_12_3.addNode('1222','Optimax Damaged Control-Line Safety Valve',ssUrlPrefix + 'Products/Completion/SafetyValves/RenaissanceSystem/OptimaxDamagedControl-LineSafetyValve/index.htm','Keywords==Optimax Damaged Control-Line Safety Valve','PageDescription==Weatherford\u2019s Renaissance WDCL wireline-retrievable subsurface safety valve is used in wells with a damaged or blocked control line.','PageTitle==Optimax Damaged Control-Line Safety Valve','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_12_3_2=g_navNode_1_2_12_3.addNode('1223','Optimax Opti-Chem WCS Chemical Injection Safety Valve',ssUrlPrefix + 'Products/Completion/SafetyValves/RenaissanceSystem/OptimaxOpti-ChemWCSChemicalInjectionSafetyValve/index.htm','Keywords==Optimax Opti-Chem WCS Chemical Injection Safety Valve, safety vlave','PageDescription==Weatherford\u2019s Renaissance Opti-Chem WCS wireline-retrievable subsurface safety valve makes it possible to add chemical injection to a well\u2014without the need for a workover. ','PageTitle==Optimax Opti-Chem WCS Chemical Injection Safety Valve','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_13=g_navNode_1_2.addNode('1360','Sand Control',ssUrlPrefix + 'Products/Completion/SandControl/index.htm','Keywords==Sand control, Well screen, Well screens, Screen well, Screen selection, Well screening, Sand screen, Sand screens, Sand testing, Inflow control device, ICD, Gravel packs','PageDescription==Sand Control','PageTitle==Sand Control','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_13_0=g_navNode_1_2_13.addNode('1361','Expandable Sand Screens',ssUrlPrefix + 'Products/Completion/SandControl/ExpandableSandScreen/index.htm','Keywords==ESS, Expandable screen, Expandable screens, Expandable sand screen','PageDescription==Expandable sand screens','PageTitle==Expandable Sand Screens','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_13_1=g_navNode_1_2_13.addNode('1400','Inflow Control Devices',ssUrlPrefix + 'Products/Completion/SandControl/InflowControlDevices/index.htm','Keywords==Inflow control device, Inflow control devices, ICD, FloReg, Inflow control','PageDescription==Inflow Control Devices','PageTitle==Inflow Control Devices','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_13_2=g_navNode_1_2_13.addNode('1452','Deepwater',ssUrlPrefix + 'Products/Completion/SandControl/Deepwater/index.htm','PageDescription==effective sand control in deepwater environments','PageTitle==Deepwater');
g_navNode_1_2_13_3=g_navNode_1_2_13.addNode('1453','Shale',ssUrlPrefix + 'Products/Completion/SandControl/Shale/index.htm','Keywords==shale play','PageDescription==Weatherford\u2019s swellable packers enable interventionless diversion of the fracturing treatment and offers life-of-well zonal isolation, while minimizing the time and cost to complete multiple reservoir sections.','PageTitle==Shale');
g_navNode_1_2_13_4=g_navNode_1_2_13.addNode('1454','Heavy Oil',ssUrlPrefix + 'Products/Completion/SandControl/HeavyOil/index.htm','Keywords==heavy oil, heavy oil reservoirs','PageDescription==Sand control is a vital requirement for many heavy-oil reservoirs and applying sand screens in thermal recovery developments ','PageTitle==Heavy Oil');
g_navNode_1_2_13_5=g_navNode_1_2_13.addNode('1455','Carbonate Reservoirs',ssUrlPrefix + 'Products/Completion/SandControl/CarbonateReservoirs/index.htm','Keywords==carbonate reservoirs, CARD, Carbonate Reservoir Drainage','PageDescription==Weatherford\u2019s Carbonate Reservoir Drainage \x28CARD\x29 system maximizes reservoir recovery and sweep efficiency by minimizing water production from high-permeability fractures and super-permeable zones, which tend to dominate a well\u2019s hydrocarbon production and suppress the contribution of low-permeability zones. ','PageTitle==Carbonate Reservoirs');
g_navNode_1_2_13_6=g_navNode_1_2_13.addNode('1456','Coalbed Methane',ssUrlPrefix + 'Products/Completion/SandControl/CoalbedMethane/index.htm','Keywords==Coalbed methane, CBM, ECL, expanadable completion liner','PageDescription== Weatherford\u2019s ECL\u2122 expandable completion liner adds stability to borehole structure, and produced water disposal to maximize the economic value','PageTitle==Coalbed Methane');
g_navNode_1_2_13_7=g_navNode_1_2_13.addNode('1457','Underground Gas Storage \x28UGS\x29',ssUrlPrefix + 'Products/Completion/SandControl/UndergroundGasStorageUGS/index.htm','Keywords==sand control technologies, underground gas storage, USG','PageDescription==sand control technologies for use in underground gas storage USG','PageTitle==Underground Gas Storage \x28UGS\x29');
g_navNode_1_2_13_8=g_navNode_1_2_13.addNode('1458','Geothermal',ssUrlPrefix + 'Products/Completion/SandControl/Geothermal/index.htm','Keywords==gethermal wells, geothermal, Enhanced geothermal systems, EGS','PageDescription==Weatherford\u2019s ECL\u2122 expandable completion liner adds stability to borehole structure','PageTitle==Geothermal Applications','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Completion\x60');
g_navNode_1_2_13_9=g_navNode_1_2_13.addNode('1652','Sand-Screen Selection',ssUrlPrefix + 'Products/Completion/SandControl/Sand-ScreenSelection/index.htm','Keywords==Sand-Screen Selection ','PageDescription==Weatherford has integrated subsurface engineering services which synthesize all of the critical inputs to sand control completion design, in conjunction with field data from hundreds of global applications. ','PageTitle==Sand-Screen Selection ');
g_navNode_1_3=g_navNode_1.addNode('513','Production',ssUrlPrefix + 'Products/Production/ ','Keywords==reservoir recovery, artificial lift, well optimization services and products, intelligent completion systems, well control','PageDescription==We help maximize reservoir recovery and optimize field production through artificial lift, well optimization services and products, and intelligent completion systems that remotely monitor and control well, facility or field production.','PageTitle==Production Services','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_0=g_navNode_1_3.addNode('514','Artificial Lift',ssUrlPrefix + 'Products/Production/ArtificialLift/ ','LeftNavTitle==ArtificialLift','PageDescription==Weatherford offers products and expertise for all forms of lift','PageTitle==Artificial Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_0_0=g_navNode_1_3_0.addNode('1207','Artificial Lift Training',ssUrlPrefix + 'Products/Production/ArtificialLift/ArtificialLiftTraining/ ','Keywords==Artificial Lift Training','PageDescription==Artificial Lift Training','PageTitle==Artificial Lift Training','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_0_1=g_navNode_1_3_0.addNode('1208','ALS Training Course',ssUrlPrefix + 'Products/Production/ArtificialLift/ALSTrainingCourse/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_0_2=g_navNode_1_3_0.addNode('1209','Gas Lift Training Course',ssUrlPrefix + 'Products/Production/ArtificialLift/GasLiftTrainingCourse/ ','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_0_3=g_navNode_1_3_0.addNode('1494','Artificial Lift Training Schedule',ssUrlPrefix + 'Products/Production/ArtificialLift/ArtificialLiftTrainingSchedule/index.htm','PageDescription==Artificial Lift Training Schedule','PageTitle==Artificial Lift Training Schedule');
g_navNode_1_3_1=g_navNode_1_3.addNode('524','Capillary Injection',ssUrlPrefix + 'Products/Production/CapillaryInjection/ ','LeftNavTitle==Capillary Injection','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_1_0=g_navNode_1_3_1.addNode('839','Overview',ssUrlPrefix + 'Products/Production/CapillaryInjection/Overview/ ','LeftNavTitle==Capillary Injection','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_1_1=g_navNode_1_3_1.addNode('840','Applications',ssUrlPrefix + 'Products/Production/CapillaryInjection/Applications/ ','LeftNavTitle==Capillary Injection','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_1_2=g_navNode_1_3_1.addNode('841','Advantages',ssUrlPrefix + 'Products/Production/CapillaryInjection/Advantages/ ','LeftNavTitle==Capillary Injection','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_1_3=g_navNode_1_3_1.addNode('842','Candidate Selection',ssUrlPrefix + 'Products/Production/CapillaryInjection/CandidateSelection/ ','LeftNavTitle==Capillary Injection','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_1_4=g_navNode_1_3_1.addNode('843','Metallurgy',ssUrlPrefix + 'Products/Production/CapillaryInjection/Metallurgy/ ','LeftNavTitle==Capillary Injection','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_2=g_navNode_1_3.addNode('698','ClearWELL\u2122 \u2013 Clearly Better',ssUrlPrefix + 'Products/Production/ClearWELLClearlyBetter/ ','LeftNavTitle==ClearWELL\u2122 \u2013 Clearly Better','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_2_0=g_navNode_1_3_2.addNode('844','The Technology',ssUrlPrefix + 'Products/Production/ClearWELLClearlyBetter/TheTechnology/ ','LeftNavTitle==ClearWELL\u2122 \u2013 Clearly Better','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_2_1=g_navNode_1_3_2.addNode('845','Benefits',ssUrlPrefix + 'Products/Production/ClearWELLClearlyBetter/Benefits/ ','LeftNavTitle==ClearWELL\u2122 \u2013 Clearly Better','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_2_2=g_navNode_1_3_2.addNode('846','One-of-a-kind',ssUrlPrefix + 'Products/Production/ClearWELLClearlyBetter/One-of-a-kind/ ','LeftNavTitle==ClearWELL\u2122 \u2013 Clearly Better','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_2_3=g_navNode_1_3_2.addNode('847','Scale Control',ssUrlPrefix + 'Products/Production/ClearWELLClearlyBetter/ScaleControl/ ','LeftNavTitle==ClearWELL\u2122 \u2013 Clearly Better','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_2_4=g_navNode_1_3_2.addNode('848','Paraffin Control',ssUrlPrefix + 'Products/Production/ClearWELLClearlyBetter/ParaffinControl/ ','LeftNavTitle==ClearWELL\u2122 \u2013 Clearly Better','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_3=g_navNode_1_3.addNode('528','Coalbed Methane',ssUrlPrefix + 'Products/Production/CoalbedMethane/ ','LeftNavTitle==Coalbed Methane','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_4=g_navNode_1_3.addNode('527','Control Systems',ssUrlPrefix + 'Products/Production/ControlSystems/ ','LeftNavTitle==Control Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_4_0=g_navNode_1_3_4.addNode('850','Wellhead Control Systems',ssUrlPrefix + 'Products/Production/ControlSystems/WellheadControlSystems/ ','LeftNavTitle==Control Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_4_1=g_navNode_1_3_4.addNode('851','Workover Control Systems',ssUrlPrefix + 'Products/Production/ControlSystems/WorkoverControlSystems/ ','LeftNavTitle==Control Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_4_1_0=g_navNode_1_3_4_1.addNode('1138','General Rental Equipment',ssUrlPrefix + 'Products/Production/ControlSystems/WorkoverControlSystems/GeneralRentalEquipment/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_4_1_1=g_navNode_1_3_4_1.addNode('1139','Stack Up Facility',ssUrlPrefix + 'Products/Production/ControlSystems/WorkoverControlSystems/StackUpFacility/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_4_1_1_0=g_navNode_1_3_4_1_1.addNode('1140','Components',ssUrlPrefix + 'Products/Production/ControlSystems/WorkoverControlSystems/StackUpFacility/Components/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_4_2=g_navNode_1_3_4.addNode('1141','Components for Control Systems ',ssUrlPrefix + 'Products/Production/ControlSystems/ComponentsforControlSystems/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_4_3=g_navNode_1_3_4.addNode('1142','Pilots',ssUrlPrefix + 'Products/Production/ControlSystems/Pilots/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_4_4=g_navNode_1_3_4.addNode('1143','Safety System Field Instruments ',ssUrlPrefix + 'Products/Production/ControlSystems/SafetySystemFieldInstruments/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_4_5=g_navNode_1_3_4.addNode('1144','Support and Service ',ssUrlPrefix + 'Products/Production/ControlSystems/SupportandService/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_5=g_navNode_1_3.addNode('710','Subsea Production Control Systems',ssUrlPrefix + 'Products/Production/SubseaProductionControlSystems/ ','PageDescription==Subsea Production Control Systems','PageTitle==Subsea Production Control Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_5_0=g_navNode_1_3_5.addNode('849','Subsea Control Systems',ssUrlPrefix + 'Products/Production/SubseaProductionControlSystems/SubseaControlSystems/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_5_1=g_navNode_1_3_5.addNode('833','Topside Information \x26 Control Systems',ssUrlPrefix + 'Products/Production/SubseaProductionControlSystems/TopsideInformationControlSystems/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_5_2=g_navNode_1_3_5.addNode('834','Open Communication Controller',ssUrlPrefix + 'Products/Production/SubseaProductionControlSystems/OpenCommunicationController/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_5_3=g_navNode_1_3_5.addNode('1578','Subsea Video Surveillance System',ssUrlPrefix + 'Products/Production/SubseaProductionControlSystems/SubseaVideoSurveillanceSystem/index.htm','Keywords==Subsea Video Surveillance System, subsea visual monitoring, recording wellbore conditions, hydrate growth, remotely operated vehicles, ROVs,reduce ROV-inspection frequency','PageDescription==The SeaHawk subsea surveillance system enables real-time, visual monitoring and recording of wellbore conditions','PageTitle==Subsea Video Surveillance System');
g_navNode_1_3_6=g_navNode_1_3.addNode('515','Electric Submersible Pumping',ssUrlPrefix + 'Products/Production/ElectricSubmersiblePumping/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_6_0=g_navNode_1_3_6.addNode('852','ESP System Overview',ssUrlPrefix + 'Products/Production/ElectricSubmersiblePumping/ESPSystemOverview/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_6_1=g_navNode_1_3_6.addNode('853','ESP System Applications',ssUrlPrefix + 'Products/Production/ElectricSubmersiblePumping/ESPSystemApplications/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_6_2=g_navNode_1_3_6.addNode('854','ESP Optimization Systems',ssUrlPrefix + 'Products/Production/ElectricSubmersiblePumping/ESPOptimizationSystems/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_6_3=g_navNode_1_3_6.addNode('855','Pumps',ssUrlPrefix + 'Products/Production/ElectricSubmersiblePumping/Pumps/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_6_4=g_navNode_1_3_6.addNode('856','Intakes and Gas Separators',ssUrlPrefix + 'Products/Production/ElectricSubmersiblePumping/IntakesandGasSeparators/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_6_5=g_navNode_1_3_6.addNode('857','Motors',ssUrlPrefix + 'Products/Production/ElectricSubmersiblePumping/Motors/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_6_6=g_navNode_1_3_6.addNode('858','Downhole Monitoring',ssUrlPrefix + 'Products/Production/ElectricSubmersiblePumping/DownholeMonitoring/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_6_7=g_navNode_1_3_6.addNode('859','Cables',ssUrlPrefix + 'Products/Production/ElectricSubmersiblePumping/Cables/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_6_8=g_navNode_1_3_6.addNode('860','Switchboards',ssUrlPrefix + 'Products/Production/ElectricSubmersiblePumping/Switchboards/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_6_9=g_navNode_1_3_6.addNode('861','Variable Frequency Drives',ssUrlPrefix + 'Products/Production/ElectricSubmersiblePumping/VariableFrequencyDrives/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_6_10=g_navNode_1_3_6.addNode('862','Accessories',ssUrlPrefix + 'Products/Production/ElectricSubmersiblePumping/Accessories/ ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7=g_navNode_1_3.addNode('530','Flow Measurement',ssUrlPrefix + 'Products/Production/FlowMeasurement/ ','LeftNavTitle==Flow Measurement','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_0=g_navNode_1_3_7.addNode('1074','Overview',ssUrlPrefix + 'Products/Production/FlowMeasurement/Overview/ ','LeftNavTitle==Flow Measurement','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_1=g_navNode_1_3_7.addNode('867','Red Eye\xae 2G Water-Cut Meter',ssUrlPrefix + 'Products/Production/FlowMeasurement/RedEye\xae2GWater-CutMeter/ ','LeftNavTitle==Flow Measurement','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_1_0=g_navNode_1_3_7_1.addNode('1162','Net Oil Computer and RedLine Configuration Software',ssUrlPrefix + 'Products/Production/FlowMeasurement/RedEye\xae2GWater-CutMeter/NetOilComputerandRedLineConfigurationSoftware/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_1_1=g_navNode_1_3_7_1.addNode('1163','Typical Applications for the Red Eye 2G Water-Cut Meter',ssUrlPrefix + 'Products/Production/FlowMeasurement/RedEye\xae2GWater-CutMeter/TypicalApplicationsfortheRedEye2GWater-CutMeter/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_2=g_navNode_1_3_7.addNode('872','Red Eye\xae Hot Tap Insertion',ssUrlPrefix + 'Products/Production/FlowMeasurement/RedEyeHotTapInsertion/ ','LeftNavTitle==Flow Measurement','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_3=g_navNode_1_3_7.addNode('869','Red Eye\xae Multiphase Metering System',ssUrlPrefix + 'Products/Production/FlowMeasurement/RedEyeMultiphaseMeteringSystem/ ','LeftNavTitle==Flow Measurement','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_3_0=g_navNode_1_3_7_3.addNode('1200','Typical Applications for Red Eye Multiphase Metering System',ssUrlPrefix + 'Products/Production/FlowMeasurement/RedEyeMultiphaseMeteringSystem/TypicalApplicationsforRedEyeMultiphaseMeteringSystem/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_4=g_navNode_1_3_7.addNode('870','CS7X\u2122 Control System',ssUrlPrefix + 'Products/Production/FlowMeasurement/CS7XControlSystem/ ','LeftNavTitle==Flow Measurement','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_5=g_navNode_1_3_7.addNode('871','VistaFLO\u2122 Electronic Flow Measurement Solution',ssUrlPrefix + 'Products/Production/FlowMeasurement/VistaFLOElectronicFlowMeasurementSolution/ ','LeftNavTitle==Flow Measurement','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_6=g_navNode_1_3_7.addNode('868','K-MVT Multivariable Transmitter Communications Interface Module',ssUrlPrefix + 'Products/Production/FlowMeasurement/KMVTMultivariableTransmitterCommunicationsInterfaceModule/ ','LeftNavTitle==Flow Measurement','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_7=g_navNode_1_3_7.addNode('873','REALFLO\u2122 Multi-Run Gas Flow Computer Software',ssUrlPrefix + 'Products/Production/FlowMeasurement/REALFLO\u2122Multi-RunGasFlowComputerSoftware/ ','LeftNavTitle==Flow Measurement','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_8=g_navNode_1_3_7.addNode('874','TELEPACE\u2122 Ladder Logic Editor',ssUrlPrefix + 'Products/Production/FlowMeasurement/TELEPACE\u2122LadderLogicEditor/ ','LeftNavTitle==Flow Measurement','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_9=g_navNode_1_3_7.addNode('875','Alpha VS/R Wet-Gas Flowmeter',ssUrlPrefix + 'Products/Production/FlowMeasurement/AlphaVSRWet-GasFlowmeter/ ','LeftNavTitle==Flow Measurement','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_9_0=g_navNode_1_3_7_9.addNode('1215','Applications',ssUrlPrefix + 'Products/Production/FlowMeasurement/AlphaVSRWet-GasFlowmeter/Applications/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_9_1=g_navNode_1_3_7_9.addNode('1216','Principle of Operation',ssUrlPrefix + 'Products/Production/FlowMeasurement/AlphaVSRWet-GasFlowmeter/PrincipleofOperation/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_10=g_navNode_1_3_7.addNode('1335','Red Eye\xae Water-Cut Meter',ssUrlPrefix + 'Products/Production/FlowMeasurement/RedEyeWater-CutMeter/index.htm','PageTitle==Red Eye\xae Water-Cut Meter','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_10_0=g_navNode_1_3_7_10.addNode('1336','How the Red Eye multiphase water-cut meter works',ssUrlPrefix + 'Products/Production/FlowMeasurement/RedEyeWater-CutMeter/HowtheRedEyemultiphasewater-cutmeterworks/index.htm','PageTitle==How the Red Eye multiphase water-cut meter works','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_7_10_1=g_navNode_1_3_7_10.addNode('1337','Meter Configuration, Installation \x26 Calibration',ssUrlPrefix + 'Products/Production/FlowMeasurement/RedEyeWater-CutMeter/MeterConfigurationInstallationCalibration/index.htm','PageTitle==Meter Configuration, Installation \x26 Calibration','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8=g_navNode_1_3.addNode('516','Gas Lift',ssUrlPrefix + 'Products/Production/GasLift/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_0=g_navNode_1_3_8.addNode('876','Overview',ssUrlPrefix + 'Products/Production/GasLift/Overview/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_1=g_navNode_1_3_8.addNode('877','Applications',ssUrlPrefix + 'Products/Production/GasLift/Applications/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_2=g_navNode_1_3_8.addNode('878','Advantages',ssUrlPrefix + 'Products/Production/GasLift/Advantages/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_3=g_navNode_1_3_8.addNode('879','Gas Lift Optimization Systems',ssUrlPrefix + 'Products/Production/GasLift/GasLiftOptimizationSystems/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_4=g_navNode_1_3_8.addNode('880','Gas Lift Valves',ssUrlPrefix + 'Products/Production/GasLift/GasLiftValves/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_5=g_navNode_1_3_8.addNode('881','Gas Lift Mandrels',ssUrlPrefix + 'Products/Production/GasLift/GasLiftMandrels/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_6=g_navNode_1_3_8.addNode('882','Latches',ssUrlPrefix + 'Products/Production/GasLift/Latches/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_7=g_navNode_1_3_8.addNode('883','Kickover Tools',ssUrlPrefix + 'Products/Production/GasLift/KickoverTools/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_8=g_navNode_1_3_8.addNode('884','Dummy Valves',ssUrlPrefix + 'Products/Production/GasLift/DummyValves/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_9=g_navNode_1_3_8.addNode('885','Equalizing Dummy Valves',ssUrlPrefix + 'Products/Production/GasLift/EqualizingDummyValves/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_10=g_navNode_1_3_8.addNode('886','Dump Kill Valves',ssUrlPrefix + 'Products/Production/GasLift/DumpKillValves/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_11=g_navNode_1_3_8.addNode('887','Surface Controllers',ssUrlPrefix + 'Products/Production/GasLift/SurfaceControllers/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_12=g_navNode_1_3_8.addNode('888','Motor Valves / Chokes',ssUrlPrefix + 'Products/Production/GasLift/MotorValvesChokes/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_13=g_navNode_1_3_8.addNode('889','Corrosion Monitoring Equipment',ssUrlPrefix + 'Products/Production/GasLift/CorrosionMonitoringEquipment/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_14=g_navNode_1_3_8.addNode('890','Standing Valves',ssUrlPrefix + 'Products/Production/GasLift/StandingValves/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_15=g_navNode_1_3_8.addNode('891','Waterflood Injection Systems',ssUrlPrefix + 'Products/Production/GasLift/WaterfloodInjectionSystems/ ','LeftNavTitle==Gas Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_8_16=g_navNode_1_3_8.addNode('1211','Well Tracer Technology',ssUrlPrefix + 'Products/Production/GasLift/WellTracerTechnology/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_9=g_navNode_1_3.addNode('519','Gas-Well Deliquification',ssUrlPrefix + 'Products/Production/GasWellDeliquification/ ','LeftNavTitle==Gas-Well Deliquification','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_9_0=g_navNode_1_3_9.addNode('892','Foam-Lift Systems',ssUrlPrefix + 'Products/Production/GasWellDeliquification/Foam-LiftSystems/ ','LeftNavTitle==Gas-Well Deliquification','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_9_1=g_navNode_1_3_9.addNode('893','Plunger-Lift Systems',ssUrlPrefix + 'Products/Production/GasWellDeliquification/Plunger-LiftSystems/ ','LeftNavTitle==Gas-Well Deliquification','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_9_2=g_navNode_1_3_9.addNode('894','Positive-Displacement Lift Systems',ssUrlPrefix + 'Products/Production/GasWellDeliquification/Positive-DisplacementLiftSystems/ ','LeftNavTitle==Gas-Well Deliquification','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_9_3=g_navNode_1_3_9.addNode('895','Fluid-Power Systems Overview',ssUrlPrefix + 'Products/Production/GasWellDeliquification/Fluid-PowerSystemsOverview/ ','LeftNavTitle==Gas-Well Deliquification','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_9_4=g_navNode_1_3_9.addNode('896','Continuous and Intermittent Gas-Lift Systems',ssUrlPrefix + 'Products/Production/GasWellDeliquification/ContinuousandIntermittentGas-LiftSystems/ ','LeftNavTitle==Gas-Well Deliquification','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_9_5=g_navNode_1_3_9.addNode('897','Hydraulic Jet-Lift Systems',ssUrlPrefix + 'Products/Production/GasWellDeliquification/HydraulicJet-LiftSystems/ ','LeftNavTitle==Gas-Well Deliquification','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_10=g_navNode_1_3.addNode('532','Heavy Oil',ssUrlPrefix + 'Products/Production/HeavyOil/ ','LeftNavTitle==Heavy Oil','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_10_0=g_navNode_1_3_10.addNode('898','Sand Removal and Management System',ssUrlPrefix + 'Products/Production/HeavyOil/SandRemovalandManagementSystem/ ','LeftNavTitle==Heavy Oil','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_10_1=g_navNode_1_3_10.addNode('899','Mechanical Production Treater',ssUrlPrefix + 'Products/Production/HeavyOil/MechanicalProductionTreater/ ','LeftNavTitle==Heavy Oil','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_10_2=g_navNode_1_3_10.addNode('900','Natural-Gas-Liner Heater',ssUrlPrefix + 'Products/Production/HeavyOil/Natural-Gas-LinerHeater/ ','LeftNavTitle==Heavy Oil','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_11=g_navNode_1_3.addNode('518','Hybrid Lift Technologies',ssUrlPrefix + 'Products/Production/HybridLiftTechnologies/ ','LeftNavTitle==Hybrid Lift Technologies','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_11_0=g_navNode_1_3_11.addNode('901','PCP-Gas Lift',ssUrlPrefix + 'Products/Production/HybridLiftTechnologies/PCP-GasLift/ ','LeftNavTitle==Hybrid Lift Technologies','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_11_1=g_navNode_1_3_11.addNode('902','ESP-Gas Lift',ssUrlPrefix + 'Products/Production/HybridLiftTechnologies/ESP-GasLift/ ','LeftNavTitle==Hybrid Lift Technologies','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_11_2=g_navNode_1_3_11.addNode('903','JET Pump-Gas Lift',ssUrlPrefix + 'Products/Production/HybridLiftTechnologies/JETPump-GasLift/ ','LeftNavTitle==Hybrid Lift Technologies','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_11_3=g_navNode_1_3_11.addNode('904','Gas Lift-Plunger Lift',ssUrlPrefix + 'Products/Production/HybridLiftTechnologies/GasLift-PlungerLift/ ','LeftNavTitle==Hybrid Lift Technologies','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_11_4=g_navNode_1_3_11.addNode('905','Gas-Reciprocating Rod Lift',ssUrlPrefix + 'Products/Production/HybridLiftTechnologies/Gas-ReciprocatingRodLift/ ','LeftNavTitle==Hybrid Lift Technologies','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_12=g_navNode_1_3.addNode('517','Hydraulic Lift',ssUrlPrefix + 'Products/Production/HydraulicLift/ ','LeftNavTitle==Hydraulic Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_12_0=g_navNode_1_3_12.addNode('906','Overview',ssUrlPrefix + 'Products/Production/HydraulicLift/Overview/ ','LeftNavTitle==Hydraulic Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_12_1=g_navNode_1_3_12.addNode('907','Applications',ssUrlPrefix + 'Products/Production/HydraulicLift/Applications/ ','LeftNavTitle==Hydraulic Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_12_2=g_navNode_1_3_12.addNode('908','Advantages',ssUrlPrefix + 'Products/Production/HydraulicLift/Advantages/ ','LeftNavTitle==Hydraulic Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_12_3=g_navNode_1_3_12.addNode('909','Hydraulic Units Overview',ssUrlPrefix + 'Products/Production/HydraulicLift/HydraulicUnitsOverview/ ','LeftNavTitle==Hydraulic Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_12_4=g_navNode_1_3_12.addNode('910','Power Unit and Vessel Cleaning Unit',ssUrlPrefix + 'Products/Production/HydraulicLift/PowerUnitandVesselCleaningUnit/ ','LeftNavTitle==Hydraulic Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_12_5=g_navNode_1_3_12.addNode('911','Jet Pumps',ssUrlPrefix + 'Products/Production/HydraulicLift/JetPumps/ ','LeftNavTitle==Hydraulic Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_12_6=g_navNode_1_3_12.addNode('912','Piston Pumps',ssUrlPrefix + 'Products/Production/HydraulicLift/PistonPumps/ ','LeftNavTitle==Hydraulic Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_12_7=g_navNode_1_3_12.addNode('913','Wellhead Control Valves',ssUrlPrefix + 'Products/Production/HydraulicLift/WellheadControlValves/ ','LeftNavTitle==Hydraulic Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_13=g_navNode_1_3.addNode('533','Pump and Fluid Systems',ssUrlPrefix + 'Products/Production/PumpandFluidSystems/ ','LeftNavTitle==Pump and Fluid Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_13_0=g_navNode_1_3_13.addNode('573','Kobe Triplex Pumps',ssUrlPrefix + 'Products/Production/PumpandFluidSystems/KobeTriplexPumps/ ','LeftNavTitle==Pump and Fluid Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_13_1=g_navNode_1_3_13.addNode('574','Horizontal Multiplex Pumps',ssUrlPrefix + 'Products/Production/PumpandFluidSystems/HorizontalMultiplexPumps/ ','LeftNavTitle==Pump and Fluid Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_13_2=g_navNode_1_3_13.addNode('575','Progressing Cavity Pumps',ssUrlPrefix + 'Products/Production/PumpandFluidSystems/ProgressingCavityPumps/ ','LeftNavTitle==Pump and Fluid Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_13_3=g_navNode_1_3_13.addNode('577','RamPump Multiphase Booster Pump',ssUrlPrefix + 'Products/Production/PumpandFluidSystems/RamPumpMultiphaseBoosterPump/ ','LeftNavTitle==Pump and Fluid Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_13_4=g_navNode_1_3_13.addNode('914','Ellis Williams Drilling Mud Pumps',ssUrlPrefix + 'Products/Production/PumpandFluidSystems/EllisWilliamsDrillingMudPumps/ ','LeftNavTitle==Pump and Fluid Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_13_5=g_navNode_1_3_13.addNode('578','MP Series Mud Pumps',ssUrlPrefix + 'Products/Production/PumpandFluidSystems/MPSeriesMudPumps/ ','LeftNavTitle==Pump and Fluid Systems','PageTitle==MP Series Mud Pumps','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_14=g_navNode_1_3.addNode('534','Injection Systems',ssUrlPrefix + 'Products/Production/InjectionSystems/ ','LeftNavTitle==Injection Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_14_0=g_navNode_1_3_14.addNode('915','Chem. Inj. Overview',ssUrlPrefix + 'Products/Production/InjectionSystems/Chem.Inj.Overview/ ','LeftNavTitle==Injection Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_14_1=g_navNode_1_3_14.addNode('916','Applications and Advantages',ssUrlPrefix + 'Products/Production/InjectionSystems/ApplicationsandAdvantages/ ','LeftNavTitle==Injection Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_14_2=g_navNode_1_3_14.addNode('917','Corrosion Monitoring Equipment',ssUrlPrefix + 'Products/Production/InjectionSystems/CorrosionMonitoringEquipment/ ','LeftNavTitle==Injection Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_14_3=g_navNode_1_3_14.addNode('918','Waterflood Overview',ssUrlPrefix + 'Products/Production/InjectionSystems/WaterfloodOverview/ ','LeftNavTitle==Injection Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_14_4=g_navNode_1_3_14.addNode('919','Regulators',ssUrlPrefix + 'Products/Production/InjectionSystems/Regulators/ ','LeftNavTitle==Injection Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_14_5=g_navNode_1_3_14.addNode('920','Duplex Regulators',ssUrlPrefix + 'Products/Production/InjectionSystems/DuplexRegulators/ ','LeftNavTitle==Injection Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_14_6=g_navNode_1_3_14.addNode('921','Side Pocket Mandrels',ssUrlPrefix + 'Products/Production/InjectionSystems/SidePocketMandrels/ ','LeftNavTitle==Injection Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_14_7=g_navNode_1_3_14.addNode('922','Duplex Side Pocket Mandrels',ssUrlPrefix + 'Products/Production/InjectionSystems/DuplexSidePocketMandrels/ ','LeftNavTitle==Injection Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_14_8=g_navNode_1_3_14.addNode('923','System Overview',ssUrlPrefix + 'Products/Production/InjectionSystems/SystemOverview/ ','LeftNavTitle==Injection Systems','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15=g_navNode_1_3.addNode('535','Pipeline \x26 Specialty Services',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/ ','PageDescription==Pipeline \x26 Specialty Services','PageTitle==Pipeline \x26 Specialty Services','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_0=g_navNode_1_3_15.addNode('924','Precommissioning and Commissioning',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/PrecommissioningandCommissioning/ ','PageTitle==Precommissioning and Commissioning','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_1=g_navNode_1_3_15.addNode('925','Subsea Precommissioning and Commissioning',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/SubseaPrecommissioningandCommissioning/ ','PageTitle==Subsea Precommissioning and Commissioning','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_2=g_navNode_1_3_15.addNode('926','Inspection\x3a SAAM Surveys',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/InspectionSAAMSurveys/ ','PageTitle==Inspection\x3a SAAM Surveys','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_3=g_navNode_1_3_15.addNode('927','Inspection\x3a Caliper',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/InspectionCaliper/ ','PageTitle==Inspection\x3a Caliper','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_4=g_navNode_1_3_15.addNode('928','Inspection\x3a UT/ Crack Detection',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/InspectionUTCrackDetection/ ','PageTitle==Inspection\x3a UT/ Crack Detection','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_5=g_navNode_1_3_15.addNode('929','Inspection\x3a MFL \x26 TFI',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/InspectionMFLTFI/ ','PageTitle==Inspection\x3a MFL \x26 TFI','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_6=g_navNode_1_3_15.addNode('930','Inspection\x3a UT/ Wall Measurement',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/InspectionUTWallMeasurement/ ','PageTitle==Inspection\x3a UT/ Wall Measurement','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_7=g_navNode_1_3_15.addNode('931','Pigging',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/Pigging/ ','PageTitle==Pigging','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_8=g_navNode_1_3_15.addNode('932','Abandonment',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/Abandonment/ ','PageTitle==Abandonment','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_9=g_navNode_1_3_15.addNode('933','Composite Sleeve Repairs',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/CompositeSleeveRepairs/ ','PageTitle==Composite Sleeve Repairs','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_10=g_navNode_1_3_15.addNode('934','Leak Detection',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/LeakDetection/ ','PageTitle==Leak Detection','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_11=g_navNode_1_3_15.addNode('935','Umbilical Testing',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/UmbilicalTesting/ ','PageTitle==Umbilical Testing','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_12=g_navNode_1_3_15.addNode('561','Nitrogen Services',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/NitrogenServices/ ','PageTitle==Nitrogen Services','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_13=g_navNode_1_3_15.addNode('936','Membrane Nitrogen',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/MembraneNitrogen/ ','PageTitle==Membrane Nitrogen','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_14=g_navNode_1_3_15.addNode('937','Cryogenic Nitrogen',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/CryogenicNitrogen/ ','PageTitle==Cryogenic Nitrogen','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_15=g_navNode_1_3_15.addNode('938','Sirocco Air Drying',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/SiroccoAirDrying/ ','PageTitle==Sirocco Air Drying','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_16=g_navNode_1_3_15.addNode('939','Leak Testing',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/LeakTesting/ ','PageTitle==Leak Testing','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_17=g_navNode_1_3_15.addNode('940','Controlled Bolting',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/ControlledBolting/ ','PageTitle==Controlled Bolting','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_18=g_navNode_1_3_15.addNode('941','Oil Flushing',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/OilFlushing/ ','PageTitle==Oil Flushing','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_19=g_navNode_1_3_15.addNode('942','Chemical Cleaning',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/ChemicalCleaning/ ','PageTitle==Chemical Cleaning ','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_20=g_navNode_1_3_15.addNode('943','Integrated Process Services',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/IntegratedProcessServices/ ','PageTitle==Integrated Process Services','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_15_21=g_navNode_1_3_15.addNode('944','Rental Solutions',ssUrlPrefix + 'Products/Production/PipelineSpecialtyServices/RentalSolutions/ ','PageTitle==Rental Solutions','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16=g_navNode_1_3.addNode('520','Plunger Lift',ssUrlPrefix + 'Products/Production/PlungerLift/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16_0=g_navNode_1_3_16.addNode('945','Plunger Lift System Overview',ssUrlPrefix + 'Products/Production/PlungerLift/PlungerLiftSystemOverview/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16_1=g_navNode_1_3_16.addNode('946','Plunger Lift System Applications',ssUrlPrefix + 'Products/Production/PlungerLift/PlungerLiftSystemApplications/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16_2=g_navNode_1_3_16.addNode('947','Plunger Lift System Advantages',ssUrlPrefix + 'Products/Production/PlungerLift/PlungerLiftSystemAdvantages/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16_3=g_navNode_1_3_16.addNode('948','Plunger Lift Optimization Systems',ssUrlPrefix + 'Products/Production/PlungerLift/PlungerLiftOptimizationSystems/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16_4=g_navNode_1_3_16.addNode('949','Brush Plungers',ssUrlPrefix + 'Products/Production/PlungerLift/BrushPlungers/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16_5=g_navNode_1_3_16.addNode('950','Spiral Plungers',ssUrlPrefix + 'Products/Production/PlungerLift/SpiralPlungers/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16_6=g_navNode_1_3_16.addNode('951','Combination Plungers',ssUrlPrefix + 'Products/Production/PlungerLift/CombinationPlungers/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16_7=g_navNode_1_3_16.addNode('952','T-Pad Plungers',ssUrlPrefix + 'Products/Production/PlungerLift/T-PadPlungers/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16_8=g_navNode_1_3_16.addNode('953','Bumper Springs',ssUrlPrefix + 'Products/Production/PlungerLift/BumperSprings/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16_9=g_navNode_1_3_16.addNode('954','Lubricators',ssUrlPrefix + 'Products/Production/PlungerLift/Lubricators/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16_10=g_navNode_1_3_16.addNode('955','Controllers',ssUrlPrefix + 'Products/Production/PlungerLift/Controllers/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16_11=g_navNode_1_3_16.addNode('956','Continuous-Flow Plungers',ssUrlPrefix + 'Products/Production/PlungerLift/Continuous-FlowPlungers/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_16_12=g_navNode_1_3_16.addNode('957','Accessories',ssUrlPrefix + 'Products/Production/PlungerLift/Accessories/ ','LeftNavTitle==Plunger Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17=g_navNode_1_3.addNode('525','Production Optimization',ssUrlPrefix + 'Products/Production/ProductionOptimization/ ','Keywords==production optimization','LeftNavTitle==Production Optimization','PageDescription==Production Optimization','PageTitle==Production Optimization','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_0=g_navNode_1_3_17.addNode('679','Artificial Lift Intelligence',ssUrlPrefix + 'Products/Production/ProductionOptimization/ArtificialLiftIntelligence/ ','LeftNavTitle==Production Optimization','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_1=g_navNode_1_3_17.addNode('675','Consulting Services',ssUrlPrefix + 'Products/Production/ProductionOptimization/ConsultingServices/ ','LeftNavTitle==Production Optimization','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_2=g_navNode_1_3_17.addNode('678','Training Overview',ssUrlPrefix + 'Products/Production/ProductionOptimization/TrainingOverview/ ','LeftNavTitle==Production Optimization','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_3=g_navNode_1_3_17.addNode('676','Client Support',ssUrlPrefix + 'Products/Production/ProductionOptimization/ClientSupport/ ','LeftNavTitle==Production Optimization','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4=g_navNode_1_3_17.addNode('677','Software',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/ ','Keywords==Software, Real-time, Production Optimization','LeftNavTitle==Production Optimization','PageDescription==Software Real-time Production Optimization','PageTitle==Software Real-time Production Optimization','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_0=g_navNode_1_3_17_4.addNode('1112','DynaLift\u2122 Software',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/DynaLiftSoftware/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_0_0=g_navNode_1_3_17_4_0.addNode('1128','Typical Applications',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/DynaLiftSoftware/TypicalApplications/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_0_1=g_navNode_1_3_17_4_0.addNode('1129','Key Technical Features',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/DynaLiftSoftware/KeyTechnicalFeatures/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_0_1_0=g_navNode_1_3_17_4_0_1.addNode('1130','Valve Performance Clearing House',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/DynaLiftSoftware/KeyTechnicalFeatures/ValvePerformanceClearingHouse/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_1=g_navNode_1_3_17_4.addNode('1113','LOWIS\u2122 Software',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/LOWISSoftware/index.htm','Keywords==LOWIS\u2122 Software','PageDescription==LOWIS\u2122 Software','PageTitle==LOWIS\u2122 Software','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_2=g_navNode_1_3_17_4.addNode('1114','PanMesh\u2122 Software',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/PanMeshSoftware/index.htm','Keywords==PanMesh\u2122 Software ','PageDescription==PanMesh\u2122 Software ','PageTitle==PanMesh\u2122 Software ','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_2_0=g_navNode_1_3_17_4_2.addNode('1166','Typical Applications',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/PanMeshSoftware/TypicalApplications/index.htm','Keywords==PanMesh\u2122 Software Typical Appplications','PageDescription==PanMesh\u2122 Software Typical Applications','PageTitle==PanMesh\u2122 Software Typical Applications','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_2_1=g_navNode_1_3_17_4_2.addNode('1167','Key Technical Features',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/PanMeshSoftware/KeyTechnicalFeatures/index.htm','Keywords==PanMesh\u2122 Software ','PageDescription==PanMesh\u2122 Software Technical Features','PageTitle==PanMesh\u2122 Software Technical Features','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_2_2=g_navNode_1_3_17_4_2.addNode('1168','Benefits',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/PanMeshSoftware/Benefits/index.htm','PageDescription==PanMesh\u2122 Software Benefits','PageTitle==PanMesh\u2122 Software Benefits','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_3=g_navNode_1_3_17_4.addNode('1115','PanSystem\u2122 Software ',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/PanSystemSoftware/index.htm','Keywords==PanSystem\u2122 Software  ','PageDescription==PanSystem\u2122 Software  ','PageTitle==PanSystem\u2122 Software  ','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_3_0=g_navNode_1_3_17_4_3.addNode('1131','Typical Applications',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/PanSystemSoftware/TypicalApplications/index.htm','Keywords==PanSystem\u2122 Software  Applications','PageDescription==PanSystem\u2122 Software  Applications','PageTitle==PanSystem\u2122 Software  Applications','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_3_1=g_navNode_1_3_17_4_3.addNode('1132','Technical Features',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/PanSystemSoftware/TechnicalFeatures/index.htm','Keywords==PanSystem\u2122 Software  Technical Features','PageDescription==PanSystem\u2122 Software  Techincal Features','PageTitle==PanSystem\u2122 Software  Technical Features','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_4=g_navNode_1_3_17_4.addNode('1116','WellFlo\u2122 Software',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/WellFloSoftware/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_4_0=g_navNode_1_3_17_4_4.addNode('1169','Applications',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/WellFloSoftware/Applications/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_4_0_0=g_navNode_1_3_17_4_4_0.addNode('1172','Detailed reservoir inflow performance modeling',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/WellFloSoftware/Applications/Detailedreservoirinflowperformancemodeling/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_4_0_1=g_navNode_1_3_17_4_4_0.addNode('1173','Detailed fluid PVT modeling',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/WellFloSoftware/Applications/DetailedfluidPVTmodeling/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_4_0_1_0=g_navNode_1_3_17_4_4_0_1.addNode('1177','Pseudo-Pressure File Generator',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/WellFloSoftware/Applications/DetailedfluidPVTmodeling/Pseudo-PressureFileGenerator/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_4_0_2=g_navNode_1_3_17_4_4_0.addNode('1174','Pressure traverse and temperature calculations',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/WellFloSoftware/Applications/Pressuretraverseandtemperaturecalculations/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_4_0_3=g_navNode_1_3_17_4_4_0.addNode('1175','Gas Lift Design and Optimization',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/WellFloSoftware/Applications/GasLiftDesignandOptimization/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_4_0_4=g_navNode_1_3_17_4_4_0.addNode('1176','Electric Submersible Pump \x28ESP\x29 Design and Analysis',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/WellFloSoftware/Applications/ElectricSubmersiblePumpESPDesignandAnalysis/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_4_1=g_navNode_1_3_17_4_4.addNode('1170','Reporting Capabilities',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/WellFloSoftware/ReportingCapabilities/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_4_2=g_navNode_1_3_17_4_4.addNode('1171','New in Version 4.0',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/WellFloSoftware/NewinVersion4.0/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_4_2_0=g_navNode_1_3_17_4_4_2.addNode('1178','Tuning of inflow ',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/WellFloSoftware/NewinVersion4.0/Tuningofinflow/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_5=g_navNode_1_3_17_4.addNode('1117','WellSavvy\u2122 Software',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/WellSavvy\u2122Software/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_6=g_navNode_1_3_17_4.addNode('1118','Verge\u2122 Software',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/VergeSoftware/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_6_0=g_navNode_1_3_17_4_6.addNode('1181','Applications \x26 Features',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/VergeSoftware/ApplicationsFeatures/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_6_1=g_navNode_1_3_17_4_6.addNode('1182','Specifications',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/VergeSoftware/Specifications/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_7=g_navNode_1_3_17_4.addNode('1119','ReO\u2122 Software',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/ReOSoftware/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_7_0=g_navNode_1_3_17_4_7.addNode('1183','Applications',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/ReOSoftware/Applications/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_7_1=g_navNode_1_3_17_4_7.addNode('1184','Key Features',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/ReOSoftware/KeyFeatures/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_7_2=g_navNode_1_3_17_4_7.addNode('1185','Software Architecture',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/ReOSoftware/SoftwareArchitecture/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_8=g_navNode_1_3_17_4.addNode('1120','MatBal\u2122 Software',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/MatBalSoftware/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_8_0=g_navNode_1_3_17_4_8.addNode('1186','Why MatBal?',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/MatBalSoftware/WhyMatBal/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_8_1=g_navNode_1_3_17_4_8.addNode('1187','Applications',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/MatBalSoftware/Applications/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_8_2=g_navNode_1_3_17_4_8.addNode('1188','Features',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/MatBalSoftware/Features/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_9=g_navNode_1_3_17_4.addNode('1121','iDo\u2122 Software',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/iDoSoftware/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_9_0=g_navNode_1_3_17_4_9.addNode('1189','Aim-Gain-Sustain',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/iDoSoftware/AimGainSustain/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_10=g_navNode_1_3_17_4.addNode('1122','ReO Forecast\u2122 Software',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/ReOForecastSoftware/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_10_0=g_navNode_1_3_17_4_10.addNode('1190','Applications',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/ReOForecastSoftware/Applications/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_10_1=g_navNode_1_3_17_4_10.addNode('1191','Features',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/ReOForecastSoftware/Features/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_11=g_navNode_1_3_17_4.addNode('1123','Verge\u2122 Software',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/VergeSoftware/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_12=g_navNode_1_3_17_4.addNode('1124','LiftAdvisor\u2122',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/LiftAdvisor/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_12_0=g_navNode_1_3_17_4_12.addNode('1192','Advantages and Benefits',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/LiftAdvisor/AdvantagesandBenefits/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_12_1=g_navNode_1_3_17_4_12.addNode('1193','Analysis Services',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/LiftAdvisor/AnalysisServices/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_12_1_0=g_navNode_1_3_17_4_12_1.addNode('1195','Standard Analysis Report',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/LiftAdvisor/AnalysisServices/StandardAnalysisReport/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_12_1_1=g_navNode_1_3_17_4_12_1.addNode('1196','Detailed Analysis Report',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/LiftAdvisor/AnalysisServices/DetailedAnalysisReport/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_12_2=g_navNode_1_3_17_4_12.addNode('1194','Web-based Well Surveillance',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/LiftAdvisor/WebbasedWellSurveillance/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_12_2_0=g_navNode_1_3_17_4_12_2.addNode('1199','Weekly Snap Shot Report',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/LiftAdvisor/WebbasedWellSurveillance/WeeklySnapShotReport/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_13=g_navNode_1_3_17_4.addNode('1125','Field Office ',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/FieldOffice/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_13_0=g_navNode_1_3_17_4_13.addNode('1126','Benefits',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/FieldOffice/Benefits/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_17_4_13_1=g_navNode_1_3_17_4_13.addNode('1127','Field Proven Results',ssUrlPrefix + 'Products/Production/ProductionOptimization/Software/FieldOffice/FieldProvenResults/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_18=g_navNode_1_3.addNode('521','Progressing Cavity Pumping',ssUrlPrefix + 'Products/Production/ProgressingCavityPumping/ ','LeftNavTitle==Progressing Cavity Pumping','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_18_0=g_navNode_1_3_18.addNode('958','PCP Systems Overview',ssUrlPrefix + 'Products/Production/ProgressingCavityPumping/PCPSystemsOverview/ ','LeftNavTitle==Progressing Cavity Pumping','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_18_1=g_navNode_1_3_18.addNode('667','PCP System Advantages',ssUrlPrefix + 'Products/Production/ProgressingCavityPumping/PCPSystemAdvantages/ ','LeftNavTitle==Progressing Cavity Pumping','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_18_2=g_navNode_1_3_18.addNode('668','PCP Optimization Systems',ssUrlPrefix + 'Products/Production/ProgressingCavityPumping/PCPOptimizationSystems/ ','LeftNavTitle==Progressing Cavity Pumping','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_18_3=g_navNode_1_3_18.addNode('669','PCP Systems Applications',ssUrlPrefix + 'Products/Production/ProgressingCavityPumping/PCPSystemsApplications/ ','LeftNavTitle==Progressing Cavity Pumping','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_18_4=g_navNode_1_3_18.addNode('670','Downhole Pumps',ssUrlPrefix + 'Products/Production/ProgressingCavityPumping/DownholePumps/ ','LeftNavTitle==Progressing Cavity Pumping','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_18_5=g_navNode_1_3_18.addNode('671','Elastomer Technology',ssUrlPrefix + 'Products/Production/ProgressingCavityPumping/ElastomerTechnology/ ','LeftNavTitle==Progressing Cavity Pumping','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_18_6=g_navNode_1_3_18.addNode('672','Surface Drives',ssUrlPrefix + 'Products/Production/ProgressingCavityPumping/SurfaceDrives/ ','LeftNavTitle==Progressing Cavity Pumping','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_18_7=g_navNode_1_3_18.addNode('1092','Horizontal PC Pumps',ssUrlPrefix + 'Products/Production/ProgressingCavityPumping/HorizontalPCPumps/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_18_8=g_navNode_1_3_18.addNode('674','Hydraulic Drives',ssUrlPrefix + 'Products/Production/ProgressingCavityPumping/HydraulicDrives/ ','LeftNavTitle==Progressing Cavity Pumping','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19=g_navNode_1_3.addNode('522','Reciprocating Rod Lift',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_0=g_navNode_1_3_19.addNode('652','Overview',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/Overview/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_1=g_navNode_1_3_19.addNode('653','Applications',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/Applications/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_2=g_navNode_1_3_19.addNode('654','Advantages',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/Advantages/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_3=g_navNode_1_3_19.addNode('655','Ampscot Pumping Units',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/AmpscotPumpingUnits/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_4=g_navNode_1_3_19.addNode('657','Long-Stroke Units',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/Long-StrokeUnits/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_5=g_navNode_1_3_19.addNode('656','Maximizer Pumping Units',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/MaximizerPumpingUnits/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_6=g_navNode_1_3_19.addNode('959','Low-Profile Units',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/Low-ProfileUnits/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_7=g_navNode_1_3_19.addNode('658','Nitrogen-Over-Hydraulic Units',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/Nitrogen-Over-HydraulicUnits/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_8=g_navNode_1_3_19.addNode('659','Service and Repair',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/ServiceandRepair/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_9=g_navNode_1_3_19.addNode('660','Refurbished Equipment',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RefurbishedEquipment/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_10=g_navNode_1_3_19.addNode('661','Rod Pumps',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumps/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_11=g_navNode_1_3_19.addNode('662','Rod Pump Controllers',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumpControllers/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_11_0=g_navNode_1_3_19_11.addNode('1145','ePIC Rod-Pump Controller',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumpControllers/ePICRod-PumpController/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_11_1=g_navNode_1_3_19_11.addNode('1146','2000 Rod-Pump Controller',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumpControllers/2000Rod-PumpController/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_11_2=g_navNode_1_3_19_11.addNode('1147','8800 Rod-Pump Controller',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumpControllers/8800Rod-PumpController/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_11_3=g_navNode_1_3_19_11.addNode('1148','Stainless-Steel Polished-Rod Load Cell',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumpControllers/Stainless-SteelPolished-RodLoadCell/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_11_4=g_navNode_1_3_19_11.addNode('1149','Clamp-On Beam-Load Transducer',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumpControllers/Clamp-OnBeam-LoadTransducer/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_11_5=g_navNode_1_3_19_11.addNode('1150','Qualitative Clamp-On Load Transducer',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumpControllers/QualitativeClamp-OnLoadTransducer/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_11_6=g_navNode_1_3_19_11.addNode('1151','Dual-Position Sensor',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumpControllers/Dual-PositionSensor/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_11_7=g_navNode_1_3_19_11.addNode('1152','Oilfield Inclinometer',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumpControllers/OilfieldInclinometer/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_11_8=g_navNode_1_3_19_11.addNode('1153','OPC Server',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumpControllers/OPCServer/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_11_9=g_navNode_1_3_19_11.addNode('1154','Automatic Control Logic',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumpControllers/AutomaticControlLogic/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_11_10=g_navNode_1_3_19_11.addNode('1155','Configuration Manager',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumpControllers/ConfigurationManager/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_11_11=g_navNode_1_3_19_11.addNode('1156','109 Frequency Shift Keying \x28FSK\x29',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/RodPumpControllers/109FrequencyShiftKeyingFSK/index.htm');
g_navNode_1_3_19_12=g_navNode_1_3_19.addNode('663','Downhole Pressure and Temperature Sensors',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/DownholePressureandTemperatureSensors/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_13=g_navNode_1_3_19.addNode('664','Analysis Software',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/AnalysisSoftware/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_13_0=g_navNode_1_3_19_13.addNode('1107','Latching Solenoid Valve Assembly',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/AnalysisSoftware/LatchingSolenoidValveAssembly/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_13_1=g_navNode_1_3_19_13.addNode('1108','LOWIS\u2122 Software System',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/AnalysisSoftware/LOWISSoftwareSystem/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_13_2=g_navNode_1_3_19_13.addNode('1109','Rod-Pumping Software',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/AnalysisSoftware/Rod-PumpingSoftware/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_19_14=g_navNode_1_3_19.addNode('665','Variable Speed Drives',ssUrlPrefix + 'Products/Production/ReciprocatingRodLift/VariableSpeedDrives/ ','LeftNavTitle==Reciprocating Rod Lift','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_20=g_navNode_1_3.addNode('536','Reservoir Monitoring',ssUrlPrefix + 'Products/Production/ReservoirMonitoring/ ','LeftNavTitle==Reservoir Monitoring','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_20_0=g_navNode_1_3_20.addNode('526','Optical Sensing Systems',ssUrlPrefix + 'Products/Production/ReservoirMonitoring/OpticalSensingSystems/ ','LeftNavTitle==Reservoir Monitoring','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_20_1=g_navNode_1_3_20.addNode('838','Downhole Flowmeters',ssUrlPrefix + 'Products/Production/ReservoirMonitoring/Downhole Flowmeters/ ','LeftNavTitle==Reservoir Monitoring','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_20_2=g_navNode_1_3_20.addNode('837','Pressure/Temperature Sensing',ssUrlPrefix + 'Products/Production/ReservoirMonitoring/PressureTemperatureSensing/ ','LeftNavTitle==Reservoir Monitoring','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_20_2_0=g_navNode_1_3_20_2.addNode('1204','Optical sensing systems',ssUrlPrefix + 'Products/Production/ReservoirMonitoring/PressureTemperatureSensing/Opticalsensingsystems/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_20_2_1=g_navNode_1_3_20_2.addNode('1205','Electronic SOI-type gauges ',ssUrlPrefix + 'Products/Production/ReservoirMonitoring/PressureTemperatureSensing/ElectronicSOI-typegauges/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_20_2_2=g_navNode_1_3_20_2.addNode('1206','Quartz gauges',ssUrlPrefix + 'Products/Production/ReservoirMonitoring/PressureTemperatureSensing/Quartzgauges/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_20_3=g_navNode_1_3_20.addNode('836','Distributed Temperature Sensing',ssUrlPrefix + 'Products/Production/ReservoirMonitoring/DistributedTemperatureSensing/ ','LeftNavTitle==Reservoir Monitoring','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_20_4=g_navNode_1_3_20.addNode('835','Seismic Monitoring Systems',ssUrlPrefix + 'Products/Production/ReservoirMonitoring/SeismicMonitoringSystems/ ','LeftNavTitle==Reservoir Monitoring','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_21=g_navNode_1_3.addNode('523','Sucker Rods',ssUrlPrefix + 'Products/Production/SuckerRods/ ','LeftNavTitle==Sucker Rods','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_21_0=g_navNode_1_3_21.addNode('647','API Normalized Sucker Rods',ssUrlPrefix + 'Products/Production/SuckerRods/APINormalizedSuckerRods/ ','LeftNavTitle==Sucker Rods','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_21_1=g_navNode_1_3_21.addNode('648','API Quenched and Tempered Sucker Rods',ssUrlPrefix + 'Products/Production/SuckerRods/APIQuenchedandTemperedSuckerRods/ ','LeftNavTitle==Sucker Rods','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_21_2=g_navNode_1_3_21.addNode('649','Normalized High-Strength Rods',ssUrlPrefix + 'Products/Production/SuckerRods/NormalizedHigh-StrengthRods/ ','LeftNavTitle==Sucker Rods','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_21_3=g_navNode_1_3_21.addNode('650','Quenched and Tempered High-Strength Rods',ssUrlPrefix + 'Products/Production/SuckerRods/QuenchedandTemperedHigh-StrengthRods/ ','LeftNavTitle==Sucker Rods','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_21_4=g_navNode_1_3_21.addNode('651','Ultra High-Strength Rods',ssUrlPrefix + 'Products/Production/SuckerRods/UltraHigh-StrengthRods/ ','LeftNavTitle==Sucker Rods','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_21_5=g_navNode_1_3_21.addNode('646','Couplings',ssUrlPrefix + 'Products/Production/SuckerRods/Couplings/ ','LeftNavTitle==Sucker Rods','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_22=g_navNode_1_3.addNode('709','Surface Horizontal Pumping',ssUrlPrefix + 'Products/Production/SurfaceHorizontalPumping/ ','Keywords==Surface Horizontal Pumping System ,\x28HPS\x29, fluid movement applications','PageDescription==Weatherford\u2019s Surface Horizontal Pumping System \x28HPS\x29 provides specific solutions to a wide range of fluid movement applications.','PageTitle==Surface Horizontal Pumping','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23=g_navNode_1_3.addNode('1225','Coiled Tubing Technology',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/CoiledTubingTechnology','Keywords==coiled-tubing services,Cleanouts, Gas lifts, Acidizing, Velocity strings, Well kill, Wellbore cleaning, Drilling/milling, Fishing, E-line logging, Sand, jetting, Thru-tubing packers, Underbalanced vertical deepening','PageDescription==Providing a complete portfolio of coiled-tubing services to maximize economy, efficiency and results, our portfolio of coiled-tubing services includes conventional small-diameter and specialized large-diameter conveyance.','PageTitle==Coiled Tubing Technology','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_0=g_navNode_1_3_23.addNode('1247','CT Drilling',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/CTDrilling/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_1=g_navNode_1_3_23.addNode('1248','CT Intervention',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/CTIntervention/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_2=g_navNode_1_3_23.addNode('1249','CT Completion',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/CTCompletion/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_3=g_navNode_1_3_23.addNode('1250','CT Production',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/CTProduction/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_4=g_navNode_1_3_23.addNode('1234','CT Nitrogen',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/Nitrogen/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_5=g_navNode_1_3_23.addNode('1235','Data Acquisition',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/DataAcquisition/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_6=g_navNode_1_3_23.addNode('1236','Skid Units',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/SkidUnits/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_7=g_navNode_1_3_23.addNode('1237','Trailer Units',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/TrailerUnits/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_8=g_navNode_1_3_23.addNode('1238','Single-fluid Pumper',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/Single-fluidPumper/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_9=g_navNode_1_3_23.addNode('1239','Duel-fluid Pumper',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/Duel-fluidPumper/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_10=g_navNode_1_3_23.addNode('1240','Combo N2 \x26 Fluid Unit ',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/ComboN2FluidUnit/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_11=g_navNode_1_3_23.addNode('1241','50-Ton Crane',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/50-TonCrane/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_12=g_navNode_1_3_23.addNode('1242','N2 Transport ',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/N2Transport/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_13=g_navNode_1_3_23.addNode('1244','Direct-Fire Pumper',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/Direct-FirePumper/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_23_14=g_navNode_1_3_23.addNode('1245','Heat Recovery Unit',ssUrlPrefix + 'Products/Production/CoiledTubingTechnology/HeatRecoveryUnit/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_3_24=g_navNode_1_3.addNode('645','COROD Product Overview',ssUrlPrefix + 'Products/Production/CORODProductOverview/ ','Keywords==Corod\xae Continuous Sucker Rod','LeftNavTitle==Sucker Rods','PageDescription==Corod\xae Continuous Sucker Rod','PageTitle==COROD Product Overview','TopNavTitle==Production','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Production\x60');
g_navNode_1_4=g_navNode_1.addNode('539','Intervention',ssUrlPrefix + 'Products/Intervention/ ','Keywords==intervention services','PageDescription==Our intervention services help remediate wells that have mechanical or formation problems. We help prolong the life of these wells by providing systems to extend production or access and to retrieve remaining or \u201cstranded\u201d oil and natural gas reserves.','PageTitle==Intervention','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0=g_navNode_1_4.addNode('540','Fishing Services',ssUrlPrefix + 'Products/Intervention/FishingServices/ ','LeftNavTitle==Fishing Services','PageTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_0=g_navNode_1_4_0.addNode('1033','Abandonment Services',ssUrlPrefix + 'Products/Intervention/FishingServices/AbandonmentServices/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_1=g_navNode_1_4_0.addNode('1034','Back-Off Tools',ssUrlPrefix + 'Products/Intervention/FishingServices/Back-OffTools/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_2=g_navNode_1_4_0.addNode('1035','Bumper Subs',ssUrlPrefix + 'Products/Intervention/FishingServices/BumperSubs/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_3=g_navNode_1_4_0.addNode('1036','Bushings',ssUrlPrefix + 'Products/Intervention/FishingServices/Bushings/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_4=g_navNode_1_4_0.addNode('1038','Casing Jacks',ssUrlPrefix + 'Products/Intervention/FishingServices/CasingJacks/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_5=g_navNode_1_4_0.addNode('1039','Casing Scrapers',ssUrlPrefix + 'Products/Intervention/FishingServices/CasingScrapers/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_6=g_navNode_1_4_0.addNode('1040','Cutters',ssUrlPrefix + 'Products/Intervention/FishingServices/Cutters/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_7=g_navNode_1_4_0.addNode('1041','External Catch Tools',ssUrlPrefix + 'Products/Intervention/FishingServices/ExternalCatchTools/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_8=g_navNode_1_4_0.addNode('1042','Impression Blocks',ssUrlPrefix + 'Products/Intervention/FishingServices/ImpressionBlocks/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_9=g_navNode_1_4_0.addNode('1043','Intensifiers',ssUrlPrefix + 'Products/Intervention/FishingServices/Intensifiers/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_10=g_navNode_1_4_0.addNode('1044','Internal Catch Tools',ssUrlPrefix + 'Products/Intervention/FishingServices/InternalCatchTools/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_11=g_navNode_1_4_0.addNode('1045','Jars',ssUrlPrefix + 'Products/Intervention/FishingServices/Jars/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_12=g_navNode_1_4_0.addNode('1046','Joints',ssUrlPrefix + 'Products/Intervention/FishingServices/Joints/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_13=g_navNode_1_4_0.addNode('1047','Junk Baskets',ssUrlPrefix + 'Products/Intervention/FishingServices/JunkBaskets/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_14=g_navNode_1_4_0.addNode('1048','Magnets',ssUrlPrefix + 'Products/Intervention/FishingServices/Magnets/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_15=g_navNode_1_4_0.addNode('1049','Mills',ssUrlPrefix + 'Products/Intervention/FishingServices/Mills/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_16=g_navNode_1_4_0.addNode('1050','Pulling Tools',ssUrlPrefix + 'Products/Intervention/FishingServices/PullingTools/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_17=g_navNode_1_4_0.addNode('1051','Stabilizers',ssUrlPrefix + 'Products/Intervention/FishingServices/Stabilizers/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_18=g_navNode_1_4_0.addNode('1052','Subs',ssUrlPrefix + 'Products/Intervention/FishingServices/Subs/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_19=g_navNode_1_4_0.addNode('1053','Subsidence Tools',ssUrlPrefix + 'Products/Intervention/FishingServices/SubsidenceTools/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_20=g_navNode_1_4_0.addNode('1054','Swivels',ssUrlPrefix + 'Products/Intervention/FishingServices/Swivels/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_21=g_navNode_1_4_0.addNode('1055','Underreamer',ssUrlPrefix + 'Products/Intervention/FishingServices/Underreamer/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_22=g_navNode_1_4_0.addNode('1056','Washover Equipment',ssUrlPrefix + 'Products/Intervention/FishingServices/WashoverEquipment/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_23=g_navNode_1_4_0.addNode('1057','Well Repair',ssUrlPrefix + 'Products/Intervention/FishingServices/WellRepair/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_24=g_navNode_1_4_0.addNode('1058','Wireline Stripping',ssUrlPrefix + 'Products/Intervention/FishingServices/WirelineStripping/ ','LeftNavTitle==Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_0_25=g_navNode_1_4_0.addNode('1059','Wireline Services',ssUrlPrefix + 'Products/Intervention/FishingServices/WirelineServices/ ','LeftNavTitle==Fishing Services','PageTitle==Wireline Fishing Services','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_1=g_navNode_1_4.addNode('546','Multilateral Systems',ssUrlPrefix + 'Products/Intervention/MultilateralSystems/ ','Keywords==Multilateral Systems','LeftNavTitle==Multilateral Systems','PageTitle==Multilateral Systems','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_1_0=g_navNode_1_4_1.addNode('1029','Selective Re-entry',ssUrlPrefix + 'Products/Intervention/MultilateralSystems/SelectiveRe-entry/ ','LeftNavTitle==Multilateral Systems','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_1_0_0=g_navNode_1_4_1_0.addNode('1110','Cased-Hole Selective Re-Entry System',ssUrlPrefix + 'Products/Intervention/MultilateralSystems/SelectiveRe-entry/Cased-HoleSelectiveRe-EntrySystem/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_1_0_1=g_navNode_1_4_1_0.addNode('1111','Open-Hole Selective Re-Entry System',ssUrlPrefix + 'Products/Intervention/MultilateralSystems/SelectiveRe-entry/Open-HoleSelectiveRe-EntrySystem/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_1_1=g_navNode_1_4_1.addNode('1030','MillThru Systems',ssUrlPrefix + 'Products/Intervention/MultilateralSystems/MillThruSystems/ ','LeftNavTitle==Multilateral Systems','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_1_2=g_navNode_1_4_1.addNode('1031','StarBurst Systems',ssUrlPrefix + 'Products/Intervention/MultilateralSystems/StarBurstSystems/ ','LeftNavTitle==Multilateral Systems','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_1_2_0=g_navNode_1_4_1_2.addNode('1157','3 1/2-in. and 4 1/2-in. StarBurst Systems',ssUrlPrefix + 'Products/Intervention/MultilateralSystems/StarBurstSystems/312-in.and412-in.StarBurstSystems/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_1_2_1=g_navNode_1_4_1_2.addNode('1158','5 1/2-in. StarBurst System',ssUrlPrefix + 'Products/Intervention/MultilateralSystems/StarBurstSystems/512-in.StarBurstSystem/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_1_2_2=g_navNode_1_4_1_2.addNode('1159','7 in. StarBurst System',ssUrlPrefix + 'Products/Intervention/MultilateralSystems/StarBurstSystems/7in.StarBurstSystem/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_1_2_3=g_navNode_1_4_1_2.addNode('1160','9 5/8-in. StarBurst System',ssUrlPrefix + 'Products/Intervention/MultilateralSystems/StarBurstSystems/958-in.StarBurstSystem/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_1_3=g_navNode_1_4_1.addNode('1032','OneTrip StarBurst System',ssUrlPrefix + 'Products/Intervention/MultilateralSystems/OneTripStarBurstSystem/ ','LeftNavTitle==Multilateral Systems','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_2=g_navNode_1_4.addNode('547','Casing Exits',ssUrlPrefix + 'Products/Intervention/CasingExits/ ','Keywords==Casing Exits','LeftNavTitle==Casing Exits','PageDescription==Casing Exits','PageTitle==Casing Exits','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_2_0=g_navNode_1_4_2.addNode('1060','QuickCut',ssUrlPrefix + 'Products/Intervention/CasingExits/QuickCut/ ','LeftNavTitle==Casing Exits','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_2_1=g_navNode_1_4_2.addNode('1061','ShallowAngle QuickCut',ssUrlPrefix + 'Products/Intervention/CasingExits/ShallowAngleQuickCut/ ','LeftNavTitle==Casing Exits','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_2_2=g_navNode_1_4_2.addNode('1062','Whipback Conventional',ssUrlPrefix + 'Products/Intervention/CasingExits/WhipbackConventional/ ','LeftNavTitle==Casing Exits','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_2_3=g_navNode_1_4_2.addNode('1063','PackWhip Systems',ssUrlPrefix + 'Products/Intervention/CasingExits/PackWhipSystems/ ','LeftNavTitle==Casing Exits','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_2_4=g_navNode_1_4_2.addNode('1064','Openhole Whipstocks',ssUrlPrefix + 'Products/Intervention/CasingExits/OpenholeWhipstocks/ ','LeftNavTitle==Casing Exits','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_2_5=g_navNode_1_4_2.addNode('1065','Hinge-Style Whipstocks',ssUrlPrefix + 'Products/Intervention/CasingExits/Hinge-StyleWhipstocks/ ','LeftNavTitle==Casing Exits','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_3=g_navNode_1_4.addNode('548','Casing/Tubing Evaluation',ssUrlPrefix + 'Products/Intervention/CasingTubingEvaluation/ ','Keywords==Casing/Tubing Evaluation','LeftNavTitle==Casing/Tubing Evaluation','PageTitle==Casing/Tubing Evaluation','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_4=g_navNode_1_4.addNode('550','Production Logging',ssUrlPrefix + 'Products/Intervention/ProductionLogging/ ','Keywords==Production Logging','LeftNavTitle==Production Logging','PageTitle==Production Logging','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5=g_navNode_1_4.addNode('543','Thru-Tubing Fishing / Milling',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/ ','Keywords==Thru-Tubing Fishing / Milling','LeftNavTitle==Thru-Tubing Fishing / Milling','PageTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_0=g_navNode_1_4_5.addNode('1013','Motor-Assisted Overview',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/Motor-AssistedOverview/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_1=g_navNode_1_4_5.addNode('1014','Underreaming Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/UnderreamingOperations/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_2=g_navNode_1_4_5.addNode('1015','Scale and Cement Milling Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/ScaleandCementMillingOperations/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_3=g_navNode_1_4_5.addNode('1016','Composite Plug Removal Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/CompositePlugRemovalOperations/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_4=g_navNode_1_4_5.addNode('1017','Underbalanced and High-Temperature Milling Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/UnderbalancedandHigh-TemperatureMillingOperations/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_5=g_navNode_1_4_5.addNode('1018','Fish Removal/Burn-Over Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/FishRemovalBurn-OverOperations/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_6=g_navNode_1_4_5.addNode('1019','Tubing Cutting Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/TubingCuttingOperations/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_7=g_navNode_1_4_5.addNode('1020','Nipple Profile Milling Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/NippleProfileMillingOperations/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_8=g_navNode_1_4_5.addNode('1021','High-Pressure Washing Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/High-PressureWashingOperations/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_9=g_navNode_1_4_5.addNode('1022','Fishing Overview',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/FishingOverview/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_10=g_navNode_1_4_5.addNode('1023','Tubing and Casing Cutting Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/TubingandCasingCuttingOperations/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_11=g_navNode_1_4_5.addNode('1024','External- and Internal-Profile Fishing Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/External-andInternal-ProfileFishingOperations/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_12=g_navNode_1_4_5.addNode('1025','Coiled-Tubing Fishing Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/Coiled-TubingFishingOperations/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_13=g_navNode_1_4_5.addNode('1026','Jarring and Fish Removal Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/JarringandFishRemovalOperations/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_14=g_navNode_1_4_5.addNode('1027','Hammering Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/HammeringOperations/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_5_15=g_navNode_1_4_5.addNode('1028','Product Information',ssUrlPrefix + 'Products/Intervention/ThruTubingFishingandMilling/ProductInformation/ ','LeftNavTitle==Thru-Tubing Fishing / Milling','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_6=g_navNode_1_4.addNode('542','Thru-Tubing Casing Exits',ssUrlPrefix + 'Products/Intervention/ThruTubingCasingExits/ ','Keywords==Thru-Tubing Casing Exits','PageTitle==Thru-Tubing Casing Exits','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_6_0=g_navNode_1_4_6.addNode('1009','Casing Exit Overview',ssUrlPrefix + 'Products/Intervention/ThruTubingCasingExits/CasingExitOverview/ ','LeftNavTitle==Thru-Tubing Casing Exits','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_6_1=g_navNode_1_4_6.addNode('1010','Monobore Casing Exit',ssUrlPrefix + 'Products/Intervention/ThruTubingCasingExits/MonoboreCasingExit/ ','LeftNavTitle==Thru-Tubing Casing Exits','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_6_2=g_navNode_1_4_6.addNode('1011','Thru-Tubing Casing Exit',ssUrlPrefix + 'Products/Intervention/ThruTubingCasingExits/Thru-TubingCasingExit/ ','LeftNavTitle==Thru-Tubing Casing Exits','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_6_3=g_navNode_1_4_6.addNode('1012','Product Information',ssUrlPrefix + 'Products/Intervention/ThruTubingCasingExits/ProductInformation/ ','LeftNavTitle==Thru-Tubing Casing Exits','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7=g_navNode_1_4.addNode('544','Thru-Tubing Packers',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/ ','Keywords==Thru-Tubing Packers','LeftNavTitle==Thru-Tubing Packers','PageTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_0=g_navNode_1_4_7.addNode('986','In-Tubing Remedial Overview',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/In-TubingRemedialOverview/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_1=g_navNode_1_4_7.addNode('987','Selective Acidizing and Tubing Testing Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/SelectiveAcidizingandTubingTestingOperations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_2=g_navNode_1_4_7.addNode('988','Selective Straddle Acidizing, Water Shut-Off and Fracturing Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/SelectiveStraddleAcidizingWaterShut-OffandFracturingOperations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_3=g_navNode_1_4_7.addNode('989','Cement Squeeze Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/CementSqueezeOperations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_4=g_navNode_1_4_7.addNode('990','Plug-Back Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/Plug-BackOperations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_5=g_navNode_1_4_7.addNode('991','In-Tubing Completion Overview',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/In-TubingCompletionOverview/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_6=g_navNode_1_4_7.addNode('992','Velocity String Installations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/VelocityStringInstallations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_7=g_navNode_1_4_7.addNode('993','Tubing Patch Installations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/TubingPatchInstallations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_8=g_navNode_1_4_7.addNode('994','Safety Valve Installations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/SafetyValveInstallations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_9=g_navNode_1_4_7.addNode('995','Gas Lift Valve Installations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/GasLiftValveInstallations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_10=g_navNode_1_4_7.addNode('996','Jet Pump Installations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/JetPumpInstallations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_11=g_navNode_1_4_7.addNode('997','Sand Control Overview',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/SandControlOverview/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_12=g_navNode_1_4_7.addNode('998','Squeeze and Circulating Pack Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/SqueezeandCirculatingPackOperations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_13=g_navNode_1_4_7.addNode('999','Sand Screen Hang-Off Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/SandScreenHang-OffOperations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_14=g_navNode_1_4_7.addNode('1000','Washdown Gravel-Pack Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/WashdownGravel-PackOperations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_15=g_navNode_1_4_7.addNode('1001','Thru-Tubing Remedial Overview',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/Thru-TubingRemedialOverview/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_16=g_navNode_1_4_7.addNode('1002','Selective Acidizing, Testing and Water Shut-Off Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/SelectiveAcidizingTestingandWaterShut-OffOperations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_17=g_navNode_1_4_7.addNode('1003','Cement Squeeze Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/CementSqueezeOperations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_18=g_navNode_1_4_7.addNode('1004','Plug-Back Operations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/Plug-BackOperations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_19=g_navNode_1_4_7.addNode('1005','Thru-Tubing Completion Overview',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/Thru-TubingCompletionOverview/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_20=g_navNode_1_4_7.addNode('1006','Tubing Patch Installations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/TubingPatchInstallations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_21=g_navNode_1_4_7.addNode('1007','Screen Hang-Off Installations',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/ScreenHang-OffInstallations/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_7_22=g_navNode_1_4_7.addNode('1008','Product Information',ssUrlPrefix + 'Products/Intervention/ThruTubingPackers/ProductInformation/ ','LeftNavTitle==Thru-Tubing Packers','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_8=g_navNode_1_4.addNode('552','Electric Wireline',ssUrlPrefix + 'Products/Intervention/ElectricWireline/ ','Keywords==Electric Wireline','LeftNavTitle==Electric Wireline','PageTitle==Electric Wireline','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_9=g_navNode_1_4.addNode('553','Heavy Duty Wireline',ssUrlPrefix + 'Products/Intervention/HeavyDutyWireline/ ','Keywords==Heavy-Duty Wireline Fishing, \x28HDWF\x29, surface pressure control equipment, HDWF services','LeftNavTitle==Heavy Duty Wireline','PageDescription==Weatherford has the most comprehensive and advanced fleet of Heavy Duty wireline and surface pressure control equipment available in the industry. We offer HDWF services to remove a wide range of wellbore obstructions, including stuck flow-control devices, slickline and braided cable.','PageTitle==Heavy-Duty Wireline Fishing \x28HDWF\x29','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_10=g_navNode_1_4.addNode('554','Pipe Recovery',ssUrlPrefix + 'Products/Intervention/PipeRecovery/ ','Keywords==pipe recovery','LeftNavTitle==Pipe Recovery','PageTitle==Pipe Recovery','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_11=g_navNode_1_4.addNode('556','Well Abandonment',ssUrlPrefix + 'Products/Intervention/WellAbandonment/ ','LeftNavTitle==Well Abandonment','PageTitle==Well Abandonment','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_11_0=g_navNode_1_4_11.addNode('680','Innovative Abandonment Tools',ssUrlPrefix + 'Products/Intervention/WellAbandonment/InnovativeAbandonmentTools/ ','LeftNavTitle==Well Abandonment','PageTitle==Innovative Abandonment Tools','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_11_1=g_navNode_1_4_11.addNode('681','Multidisciplinary Training',ssUrlPrefix + 'Products/Intervention/WellAbandonment/MultidisciplinaryTraining/ ','LeftNavTitle==Well Abandonment','TopNavTitle==Intervention','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_12=g_navNode_1_4.addNode('1389','Wellbore Cleaning',ssUrlPrefix + 'Products/Intervention/WellboreCleaning/index.htm','Keywords==CLEARMAX\u2122, Wellbore Cleaning Service, wellbore debris','PageDescription==CLEARMAX\u2122 Wellbore Cleaning Service provides you with the ability to safely and effectively remove wellbore debris','PageTitle==Wellbore Cleaning','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Intervention\x60');
g_navNode_1_4_13=g_navNode_1_4.addNode('1651','Sand Jet Perforating Services ',ssUrlPrefix + 'Products/Intervention/SandJetPerforatingServices/index.htm','Keywords==Sand Jet Perforating Services, Sand Jet Perforating','PageDescription==Multi-functional FlowMax\u2122 Sand Jet Perforator and full suite of perforating tools ','PageTitle==Sand Jet Perforating Services ');
g_navNode_1_5=g_navNode_1.addNode('564','Engineered Chemistry',ssUrlPrefix + 'Products/EngineeredChemistry/ ','Keywords==Engineered Chemistry, chemicals, chemical treatments, Oil treatment, Used oil treatment, Oil demulsifiers,Oil demulsification, Waste oil chemistry, Waste oil treatment, Demulsifiers, Wastewater treatment, Coagulants, Flocculants, Metal precipitants, Metal precipitation, Water treatment chemistry, Water treatment chemicals, Oil-in-water demulsifiers, Sludge thickners, Floatation aids','PageDescription==Weatherford\u2019s Engineered Chemistry division provides cost effective chemical treatments for oil and gas production, produced water, and additives for drilling, workover and stimulation.','PageTitle==Engineered Chemistry','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_0=g_navNode_1_5.addNode('565','Acid Additives',ssUrlPrefix + 'Products/EngineeredChemistry/AcidAdditives/ ','LeftNavTitle==Acid Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_0_0=g_navNode_1_5_0.addNode('810','Acid Corrosion Inhibitors',ssUrlPrefix + 'Products/EngineeredChemistry/AcidAdditives/AcidCorrosionInhibitors/ ','LeftNavTitle==Acid Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_0_1=g_navNode_1_5_0.addNode('811','Acid Corrosion Inhibitor Intensifiers',ssUrlPrefix + 'Products/EngineeredChemistry/AcidAdditives/AcidCorrosionInhibitorIntensifiers/ ','LeftNavTitle==Acid Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_0_2=g_navNode_1_5_0.addNode('812','Acid Retarders/Emulsifiers',ssUrlPrefix + 'Products/EngineeredChemistry/AcidAdditives/AcidRetardersEmulsifiers/ ','LeftNavTitle==Acid Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_0_3=g_navNode_1_5_0.addNode('813','Anti-Sludge Agents',ssUrlPrefix + 'Products/EngineeredChemistry/AcidAdditives/Anti-SludgeAgents/ ','LeftNavTitle==Acid Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_0_4=g_navNode_1_5_0.addNode('814','Friction Reducer for Acid',ssUrlPrefix + 'Products/EngineeredChemistry/AcidAdditives/FrictionReducerforAcid/ ','LeftNavTitle==Acid Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_0_5=g_navNode_1_5_0.addNode('815','Acid Gelling Agents',ssUrlPrefix + 'Products/EngineeredChemistry/AcidAdditives/AcidGellingAgents/ ','LeftNavTitle==Acid Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_0_6=g_navNode_1_5_0.addNode('816','Mutual Solvents',ssUrlPrefix + 'Products/EngineeredChemistry/AcidAdditives/MutualSolvents/ ','LeftNavTitle==Acid Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_0_7=g_navNode_1_5_0.addNode('817','Iron Control/Sequestering Agents',ssUrlPrefix + 'Products/EngineeredChemistry/AcidAdditives/IronControlSequesteringAgents/ ','LeftNavTitle==Acid Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_0_8=g_navNode_1_5_0.addNode('818','Surfactants',ssUrlPrefix + 'Products/EngineeredChemistry/AcidAdditives/Surfactants/ ','LeftNavTitle==Acid Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_1=g_navNode_1_5.addNode('566','Cementing Additives',ssUrlPrefix + 'Products/EngineeredChemistry/CementingAdditives/ ','LeftNavTitle==Cementing Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_1_0=g_navNode_1_5_1.addNode('819','Fluid Loss Control Additives',ssUrlPrefix + 'Products/EngineeredChemistry/CementingAdditives/FluidLossControlAdditives/ ','LeftNavTitle==Cementing Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_1_1=g_navNode_1_5_1.addNode('820','Cement Extenders',ssUrlPrefix + 'Products/EngineeredChemistry/CementingAdditives/CementExtenders/ ','LeftNavTitle==Cementing Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_1_2=g_navNode_1_5_1.addNode('821','Cement Retarders',ssUrlPrefix + 'Products/EngineeredChemistry/CementingAdditives/CementRetarders/ ','LeftNavTitle==Cementing Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_1_3=g_navNode_1_5_1.addNode('822','Friction Reducers/Dispersants',ssUrlPrefix + 'Products/EngineeredChemistry/CementingAdditives/FrictionReducersDispersants/ ','LeftNavTitle==Cementing Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_1_4=g_navNode_1_5_1.addNode('823','Lost Circulation Control',ssUrlPrefix + 'Products/EngineeredChemistry/CementingAdditives/LostCirculationControl/ ','LeftNavTitle==Cementing Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_1_5=g_navNode_1_5_1.addNode('824','Defoamers',ssUrlPrefix + 'Products/EngineeredChemistry/CementingAdditives/Defoamers/ ','LeftNavTitle==Cementing Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_1_6=g_navNode_1_5_1.addNode('825','Cement Preflushes and Spacers',ssUrlPrefix + 'Products/EngineeredChemistry/CementingAdditives/CementPreflushesandSpacers/ ','LeftNavTitle==Cementing Additives','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_2=g_navNode_1_5.addNode('568','Flow Assurance',ssUrlPrefix + 'Products/EngineeredChemistry/FlowAssurance/ ','LeftNavTitle==Flow Assurance','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_3=g_navNode_1_5.addNode('569','Fracturing Chemicals',ssUrlPrefix + 'Products/EngineeredChemistry/FracturingChemicals/ ','LeftNavTitle==Fracturing Chemicals','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_3_0=g_navNode_1_5_3.addNode('960','Hydrocarbon-Based Fracturing Fluids',ssUrlPrefix + 'Products/EngineeredChemistry/FracturingChemicals/Hydrocarbon-BasedFracturingFluids/ ','LeftNavTitle==Fracturing Chemicals','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_3_1=g_navNode_1_5_3.addNode('961','Water-Based Fracturing Fluids',ssUrlPrefix + 'Products/EngineeredChemistry/FracturingChemicals/Water-BasedFracturingFluids/ ','LeftNavTitle==Fracturing Chemicals','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_3_2=g_navNode_1_5_3.addNode('962','Biocides',ssUrlPrefix + 'Products/EngineeredChemistry/FracturingChemicals/Biocides/ ','LeftNavTitle==Fracturing Chemicals','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_3_3=g_navNode_1_5_3.addNode('963','Fluid Loss Additives/Diverting Agents',ssUrlPrefix + 'Products/EngineeredChemistry/FracturingChemicals/FluidLossAdditivesDivertingAgents/ ','LeftNavTitle==Fracturing Chemicals','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_3_4=g_navNode_1_5_3.addNode('964','Clay Control Additives',ssUrlPrefix + 'Products/EngineeredChemistry/FracturingChemicals/ClayControlAdditives/ ','LeftNavTitle==Fracturing Chemicals','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_3_5=g_navNode_1_5_3.addNode('965','Friction Reducers',ssUrlPrefix + 'Products/EngineeredChemistry/FracturingChemicals/FrictionReducers/ ','LeftNavTitle==Fracturing Chemicals','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_3_6=g_navNode_1_5_3.addNode('966','Foaming Agents/Surfactants',ssUrlPrefix + 'Products/EngineeredChemistry/FracturingChemicals/FoamingAgentsSurfactants/ ','LeftNavTitle==Fracturing Chemicals','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_4=g_navNode_1_5.addNode('570','Production Chemical Intermediates',ssUrlPrefix + 'Products/EngineeredChemistry/ChemicalIntermediates/ ','LeftNavTitle==Production Chemical Intermediates','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_4_0=g_navNode_1_5_4.addNode('967','Corrosion Inhibitors',ssUrlPrefix + 'Products/EngineeredChemistry/ChemicalIntermediates/CorrosionInhibitors/ ','LeftNavTitle==Production Chemical Intermediates','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_4_1=g_navNode_1_5_4.addNode('968','Emulsion Breakers',ssUrlPrefix + 'Products/EngineeredChemistry/ChemicalIntermediates/EmulsionBreakers/ ','LeftNavTitle==Production Chemical Intermediates','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_4_2=g_navNode_1_5_4.addNode('969','Hydrogen Sulfide Control',ssUrlPrefix + 'Products/EngineeredChemistry/ChemicalIntermediates/HydrogenSulfideControl/ ','LeftNavTitle==Production Chemical Intermediates','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_4_3=g_navNode_1_5_4.addNode('970','Paraffin Control Additives',ssUrlPrefix + 'Products/EngineeredChemistry/ChemicalIntermediates/ParaffinControlAdditives/ ','LeftNavTitle==Production Chemical Intermediates','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_4_4=g_navNode_1_5_4.addNode('971','Scale Inhibitors',ssUrlPrefix + 'Products/EngineeredChemistry/ChemicalIntermediates/ScaleInhibitors/ ','LeftNavTitle==Production Chemical Intermediates','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_5=g_navNode_1_5.addNode('571','Process and Compression Chemicals',ssUrlPrefix + 'Products/EngineeredChemistry/CompressionChemicals/ ','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_5_0=g_navNode_1_5_5.addNode('806','Engine Coolants',ssUrlPrefix + 'Products/EngineeredChemistry/CompressionChemicals/EngineCoolants/ ','LeftNavTitle==Process and Compression Chemicals','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_5_1=g_navNode_1_5_5.addNode('807','Deliquescents',ssUrlPrefix + 'Products/EngineeredChemistry/CompressionChemicals/Deliquescents/ ','LeftNavTitle==Process and Compression Chemicals','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_5_2=g_navNode_1_5_5.addNode('808','Biocides',ssUrlPrefix + 'Products/EngineeredChemistry/CompressionChemicals/Biocides/ ','LeftNavTitle==Process and Compression Chemicals','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_5_5_3=g_navNode_1_5_5.addNode('809','Special Additives - Water Treatment',ssUrlPrefix + 'Products/EngineeredChemistry/CompressionChemicals/SpecialAdditives-WaterTreatment/ ','LeftNavTitle==Process and Compression Chemicals','TopNavTitle==Engineered Chemistry','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Engineered Chemistry\x60');
g_navNode_1_6=g_navNode_1.addNode('1462','RSS',ssUrlPrefix + 'Products/RSS/index.htm');
g_navNode_2=g_navNode_Root.addNode('590','Real Results',ssUrlPrefix + 'RealResults/ ');
g_navNode_3=g_navNode_Root.addNode('1086','Contact',ssUrlPrefix + 'Contact/ ');
g_navNode_4=g_navNode_Root.addNode('401','Search',ssUrlPrefix + 'Search/index.htm','LeftNavTitle==Search Utilities','PageTitle==Weatherford International\x3a Search Results');
g_navNode_5=g_navNode_Root.addNode('1210','Error Message',ssUrlPrefix + 'Error Message/index.htm');
g_navNode_6=g_navNode_Root.addNode('1254','Media',ssUrlPrefix + 'Media/index.htm','TopNavTitle==Media and Image Library Demo');
g_navNode_6_0=g_navNode_6.addNode('1257','Streaming1',ssUrlPrefix + 'Media/Streaming1/index.htm');
g_navNode_6_3=g_navNode_6.addNode('1468','Modal',ssUrlPrefix + 'Media/Modal/index.htm');
g_navNode_6_4=g_navNode_6.addNode('1476','ModalMedia',ssUrlPrefix + 'Media/ModalMedia/index.htm');
g_navNode_7=g_navNode_Root.addNode('1326','SPWLA2010',ssUrlPrefix + 'SPWLA2010/index.htm');
g_navNode_8=g_navNode_Root.addNode('1327','EAGE2010',ssUrlPrefix + 'EAGE2010/index.htm');
g_navNode_9=g_navNode_Root.addNode('1329','IE2010',ssUrlPrefix + 'IE2010/index.htm');
g_navNode_11=g_navNode_Root.addNode('1357','ONS2010',ssUrlPrefix + 'ONS2010/index.htm');
g_navNode_12=g_navNode_Root.addNode('1359','SeaChange',ssUrlPrefix + 'SeaChange/index.htm');
g_navNode_13=g_navNode_Root.addNode('1461','Feeds',ssUrlPrefix + 'Feeds/index.htm','xmlQueryText==dSecurityGroup \x3cmatches\x3e \x60Web\x60  \x3cAND\x3e  xSecondary \x3cmatches\x3e \x60Drilling\x60');
g_navNode_14=g_navNode_Root.addNode('1475','shockwavesonic',ssUrlPrefix + 'shockwavesonic/index.htm');
g_navNode_15=g_navNode_Root.addNode('1489','stewart-training',ssUrlPrefix + 'stewart-training/index.htm');
g_navNode_16=g_navNode_Root.addNode('1499','TradeShow',ssUrlPrefix + 'TradeShow/index.htm');
g_navNode_16_0=g_navNode_16.addNode('1500','OMC',ssUrlPrefix + 'TradeShow/OMC/index.htm','Keywords==OMC, 2011 OMC, Offshore Mediterranean Conference','PageDescription==Visit Weatherford at 2011 Offshore Mediterranean Conference','PageTitle==Offshore Mediterranean Conference');
g_navNode_16_1=g_navNode_16.addNode('1527','ICoTA',ssUrlPrefix + 'TradeShow/ICoTA/index.htm','Keywords==SPE/ICoTA, 2011 SPE/ICoTA, Weatherford experts , ICoTA','PageDescription==Weatherford\u2019s experts will be at the 2011 SPE/ICoTA','PageTitle==2011 SPE/ICoTA');
g_navNode_16_7=g_navNode_16.addNode('1649','SPE/ATCE',ssUrlPrefix + 'TradeShow/SPEATCE/index.htm');
g_navNode_16_8=g_navNode_16.addNode('1650','ATCE Webcast',ssUrlPrefix + 'TradeShow/ATCEWebcast/index.htm');
g_navNode_16_10=g_navNode_16.addNode('1662','WPC',ssUrlPrefix + 'TradeShow/WPC/index.htm','Keywords==Weatherford, World Petroleum Congress, WPC ','PageDescription==Visit Weatherford at the 20th World Petroleum Congress \x28WPC\x29 ','PageTitle==Visit Weatherford at the 20th World Petroleum Congress \x28WPC\x29 ');
g_navNode_17=g_navNode_Root.addNode('1657','Career',ssUrlPrefix + 'Career/index.htm');
g_navNode_17_0=g_navNode_17.addNode('1658','Current Employees',ssUrlPrefix + 'Career/CurrentEmployees/index.htm');
g_navNode_18=g_navNode_Root.addNode('1660','Mobile',ssUrlPrefix + 'Mobile/index.htm');
g_navNode_18_0=g_navNode_18.addNode('1661','SandControl',ssUrlPrefix + 'Mobile/SandControl/index.htm');
g_navNode_20=g_navNode_Root.addNode('1674','Campaigns',ssUrlPrefix + 'Campaigns/index.htm');
g_navNode_20_0=g_navNode_20.addNode('1679','TotalDepth',ssUrlPrefix + 'Campaigns/TotalDepth/index.htm','PageTitle==Total Depth Case Histories');

