/////////////////////////////////////////////////////////////////////////////
// Function : NavNode (constructor)
// Comments :
/////////////////////////////////////////////////////////////////////////////
function NavNode(id, label, href, parent)
{
	this.m_parent = null;
	this.m_level = 0;

	if (parent)
	{
		this.m_parent = parent;
		this.m_level = parent.m_level+1;
	}

	this.m_id = id;

	// assume that m_label will most often be used directly as HTML
	this.m_rawlabel = label;

	label = label.replace(/&/g, '&amp;');
	label = label.replace(/</g, '&lt;');
	label = label.replace(/>/g, '&gt;');
	label = label.replace(/"/g, '&quot;');

	this.m_label = label;

	this.m_href = href;
	this.m_subNodes = new Array();

	var argValues = NavNode.arguments;
	var argCount = NavNode.arguments.length;

	for (i = 4 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("this.cp_" + attrName + " = '" + attrValue + "';");
	}

	NavNode.prototype.addNode = addNode;
	NavNode.prototype.isSelected = isSelected;
}

/////////////////////////////////////////////////////////////////////////////
// Function : addNode
// Comments :
/////////////////////////////////////////////////////////////////////////////
function addNode(id, label, href)
{
	var newIndex = this.m_subNodes.length;
	var newNode = new NavNode(id, label, href, this);

	var argValues = addNode.arguments;
	var argCount = addNode.arguments.length;

	for (i = 3 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("newNode.cp_" + attrName + " = '" + attrValue + "';");
	}

	this.m_subNodes[newIndex] = newNode;
	return newNode;
}

/////////////////////////////////////////////////////////////////////////////
// Function : isSelected
// Comments :
/////////////////////////////////////////////////////////////////////////////
function isSelected()
{
    var pos = window.location.href.lastIndexOf("/");
    var docname = window.location.href.substring(pos+1, window.location.href.length);

    pos = this.m_href.lastIndexOf("/");
    var myname = this.m_href.substring(pos+1, this.m_href.length);

    if (docname == myname)
		return true;
	else
		return false;
}

/////////////////////////////////////////////////////////////////////////////
// Function : customSectionPropertyExists
// Comments :
/////////////////////////////////////////////////////////////////////////////
function customSectionPropertyExists(csp)
{
	return (typeof csp != _U && csp != null);
}

/////////////////////////////////////////////////////////////////////////////
// Function : getCustomSectionProperty
// Comments :
/////////////////////////////////////////////////////////////////////////////
function getCustomSectionProperty(csp)
{
	if (customSectionPropertyExists(csp))
	{
		return csp;
	}
	else
	{
		return "";
	}
}

/////////////////////////////////////////////////////////////////////////////

var g_navNode_Root = new NavNode('2125','\u9996\u9801',ssUrlPrefix + 'index.htm',null,'AdditionalCSS==groups/globaltemplates/documents/web_asset/emeacss.css,groups/globaltemplates/documents/web_asset/landing_page_css.css','AlternateLogo==blkcnlogo.gif','AlternateLogoHeight==115','AnalyticsCode==UA-11755369-1','DisplayDateFormat==yyyy\\x27\u5e74\\x27M\\x27\u6708\\x27d\\x27\u65e5\\x27','HTTPMetaText==\x3cmeta name\x3d\"google-site-verification\" content\x3d\"6IN3BCNHTAjYq87VOCJy_QQpGRzo_nAmgy5EUefeiLY\" /\x3e\x3cmeta name\x3d\\x27description\\x27 content\x3d\\x27\u8c9d\u840a\u5fb7\u662f\u5168\u7403\u5353\u8d8a\u7684\u8cc7\u7522\u7ba1\u7406\u516c\u53f8\u4e4b\u4e00\uff0c\u4e5f\u662f\u6295\u8cc7\u7ba1\u7406\u3001\u98a8\u96aa\u7ba1\u7406\u3001\u8207\u8aee\u8a62\u670d\u52d9\u7684\u9818\u5c0e\u8005\uff0c\u70ba\u5168\u7403\u5404\u5730\u5c08\u696d\u6cd5\u4eba\u3001\u4e2d\u4ecb\u6a5f\u69cb\u3001\u53ca\u500b\u5225\u6295\u8cc7\u4eba\u63d0\u4f9b\u670d\u52d9\u3002\\x27/\x3e','Language==cn_tw','NoCookiesNodeId==5056','OmnitureID==blktw-prod','StartDivID==LandingPage','UnicaID==blk\x3atw');
g_navNode_0=g_navNode_Root.addNode('5469','\u6cd5\u4eba\u6295\u8cc7',ssUrlPrefix + 'InstitutionalInvestors/index.htm','AdditionalCSS==/content02/groups/globaltemplates/documents/web_asset/blkinternet_tw.css','AlternateLogoHeight==115','DoNotShowInNavigation==FALSE','ShowClientLogin==TRUE','ShowFundFinder==FALSE','SiloName==7','iShareHome==Y');
g_navNode_0_0=g_navNode_0.addNode('5508','\u6295\u8cc7\u80fd\u529b',ssUrlPrefix + 'InstitutionalInvestors/SolutionsandProducts/index.htm','ShowRelResources==TRUE');
g_navNode_0_1=g_navNode_0.addNode('5696','\u71b1\u9580\u8b70\u984c',ssUrlPrefix + 'InstitutionalInvestors/HotQA/index.htm');
g_navNode_0_1_0=g_navNode_0_1.addNode('5697','\u74b0\u7403\u914d\u7f6e',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category1/index.htm','RedirectURL==5698');
g_navNode_0_1_0_0=g_navNode_0_1_0.addNode('5698','\u74b0\u7403\u8cc7\u7522\u914d\u7f6e',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category1/Category4/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_0_1_0_1=g_navNode_0_1_0.addNode('5699','\u51a0\u8ecd\u64cd\u76e4\u624b\u7684\u52dd\u51fa\u7b56\u7565',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category1/Category2/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_0_1_0_2=g_navNode_0_1_0.addNode('5700','\u5b9a\u671f\u5b9a\u984d\u9700\u4e86\u89e3\u6295\u8cc7\u5c6c\u6027',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category1/Category3/index.htm');
g_navNode_0_1_0_3=g_navNode_0_1_0.addNode('5701','\u5982\u4f55\u7d2f\u7a4d\u7f8e\u597d\u6295\u8cc7\u7d93\u9a57',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category1/Category1/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_0_1_1=g_navNode_0_1.addNode('5702','\u65b0\u8208\u5e02\u5834',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category2/index.htm','RedirectURL==5703');
g_navNode_0_1_1_0=g_navNode_0_1_1.addNode('5703','\u65b0\u8208\u5e02\u5834',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category2/EmergingMarkets/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_0_1_1_1=g_navNode_0_1_1.addNode('5704','\u62c9\u4e01\u7f8e\u6d32',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category2/Subsection1/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_0_1_1_2=g_navNode_0_1_1.addNode('5705','\u65b0\u8208\u6b50\u6d32',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category2/Subsection2/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_0_1_1_3=g_navNode_0_1_1.addNode('5706','\u5370\u5ea6',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category2/Subsection3/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_0_1_2=g_navNode_0_1.addNode('5707','\u6210\u719f\u5e02\u5834',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category3/index.htm');
g_navNode_0_1_3=g_navNode_0_1.addNode('5708','\u985e\u80a1\u6295\u8cc7',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category4/index.htm','RedirectURL==5709','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_0_1_3_0=g_navNode_0_1_3.addNode('5709','\u80fd\u6e90\x26\u65b0\u80fd\u6e90',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category4/Subsection1/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_0_1_3_1=g_navNode_0_1_3.addNode('5710','\u7926\u696d',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category4/Subsection2/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_0_1_3_2=g_navNode_0_1_3.addNode('5711','\u9ec3\u91d1',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category4/Subsection3/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_0_1_3_3=g_navNode_0_1_3.addNode('5712','\u5065\u5eb7\u79d1\u5b78\x26\u4e16\u754c\u79d1\u6280',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category4/Subsection4/index.htm','ShowThirdLevelNav==TRUE');
g_navNode_0_1_4=g_navNode_0_1.addNode('5713','\u50b5\u5238\u6295\u8cc7',ssUrlPrefix + 'InstitutionalInvestors/HotQA/Category5/index.htm','ShowRelResources==TRUE');
g_navNode_0_3=g_navNode_0.addNode('5510','\u8207\u6211\u5011\u806f\u7d61',ssUrlPrefix + 'InstitutionalInvestors/ContactUs/index.htm','ShowRelResources==TRUE');
g_navNode_0_4=g_navNode_0.addNode('5658','Client Login Popup Help',ssUrlPrefix + 'InstitutionalInvestors/ClientLoginPopupHelp/index.htm','AdditionalCSS==groups/globaltemplates/international/css/emeacss.css,groups/globaltemplates/international/css/blkinternet.css,groups/globaltemplates/international/css/landing_page_css.css','DoNotShowInNavigation==TRUE');
g_navNode_1=g_navNode_Root.addNode('2160','\u8a8d\u8b58\u8c9d\u840a\u5fb7',ssUrlPrefix + 'AboutUs/index.htm','AdditionalCSS==/content02/groups/globaltemplates/documents/web_asset/blkinternet_tw.css','AlternateLogoHeight==115','RedirectURL==2161','ShowThirdLevelNav==FALSE','SiloName==AboutUs');
g_navNode_1_0=g_navNode_1.addNode('2161','\u8a8d\u8b58\u8c9d\u840a\u5fb7',ssUrlPrefix + 'AboutUs/Overview/index.htm','DoNotShowInNavigation==TRUE','ShowRelResources==TRUE','WideColumnMiddle==TRUE');
g_navNode_1_1=g_navNode_1.addNode('2162','\u806f\u7d61\u6211\u5011',ssUrlPrefix + 'AboutUs/ContactUs/index.htm','AlternateLogo==emea02017518.gif','ShowRelResources==FALSE','WideColumnMiddle==TRUE');
g_navNode_1_2=g_navNode_1.addNode('2210','\u91cd\u8981\u8cc7\u8a0a',ssUrlPrefix + 'AboutUs/ImportantInformation/index.htm','AlternateLogo==emea02017518.gif','NotComplianceProtected==TRUE','ShowRelResources==FALSE','WideColumnMiddle==TRUE');
g_navNode_1_3=g_navNode_1.addNode('5612','\u65b0\u805e\u4e2d\u5fc3',ssUrlPrefix + 'AboutUs/PressCentre/index.htm','DoNotShowInNavigation==TRUE','RedirectURL==5606');
g_navNode_1_3_0=g_navNode_1_3.addNode('5606','\u6700\u65b0\u65b0\u805e\u7a3f',ssUrlPrefix + 'AboutUs/PressCentre/Latest/index.htm','DoNotShowInNavigation==TRUE','HideLiteratureFinder==FALSE','Links==0','QuarterToShow==0','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xSubType \x3cmatches\x3e \\x2723\\x27 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60tw\x60','ShowNavInTabs==TRUE','ShowRelResources==FALSE');
g_navNode_1_3_3=g_navNode_1_3.addNode('5609','7\u6708-9\u6708',ssUrlPrefix + 'AboutUs/PressCentre/Jul-Sep/index.htm','QuarterToShow==3','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xSubType \x3cmatches\x3e \\x2723\\x27 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60tw\x60','ShowNavInTabs==TRUE');
g_navNode_1_3_4=g_navNode_1_3.addNode('5610','10\u6708-12\u6708',ssUrlPrefix + 'AboutUs/PressCentre/Oct-Dec/index.htm','QuarterToShow==4','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xSubType \x3cmatches\x3e \\x2723\\x27 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60tw\x60','ShowNavInTabs==TRUE');
g_navNode_2=g_navNode_Root.addNode('2153','\u8c9d\u840a\u5fb7',ssUrlPrefix + 'IndividualInvestors/index.htm','AdditionalCSS==/content02/groups/globaltemplates/documents/web_asset/blkinternet_tw.css','AlternateLogoHeight==115','ShowFundFinder==TRUE','SiloName==6','TargetNodes==prices\x3d2206,litResults\x3d3297,fundFinder\x3d3320','xmlid==FC_10022013');
g_navNode_2_0=g_navNode_2.addNode('2154','\u7cbe\u9078\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/FocusFunds/index.htm','AlternateLogo==emea02017518.gif','ShowThirdLevelNav==FALSE');
g_navNode_2_0_0=g_navNode_2_0.addNode('4483','2010\u57fa\u91d1\u734e',ssUrlPrefix + 'IndividualInvestors/FocusFunds/InvestmentTrends/index.htm','DoNotShowInNavigation==FALSE','ShowRelResources==TRUE');
g_navNode_2_0_1=g_navNode_2_0.addNode('2791','\u8f49\u904e\u4f86\u7684\u4e16\u754c\u89c0',ssUrlPrefix + 'IndividualInvestors/FocusFunds/InvestmentTrends/index.htm','DoNotShowInNavigation==TRUE','ShowRelResources==TRUE');
g_navNode_2_0_3=g_navNode_2_0.addNode('6361','\u524d\u9032\u80a1\u5e02\u7684\u7b2c\u4e00\u6b65',ssUrlPrefix + 'IndividualInvestors/FocusFunds/GlobalAllocation/index.htm','DoNotShowInNavigation==TRUE','RedirectURL==6363');
g_navNode_2_0_3_0=g_navNode_2_0_3.addNode('6363','\u57fa\u91d1\u6982\u89bd',ssUrlPrefix + 'IndividualInvestors/FocusFunds/GlobalAllocation/Overview/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE');
g_navNode_2_0_3_1=g_navNode_2_0_3.addNode('6364','\u6295\u8cc7\u5718\u968a',ssUrlPrefix + 'IndividualInvestors/FocusFunds/GlobalAllocation/InvestmentTeam/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE');
g_navNode_2_0_4=g_navNode_2_0.addNode('6362','\u7e7c\u4e16\u7926\u3001\u62c9\u7f8e\u548c\u6771\u6b50',ssUrlPrefix + 'IndividualInvestors/FocusFunds/ChinaFund/index.htm','DoNotShowInNavigation==TRUE','RedirectURL==6365');
g_navNode_2_0_4_0=g_navNode_2_0_4.addNode('6365','\u57fa\u91d1\u6982\u89bd',ssUrlPrefix + 'IndividualInvestors/FocusFunds/ChinaFund/Overview/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE');
g_navNode_2_0_5=g_navNode_2_0.addNode('2164','\u300c\u5ee3\u5927\u9748\u6d3b\u300d\u6295\u8cc7\u89c0',ssUrlPrefix + 'IndividualInvestors/FocusFunds/FocusFundsIntro/index.htm','AlternateLogo==emea02017518.gif','DoNotShowInNavigation==FALSE','RedirectURL==2193','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_0_5_0=g_navNode_2_0_5.addNode('2193','\u8c9d\u840a\u5fb7\u74b0\u7403\u8cc7\u7522\u914d\u7f6e\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/FocusFunds/FocusFundsIntro/CoreFund1/index.htm','AlternateLogo==emea02017518.gif','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE','WideColumnMiddle==FALSE');
g_navNode_2_0_5_1=g_navNode_2_0_5.addNode('2194','\u7f8e\u6797\u65b0\u8208\u5e02\u5834\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/FocusFunds/FocusFundsIntro/CoreFund2/index.htm','AlternateLogo==emea02017518.gif','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_0_6=g_navNode_2_0.addNode('2764','\u6838\u5fc3\u8cc7\u7522\u9996\u9078',ssUrlPrefix + 'IndividualInvestors/FocusFunds/Section1/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_0_7=g_navNode_2_0.addNode('2765','\u65b0\u8208\u5e02\u5834\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/FocusFunds/Section2/index.htm','DoNotShowInNavigation==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_0_11=g_navNode_2_0.addNode('3297','\u6295\u8cc7\u8cc7\u8a0a\u67e5\u8a62',ssUrlPrefix + 'IndividualInvestors/FocusFunds/LiteratureFinderResults/index.htm','DoNotShowInNavigation==TRUE','Query==dSecurityGroup \x3cmatches\x3e \x60TaiwaneseSite\x60');
g_navNode_2_1=g_navNode_2.addNode('2155','\u57fa\u91d1\u7e3d\u89bd',ssUrlPrefix + 'IndividualInvestors/FundCentre/index.htm','AlternateLogo==emea02017518.gif','TargetNodes==prices\x3d2166','xmlid==FC_10022013');
g_navNode_2_1_0=g_navNode_2_1.addNode('2165','\u57fa\u91d1\u5730\u5716',ssUrlPrefix + 'IndividualInvestors/FundCentre/FundMap/index.htm','AlternateLogo==emea02017518.gif','ShowRelResources==TRUE');
g_navNode_2_1_1=g_navNode_2_1.addNode('2166','\u57fa\u91d1\u6de8\u503c',ssUrlPrefix + 'IndividualInvestors/FundCentre/NAV/index.htm','AlternateLogo==emea02017518.gif','DoNotShowInNavigation==FALSE','RedirectURL==2206','xmlid==FC_10022013');
g_navNode_2_1_1_0=g_navNode_2_1_1.addNode('2206','\u8c9d\u840a\u5fb7\u5168\u7403\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/FundCentre/NAV/BGF/index.htm','AdditionalCSS==groups/globaltemplates/documents/web_asset/table_style_sheet.css,groups/globaltemplates/documents/web_asset/tabs.css','AdditionalJavaScript==groups/globaltemplates/documents/web_asset/table_scripts.js','AlternateLogo==emea02017518.gif','DoNotShowInNavigation==FALSE','FundCentreRedirectParams==product\x3d6/ukdistributorstatus\x3dN//','NotComplianceProtected==FALSE','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE','secondaryUrlVariableField==region5','xmlid==FC_10022013');
g_navNode_2_1_2=g_navNode_2_1.addNode('2167','\u57fa\u91d1\u6708\u5831',ssUrlPrefix + 'IndividualInvestors/FundCentre/Factsheets/index.htm','RedirectURL==2197');
g_navNode_2_1_2_0=g_navNode_2_1_2.addNode('2197','\u71b1\u9580\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/FundCentre/Factsheets/PopularFundsNav/index.htm','AlternateLogo==emea02017518.gif','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xComments \x3csubstring\x3e \x60top\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60tw\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x6015\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x606\x60','ShowRelResources==TRUE');
g_navNode_2_1_2_1=g_navNode_2_1_2.addNode('2198','\u6240\u6709\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/FundCentre/Factsheets/All/index.htm','AlternateLogo==emea02017518.gif','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60tw\x60 \x3cAND\x3e  xSubType \x3ccontains\x3e \x6015\x60 \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x606\x60','ShowRelResources==TRUE','SubHeadingMetadataField==xAssetType','SubHeadingView==AssetType');
g_navNode_2_1_2_2=g_navNode_2_1_2.addNode('2199','\u80a1\u7968\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/FundCentre/Factsheets/EquityFunds/index.htm','AlternateLogo==emea02017518.gif','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60tw\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x6015\x60  \x3cAND\x3e  xAssetType \x3ccontains\x3e \x604\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x606\x60','ShowRelResources==TRUE');
g_navNode_2_1_2_3=g_navNode_2_1_2.addNode('2200','\u50b5\u5238\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/FundCentre/Factsheets/BondFunds/index.htm','AlternateLogo==emea02017518.gif','Query==dDocType \x3csubstring\x3e \x60Literature\x60 \x3cAND\x3e dSecurityGroup \x3csubstring\x3e \x60TaiwaneseSite\x60 \x3cAND\x3e xSubType \x3csubstring\x3e \x6015\x60 \x3cAND\x3e xAssetType \x3csubstring\x3e \x602\x60','ShowRelResources==TRUE');
g_navNode_2_1_2_4=g_navNode_2_1_2.addNode('2201','\u6df7\u5408\u8cc7\u7522\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/FundCentre/Factsheets/MixedFunds/index.htm','AlternateLogo==emea02017518.gif','Query==dDocType \x3cmatches\x3e \x60Literature\x60 \x3cAND\x3e xWebsites \x3ccontains\x3e \x60tw\x60 \x3cAND\x3e  xSubType \x3ccontains\x3e \x6015\x60  \x3cAND\x3e  xAssetType \x3ccontains\x3e \x608\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x606\x60','ShowRelResources==TRUE');
g_navNode_2_1_2_5=g_navNode_2_1_2.addNode('2214','\u8ca8\u5e63\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/FundCentre/Factsheets/MoneyMarketFunds/index.htm','Query==dDocType \x3csubstring\x3e \x60Literature\x60 \x3cAND\x3e dSecurityGroup \x3csubstring\x3e \x60TaiwaneseSite\x60 \x3cAND\x3e xSubType \x3csubstring\x3e \x6015\x60 \x3cAND\x3e xAssetType \x3csubstring\x3e \x6013\x60','ShowRelResources==TRUE');
g_navNode_2_1_3=g_navNode_2_1.addNode('2168','\u6295\u8cc7\u8cc7\u8a0a',ssUrlPrefix + 'IndividualInvestors/FundCentre/BrochuresandSupportMaterial/index.htm','RedirectURL==2215');
g_navNode_2_1_3_1=g_navNode_2_1_3.addNode('2215','\u57fa\u91d1\u7279\u8f2f',ssUrlPrefix + 'IndividualInvestors/FundCentre/BrochuresandSupportMaterial/Brochure/index.htm','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60tw\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x605\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x606\x60','ShowRelResources==TRUE','SortFields==xAppGenericText1 Asc');
g_navNode_2_1_3_2=g_navNode_2_1_3.addNode('2170','\u7279\u5225\u4f01\u5283',ssUrlPrefix + 'IndividualInvestors/FundCentre/BrochuresandSupportMaterial/TrainingLiterature/index.htm','AlternateLogo==emea02017518.gif','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60tw\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x6035\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x606\x60','ShowRelResources==TRUE');
g_navNode_2_1_3_3=g_navNode_2_1_3.addNode('3337','\u6295\u8cc7\u5feb\u8a0a',ssUrlPrefix + 'IndividualInvestors/FundCentre/BrochuresandSupportMaterial/InvestmentCommentary/index.htm','AlternateLogo==emea02017518.gif','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60tw\x60  \x3cAND\x3e  xSubType \x3ccontains\x3e \x6014\x60  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x606\x60','ShowRelResources==TRUE','WideColumnMiddle==TRUE');
g_navNode_2_1_3_4=g_navNode_2_1_3.addNode('2172','\u5176\u4ed6',ssUrlPrefix + 'IndividualInvestors/FundCentre/BrochuresandSupportMaterial/Other/index.htm','AlternateLogo==emea02017518.gif','Query==dDocType \x3cmatches\x3e \x60Literature\x60  \x3cAND\x3e  xWebsites \x3ccontains\x3e \x60tw\x60  \x3cAND\x3e  \x28\x28xSubType \x3ccontains\x3e \x6025\x60\x29 \x3cOR\x3e \x28xSubType \x3ccontains\x3e \x6076\x60\x29 \x3cOR\x3e \x28xSubType \x3ccontains\x3e \x6018\x60\x29\x29  \x3cAND\x3e  xTargetAudienceOrVenue \x3ccontains\x3e \x606\x60','ShowRelResources==TRUE');
g_navNode_2_1_4=g_navNode_2_1.addNode('3326','\u5de5\u5177',ssUrlPrefix + 'IndividualInvestors/FundCentre/Tools/index.htm','DoNotShowInNavigation==FALSE','RedirectURL==3320');
g_navNode_2_1_4_0=g_navNode_2_1_4.addNode('3320','\u57fa\u91d1\u641c\u5c0b\u5668',ssUrlPrefix + 'IndividualInvestors/FundCentre/Tools/FundFinder/index.htm','DoNotShowInNavigation==FALSE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE','xmlid==FC_10022013');
g_navNode_2_1_4_1=g_navNode_2_1_4.addNode('4452','\u57fa\u91d1\u6b77\u53f2\u6de8\u503c',ssUrlPrefix + 'IndividualInvestors/FundCentre/Tools/HistoricalPriceTool/index.htm','AdditionalCSS==groups/globaltemplates/documents/web_asset/calendar_css.css','AdditionalJavaScript==groups/globaltemplates/documents/web_asset/calendar_js.js,groups/globaltemplates/documents/web_asset/calendar_en_js.js,groups/globaltemplates/documents/web_asset/calendar_setup_js.js','DoNotShowInNavigation==FALSE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE','xmlid==FC_10022012');
g_navNode_2_2=g_navNode_2.addNode('2156','\u71b1\u9580\u8b70\u984c',ssUrlPrefix + 'IndividualInvestors/HotQA/index.htm','AlternateLogo==emea02017518.gif');
g_navNode_2_2_0=g_navNode_2_2.addNode('2212','\u74b0\u7403\u914d\u7f6e',ssUrlPrefix + 'IndividualInvestors/HotQA/Category1/index.htm','AlternateLogo==emea02017518.gif','RedirectURL==2267');
g_navNode_2_2_0_0=g_navNode_2_2_0.addNode('2267','\u74b0\u7403\u8cc7\u7522\u914d\u7f6e',ssUrlPrefix + 'IndividualInvestors/HotQA/Category1/Category4/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_2_0_1=g_navNode_2_2_0.addNode('2174','\u51a0\u8ecd\u64cd\u76e4\u624b\u7684\u52dd\u51fa\u7b56\u7565',ssUrlPrefix + 'IndividualInvestors/HotQA/Category1/Category2/index.htm','AlternateLogo==emea02017518.gif','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_2_0_2=g_navNode_2_2_0.addNode('2175','\u5b9a\u671f\u5b9a\u984d\u9700\u4e86\u89e3\u6295\u8cc7\u5c6c\u6027',ssUrlPrefix + 'IndividualInvestors/HotQA/Category1/Category3/index.htm','AlternateLogo==emea02017518.gif','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_2_0_3=g_navNode_2_2_0.addNode('2173','\u5982\u4f55\u7d2f\u7a4d\u7f8e\u597d\u6295\u8cc7\u7d93\u9a57',ssUrlPrefix + 'IndividualInvestors/HotQA/Category1/Category1/index.htm','AlternateLogo==emea02017518.gif','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_2_1=g_navNode_2_2.addNode('2766','\u65b0\u8208\u5e02\u5834',ssUrlPrefix + 'IndividualInvestors/HotQA/Category2/index.htm','RedirectURL==4216','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_2_1_0=g_navNode_2_2_1.addNode('4216','\u65b0\u8208\u5e02\u5834',ssUrlPrefix + 'IndividualInvestors/HotQA/Category2/EmergingMarkets/index.htm','DoNotShowInNavigation==FALSE','HideLiteratureFinder==FALSE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_2_1_1=g_navNode_2_2_1.addNode('2251','\u62c9\u4e01\u7f8e\u6d32',ssUrlPrefix + 'IndividualInvestors/HotQA/Category2/Subsection1/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_2_1_2=g_navNode_2_2_1.addNode('2252','\u65b0\u8208\u6b50\u6d32',ssUrlPrefix + 'IndividualInvestors/HotQA/Category2/Subsection2/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_2_1_3=g_navNode_2_2_1.addNode('2253','\u5370\u5ea6',ssUrlPrefix + 'IndividualInvestors/HotQA/Category2/Subsection3/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_2_2=g_navNode_2_2.addNode('2767','\u6210\u719f\u5e02\u5834',ssUrlPrefix + 'IndividualInvestors/HotQA/Category3/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE');
g_navNode_2_2_3=g_navNode_2_2.addNode('2768','\u985e\u80a1\u6295\u8cc7',ssUrlPrefix + 'IndividualInvestors/HotQA/Category4/index.htm','RedirectURL==2254','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE');
g_navNode_2_2_3_0=g_navNode_2_2_3.addNode('2254','\u80fd\u6e90\x26\u65b0\u80fd\u6e90',ssUrlPrefix + 'IndividualInvestors/HotQA/Category4/Subsection1/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_2_3_1=g_navNode_2_2_3.addNode('2255','\u7926\u696d',ssUrlPrefix + 'IndividualInvestors/HotQA/Category4/Subsection2/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_2_3_2=g_navNode_2_2_3.addNode('2256','\u9ec3\u91d1',ssUrlPrefix + 'IndividualInvestors/HotQA/Category4/Subsection3/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_2_3_3=g_navNode_2_2_3.addNode('2262','\u5065\u5eb7\u79d1\u5b78\x26\u4e16\u754c\u79d1\u6280',ssUrlPrefix + 'IndividualInvestors/HotQA/Category4/Subsection4/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_2_4=g_navNode_2_2.addNode('2769','\u50b5\u5238\u6295\u8cc7',ssUrlPrefix + 'IndividualInvestors/HotQA/Category5/index.htm','ShowRelResources==TRUE','ShowThirdLevelNav==FALSE');
g_navNode_2_3=g_navNode_2.addNode('2157','\u8cc7\u7522\u914d\u7f6e',ssUrlPrefix + 'IndividualInvestors/InvestmentConcept/index.htm','AlternateLogo==emea02017518.gif');
g_navNode_2_3_0=g_navNode_2_3.addNode('2177','\u74b0\u7403\u914d\u7f6e',ssUrlPrefix + 'IndividualInvestors/InvestmentConcept/GlobalAllocation/index.htm','AlternateLogo==emea02017518.gif','ShowRelResources==TRUE');
g_navNode_2_3_1=g_navNode_2_3.addNode('2178','\u91cd\u8981\u6295\u8cc7\u89c0\u5ff5',ssUrlPrefix + 'IndividualInvestors/InvestmentConcept/GAArticles/index.htm','AlternateLogo==emea02017518.gif','ShowRelResources==TRUE');
g_navNode_2_3_2=g_navNode_2_3.addNode('2179','\u770b\u6f2b\u756b\u5b78\u6295\u8cc7',ssUrlPrefix + 'IndividualInvestors/InvestmentConcept/GAComics/index.htm','AlternateLogo==emea02017518.gif','ShowRelResources==TRUE');
g_navNode_2_5=g_navNode_2.addNode('2159','\u529f\u80fd\u670d\u52d9',ssUrlPrefix + 'IndividualInvestors/Support/index.htm');
g_navNode_2_5_0=g_navNode_2_5.addNode('2186','\u8a8d\u8b58\u8c9d\u840a\u5fb7',ssUrlPrefix + 'IndividualInvestors/Support/AboutUs/index.htm','RedirectURL==2203','ShowRelResources==TRUE');
g_navNode_2_5_0_0=g_navNode_2_5_0.addNode('2202','\u8a8d\u8b58\u8c9d\u840a\u5fb7',ssUrlPrefix + 'IndividualInvestors/Support/AboutUs/Overview/index.htm','AlternateLogo==emea02017518.gif','DoNotShowInNavigation==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_0_1=g_navNode_2_5_0.addNode('2203','\u9023\u7d61\u6211\u5011',ssUrlPrefix + 'IndividualInvestors/Support/AboutUs/ContactUs/index.htm','AlternateLogo==emea02017518.gif','ShowThirdLevelNav==TRUE');
g_navNode_2_5_1=g_navNode_2_5.addNode('2187','\u5e38\u898b\u554f\u7b54',ssUrlPrefix + 'IndividualInvestors/Support/FAQ/index.htm','AlternateLogo==emea02017518.gif','ShowRelResources==TRUE');
g_navNode_2_5_2=g_navNode_2_5.addNode('2188','\u92b7\u552e\u6a5f\u69cb',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/index.htm','AlternateLogo==emea02017518.gif','RedirectURL==2805','ShowRelResources==TRUE');
g_navNode_2_5_2_0=g_navNode_2_5_2.addNode('3249','\u80a1\u7968\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributors-eq/index.htm','RedirectURL==2805');
g_navNode_2_5_2_0_0=g_navNode_2_5_2_0.addNode('2805','\u7f8e\u6d32\u80a1\u7968\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributors-eq/TAB1/index.htm','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_2_0_1=g_navNode_2_5_2_0.addNode('2806','\u6b50\u6d32\u80a1\u7968\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributors-eq/TAB2/index.htm','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_2_0_2=g_navNode_2_5_2_0.addNode('2807','\u74b0\u7403\u80a1\u7968\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributors-eq/TAB3/index.htm','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_2_0_3=g_navNode_2_5_2_0.addNode('2832','\u74b0\u7403\u985e\u80a1\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributors-eq/TAB4/index.htm','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_2_0_4=g_navNode_2_5_2_0.addNode('2833','\u592a\u5e73\u6d0b\u80a1\u7968\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributors-eq/TAB5/index.htm','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_2_1=g_navNode_2_5_2.addNode('3250','\u6df7\u5408\u8cc7\u7522\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributiorsBL/index.htm','RedirectURL==3253','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_2_1_0=g_navNode_2_5_2_1.addNode('3253','\u6df7\u5408\u8cc7\u7522\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributiorsBL/TAB1/index.htm','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_2_2=g_navNode_2_5_2.addNode('3251','\u50b5\u5238\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributors-fi/index.htm','RedirectURL==3254');
g_navNode_2_5_2_2_0=g_navNode_2_5_2_2.addNode('3254','\u74b0\u7403\u50b5\u5238\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributors-fi/TAB1/index.htm','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_2_2_1=g_navNode_2_5_2_2.addNode('3255','\u4e9e\u6d32\u50b5\u5238\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributors-fi/TAB2/index.htm','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_2_2_2=g_navNode_2_5_2_2.addNode('3256','\u7f8e\u570b\u50b5\u5238\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributors-fi/TAB3/index.htm','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_2_2_3=g_navNode_2_5_2_2.addNode('3257','\u6b50\u6d32\u50b5\u5238\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributors-fi/TAB4/index.htm','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_5_2_3=g_navNode_2_5_2.addNode('3252','\u8ca8\u5e63\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributors-mm/index.htm','RedirectURL==3258');
g_navNode_2_5_2_3_0=g_navNode_2_5_2_3.addNode('3258','\u8ca8\u5e63\u578b\u57fa\u91d1',ssUrlPrefix + 'IndividualInvestors/Support/DistributionChannels/distributors-mm/TAB1/index.htm','ShowNavInTabs==TRUE','ShowRelResources==TRUE','ShowThirdLevelNav==TRUE');
g_navNode_2_6=g_navNode_2.addNode('4937','News',ssUrlPrefix + 'IndividualInvestors/News/index.htm','DoNotShowInNavigation==TRUE','RedirectURL==4938');
g_navNode_2_6_0=g_navNode_2_6.addNode('4938','Press Release',ssUrlPrefix + 'IndividualInvestors/News/PressRelease/index.htm','DoNotShowInNavigation==TRUE','ShowRelResources==TRUE');
g_navNode_6=g_navNode_Root.addNode('5266','multimedia',ssUrlPrefix + 'multimedia/index.htm','DoNotShowInNavigation==TRUE','RedirectURL==5267');
g_navNode_6_0=g_navNode_6.addNode('5267','player',ssUrlPrefix + 'multimedia/player/index.htm','AdditionalCSS==groups/globaltemplates/documents/web_asset/blkinternet.css,groups/globaltemplates/documents/web_asset/emeacss.css','DoNotShowInNavigation==TRUE','NotComplianceProtected==TRUE');
g_navNode_8=g_navNode_Root.addNode('5812','09-eCard',ssUrlPrefix + '09-eCard/index.htm','DoNotShowInNavigation==TRUE');
g_navNode_9=g_navNode_Root.addNode('5941','ecard',ssUrlPrefix + 'ecard/index.htm','DoNotShowInNavigation==TRUE');
g_navNode_9_0=g_navNode_9.addNode('5942','2010',ssUrlPrefix + 'ecard/2010/index.htm');
g_navNode_10=g_navNode_Root.addNode('6061','Thank You',ssUrlPrefix + 'ThankYou/index.htm','AlternateLogoHeight==115','HideTabs==TRUE','ShowRelResources==TRUE');
