







// Generation Of BreadCrumbs

function QueryString(key)
{
	var value = null;
	for (var i=0;i<QueryString.keys.length;i++)
	{
		if (QueryString.keys[i]==key)
		{
			value = QueryString.values[i];
			break;
		}
	}
	return value;
}
QueryString.keys = new Array();
QueryString.values = new Array();

function QueryString_Parse()
{
	var query = window.location.search.substring(1);
	var pairs = query.split("&");
	
	for (var i=0;i<pairs.length;i++)
	{
		var pos = pairs[i].indexOf('=');
		if (pos >= 0)
		{
			var argname = pairs[i].substring(0,pos);
			var value = pairs[i].substring(pos+1);
			QueryString.keys[QueryString.keys.length] = argname;
			QueryString.values[QueryString.values.length] = value;		
		}
	}

}

function getBreadCrumbs(bcid)
{
					
 	 

if(bcid == "M1") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; Products & Services");
if(bcid == "M1_C1") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/products_services/overview_products.shtm?bcid=M1'>Products & Services</a> &raquo; Overview");
if(bcid == "M1_C2") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/products_services/overview_products.shtm?bcid=M1'>Products & Services</a> &raquo; iOCBC Internet Trading");
if(bcid == "M1_C3") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/products_services/overview_products.shtm?bcid=M1'>Products & Services</a> &raquo; iOCBC Mobile Trading");
if(bcid == "M1_C10") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/products_services/overview_products.shtm?bcid=M1'>Products & Services</a> &raquo; ShareInvest");
if(bcid == "M1_C4") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/products_services/overview_products.shtm?bcid=M1'>Products & Services</a> &raquo; Share Financing Account");
if(bcid == "M1_C5") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/products_services/overview_products.shtm?bcid=M1'>Products & Services</a> &raquo; Managed Account");
if(bcid == "M1_C6") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/products_services/overview_products.shtm?bcid=M1'>Products & Services</a> &raquo; Share Borrowing Account");
if(bcid == "M1_C7") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/products_services/overview_products.shtm?bcid=M1'>Products & Services</a> &raquo; OCBC AIS");
if(bcid == "M1_C8") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/products_services/overview_products.shtm?bcid=M1'>Products & Services</a> &raquo; Forex Trading");
if(bcid == "M1_C9") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/products_services/overview_products.shtm?bcid=M1'>Products & Services</a> &raquo; Young Investor Pack");
if(bcid == "M2") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; Trading Info & Fees");
if(bcid == "M2_C1") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/financial_market/overview_markets.shtm?bcid=M2'>Trading Info & Fees</a> &raquo; Overview");
if(bcid == "M2_C8") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/financial_market/overview_markets.shtm?bcid=M2'>Trading Info & Fees</a> &raquo; U.S.");
if(bcid == "M2_C2") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/financial_market/overview_markets.shtm?bcid=M2'>Trading Info & Fees</a> &raquo; Singapore");
if(bcid == "M2_C3") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/financial_market/overview_markets.shtm?bcid=M2'>Trading Info & Fees</a> &raquo; Malaysia");
if(bcid == "M2_C4") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/financial_market/overview_markets.shtm?bcid=M2'>Trading Info & Fees</a> &raquo; Hong Kong ");
if(bcid == "M2_C5") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/financial_market/overview_markets.shtm?bcid=M2'>Trading Info & Fees</a> &raquo; Thailand");
if(bcid == "M2_C6") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/financial_market/overview_markets.shtm?bcid=M2'>Trading Info & Fees</a> &raquo; Indonesia");
if(bcid == "M2_C7") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/financial_market/overview_markets.shtm?bcid=M2'>Trading Info & Fees</a> &raquo; Philippines");
if(bcid == "M3") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; FAQ");
if(bcid == "M3_C1") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/faqs/faq_iocbc.shtm?bcid=M3'>FAQ</a> &raquo; iOCBC Trading Account");
if(bcid == "M3_C2") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/faqs/faq_iocbc.shtm?bcid=M3'>FAQ</a> &raquo; Share Financing Account");
if(bcid == "M3_C3") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/faqs/faq_iocbc.shtm?bcid=M3'>FAQ</a> &raquo; Managed Account");
if(bcid == "M3_C4") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/faqs/faq_iocbc.shtm?bcid=M3'>FAQ</a> &raquo; Share Borrowing Account");
if(bcid == "M3_C5") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/faqs/faq_iocbc.shtm?bcid=M3'>FAQ</a> &raquo; Young Investor Pack");
if(bcid == "M3_C6") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/faqs/faq_iocbc.shtm?bcid=M3'>FAQ</a> &raquo; Info on Corporate Actions");
if(bcid == "M4") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; Help");
if(bcid == "M4_C1") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='#?bcid=M4'>Help</a> &raquo; User Guide");
if(bcid == "M4_C2") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='#?bcid=M4'>Help</a> &raquo; Technical Support");
if(bcid == "M4_C2_S1") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='#?bcid=M4'>Help</a> &raquo; <a href='#?bcid=M4_C2' target='_blank'>Technical Support</a> &raquo; Basic Troubleshooting Steps");
if(bcid == "M4_C2_S2") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='#?bcid=M4'>Help</a> &raquo; <a href='#?bcid=M4_C2' target='_blank'>Technical Support</a> &raquo; Internet Explorer 7.0 Setting");
if(bcid == "M5") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; Customer Service");
if(bcid == "M5_C1") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/forms/overview_ClientServices.shtm?bcid=M5'>Customer Service</a> &raquo; Overview");
if(bcid == "M5_C2") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/forms/overview_ClientServices.shtm?bcid=M5'>Customer Service</a> &raquo; Account Opening Forms");
if(bcid == "M5_C3") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/forms/overview_ClientServices.shtm?bcid=M5'>Customer Service</a> &raquo; Other Forms");
if(bcid == "M5_C5") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/forms/overview_ClientServices.shtm?bcid=M5'>Customer Service</a> &raquo; Useful Links");
if(bcid == "M5_C4") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/forms/overview_ClientServices.shtm?bcid=M5'>Customer Service</a> &raquo; Policies & Conditions");
if(bcid == "M5_C4_S1") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/forms/overview_ClientServices.shtm?bcid=M5'>Customer Service</a> &raquo; <a href='#?bcid=M5_C4' target='_self'>Policies & Conditions</a> &raquo; Terms & Conditions");
if(bcid == "M5_C4_S2") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/forms/overview_ClientServices.shtm?bcid=M5'>Customer Service</a> &raquo; <a href='#?bcid=M5_C4' target='_self'>Policies & Conditions</a> &raquo; Security & Privacy Policy");
if(bcid == "M5_C4_S3") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/forms/overview_ClientServices.shtm?bcid=M5'>Customer Service</a> &raquo; <a href='#?bcid=M5_C4' target='_self'>Policies & Conditions</a> &raquo; Security Guidelines");
if(bcid == "M5_C4_S4") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/forms/overview_ClientServices.shtm?bcid=M5'>Customer Service</a> &raquo; <a href='#?bcid=M5_C4' target='_self'>Policies & Conditions</a> &raquo; <a href='/other_info/security_guidelines.shtm?bcid=M5_C4_S3' target='_self'>Security Guidelines</a> &raquo; Security Tips");
if(bcid == "M5_C4_S5") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/forms/overview_ClientServices.shtm?bcid=M5'>Customer Service</a> &raquo; <a href='#?bcid=M5_C4' target='_self'>Policies & Conditions</a> &raquo; <a href='/other_info/security_guidelines.shtm?bcid=M5_C4_S3' target='_self'>Security Guidelines</a> &raquo; Prohibited Practices");
if(bcid == "M5_C4_S6") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/other_info/forms/overview_ClientServices.shtm?bcid=M5'>Customer Service</a> &raquo; <a href='#?bcid=M5_C4' target='_self'>Policies & Conditions</a> &raquo; <a href='/other_info/security_guidelines.shtm?bcid=M5_C4_S3' target='_self'>Security Guidelines</a> &raquo; Phishing Alert");
if(bcid == "M8") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; Research");
if(bcid == "M8_C1") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/research/overview_research.shtm?bcid=M8'>Research</a> &raquo; Overview");
if(bcid == "M8_C2") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/research/overview_research.shtm?bcid=M8'>Research</a> &raquo; OCBC Investment Research");
if(bcid == "M8_C3") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/research/overview_research.shtm?bcid=M8'>Research</a> &raquo; Treasury Research");
if(bcid == "M8_C4") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/research/overview_research.shtm?bcid=M8'>Research</a> &raquo; Company Announcement");
if(bcid == "M8_C5") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/research/overview_research.shtm?bcid=M8'>Research</a> &raquo; Exchange Traded Fund (ETF)");
if(bcid == "M6") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; Warrants Portal");
if(bcid == "M6_C1") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/warrant/index.shtm?bcid=M6'>Warrants Portal</a> &raquo; Warrants Data");
if(bcid == "M6_C3") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/warrant/index.shtm?bcid=M6'>Warrants Portal</a> &raquo; Warrants Research");
if(bcid == "M6_C4") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/warrant/index.shtm?bcid=M6'>Warrants Portal</a> &raquo; Warrants Insights");
if(bcid == "M6_C5") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/warrant/index.shtm?bcid=M6'>Warrants Portal</a> &raquo; Warrants Guide");
if(bcid == "M6_C6") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; <a href='/warrant/index.shtm?bcid=M6'>Warrants Portal</a> &raquo; Expert Views");
if(bcid == "M9") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; Newsroom");
if(bcid == "M12") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; Careers");
if(bcid == "M11") document.write("<B>You're in : </B><a href='/main/index.shtm'>Home</a> &raquo; Contact Us");			
	
}

//GENERATION OF BREADCRUMBS - OVER





// Publishing Tree ...

function getModuleID(key){	
	var path = key.split("_");
	return path[0];
}

function getModuleName(mid)
{
		
 	 

if(mid == "M1") document.write("Products & Services");
if(mid == "M2") document.write("Trading Info & Fees");
if(mid == "M3") document.write("FAQ");
if(mid == "M4") document.write("Help");
if(mid == "M5") document.write("Customer Service");
if(mid == "M8") document.write("Research");
if(mid == "M6") document.write("Warrants Portal");
if(mid == "M9") document.write("Newsroom");
if(mid == "M12") document.write("Careers");
if(mid == "M11") document.write("Contact Us");
	
}




// Publishing Tree ...

USETEXTLINKS = 1
STARTALLOPEN = 0
USEFRAMES = 0
USEICONS = 0
WRAPTEXT = 1
PERSERVESTATE = 1

 	 
foldersTree = gFld("<img src='/images/common/icon_home.gif' align='absmiddle' border='0' vspace='3'><span class='clsBodyContentBold'><a href='/main/index.shtm' class='clsBodyContentBold'>&nbsp;Home</a></span>")

function setTree(module_id)
{

 	 
if(module_id == "M1"){
M1 = insFld(foldersTree, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Products & Services</span>", "/products_services/overview_products.shtm?bcid=M1"))
M1_C1 = insFld(M1, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Overview</span>", "/products_services/overview_products.shtm?bcid=M1_C1"))
M1_C2 = insFld(M1, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;iOCBC Internet Trading</span>", "/products_services/iOCBC_trading_acct.shtm?bcid=M1_C2"))
M1_C3 = insFld(M1, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;iOCBC Mobile Trading</span>", "/products_services/iOCBC_mobile_trading.shtm?bcid=M1_C3"))
M1_C10 = insFld(M1, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;ShareInvest</span>", "/promotions/promo_ShareInvest.shtm?bcid=M1_C10"))
M1_C4 = insFld(M1, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Share Financing Account</span>", "/products_services/share_margin_acct.shtm?bcid=M1_C4"))
M1_C5 = insFld(M1, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Managed Account</span>", "/products_services/managed_acct.shtm?bcid=M1_C5"))
M1_C6 = insFld(M1, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Share Borrowing Account</span>", "/products_services/share_borrow_acct.shtm?bcid=M1_C6"))
M1_C7 = insFld(M1, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;OCBC AIS</span>", "/products_services/AIS.shtm?bcid=M1_C7"))
M1_C8 = insFld(M1, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Forex Trading</span>", "http://www.osplfx.com/?bcid=M1_C8"))
M1_C9 = insFld(M1, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Young Investor Pack</span>", "/products_services/young_investor_pack.shtm?bcid=M1_C9"))}if(module_id == "M2"){
M2 = insFld(foldersTree, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Trading Info & Fees</span>", "/financial_market/overview_markets.shtm?bcid=M2"))
M2_C1 = insFld(M2, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Overview</span>", "/financial_market/overview_markets.shtm?bcid=M2_C1"))
M2_C8 = insFld(M2, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;U.S.</span>", "/financial_market/US.shtm?bcid=M2_C8"))
M2_C2 = insFld(M2, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Singapore</span>", "/financial_market/singapore.shtm?bcid=M2_C2"))
M2_C3 = insFld(M2, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Malaysia</span>", "/financial_market/malaysia.shtm?bcid=M2_C3"))
M2_C4 = insFld(M2, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Hong Kong </span>", "/financial_market/hong_kong.shtm?bcid=M2_C4"))
M2_C5 = insFld(M2, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Thailand</span>", "/financial_market/thailand.shtm?bcid=M2_C5"))
M2_C6 = insFld(M2, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Indonesia</span>", "/financial_market/indonesia.shtm?bcid=M2_C6"))
M2_C7 = insFld(M2, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Philippines</span>", "/financial_market/philippines.shtm?bcid=M2_C7"))}if(module_id == "M3"){
M3 = insFld(foldersTree, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;FAQ</span>", "/other_info/faqs/faq_iocbc.shtm?bcid=M3"))
M3_C1 = insFld(M3, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;iOCBC Trading Account</span>", "/other_info/faqs/faq_iocbc.shtm?bcid=M3_C1"))
M3_C2 = insFld(M3, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Share Financing Account</span>", "/other_info/faqs/faq_sma.shtm?bcid=M3_C2"))
M3_C3 = insFld(M3, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Managed Account</span>", "/other_info/faqs/faq_ma.shtm?bcid=M3_C3"))
M3_C4 = insFld(M3, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Share Borrowing Account</span>", "/other_info/faqs/faq_sbl.shtm?bcid=M3_C4"))
M3_C5 = insFld(M3, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Young Investor Pack</span>", "/other_info/faqs/faq_yip.shtm?bcid=M3_C5"))
M3_C6 = insFld(M3, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Info on Corporate Actions</span>", "/other_info/faqs/faq_CorpAction.shtm?bcid=M3_C6"))}if(module_id == "M4"){
M4 = insFld(foldersTree, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Help</span>", "#?bcid=M4"))
M4_C1 = insFld(M4, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;User Guide</span>", "/other_info/help/UserGuide.shtm?bcid=M4_C1"))
M4_C2 = insFld(M4, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Technical Support</span>", "#?bcid=M4_C2"))
M4_C2_S1 = insFld(M4_C2, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Basic Troubleshooting Steps</span>", "/PDF/iOCBC_TechSupport.pdf?bcid=M4_C2_S1"))
M4_C2_S2 = insFld(M4_C2, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Internet Explorer 7.0 Setting</span>", "/PDF/TechGuide_IE7.pdf?bcid=M4_C2_S2"))}if(module_id == "M5"){
M5 = insFld(foldersTree, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Customer Service</span>", "/other_info/forms/overview_ClientServices.shtm?bcid=M5"))
M5_C1 = insFld(M5, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Overview</span>", "/other_info/forms/overview_ClientServices.shtm?bcid=M5_C1"))
M5_C2 = insFld(M5, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Account Opening Forms</span>", "/other_info/forms/form_new_client.shtm?bcid=M5_C2"))
M5_C3 = insFld(M5, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Other Forms</span>", "/other_info/forms/form_existing_client.shtm?bcid=M5_C3"))
M5_C5 = insFld(M5, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Useful Links</span>", "/other_info/usefulLinks.shtm?bcid=M5_C5"))
M5_C4 = insFld(M5, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Policies & Conditions</span>", "#?bcid=M5_C4"))
M5_C4_S1 = insFld(M5_C4, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Terms & Conditions</span>", "/other_info/terms_conditions.shtm?bcid=M5_C4_S1"))
M5_C4_S2 = insFld(M5_C4, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Security & Privacy Policy</span>", "/other_info/security_policy.shtm?bcid=M5_C4_S2"))
M5_C4_S3 = insFld(M5_C4, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Security Guidelines</span>", "/other_info/security_guidelines.shtm?bcid=M5_C4_S3"))
insDoc(M5_C4_S3, gLnk("S", "<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Security Tips</span>", "/other_info/security_tips_spyware.shtm?bcid=M5_C4_S4"))
insDoc(M5_C4_S3, gLnk("S", "<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Prohibited Practices</span>", "/other_info/prohibited_practices.shtm?bcid=M5_C4_S5"))
insDoc(M5_C4_S3, gLnk("S", "<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Phishing Alert</span>", "/other_info/phishing_alert.shtm?bcid=M5_C4_S6"))}if(module_id == "M8"){
M8 = insFld(foldersTree, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Research</span>", "/research/overview_research.shtm?bcid=M8"))
M8_C1 = insFld(M8, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Overview</span>", "/research/overview_research.shtm?bcid=M8_C1"))
M8_C2 = insFld(M8, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;OCBC Investment Research</span>", "http://www.ocbcresearch.com/?bcid=M8_C2"))
M8_C3 = insFld(M8, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Treasury Research</span>", "http://www.ocbc.com/global/research/Gco_Rsc_Overview.shtm?bcid=M8_C3"))
M8_C4 = insFld(M8, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Company Announcement</span>", "http://www.sgx.com/?bcid=M8_C4"))
M8_C5 = insFld(M8, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Exchange Traded Fund (ETF)</span>", "http://www.lyxoretf.com.sg/en/disclaimer.php?code=HOME&page=?bcid=M8_C5"))}if(module_id == "M6"){
M6 = insFld(foldersTree, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Warrants Portal</span>", "/warrant/index.shtm?bcid=M6"))
M6_C1 = insFld(M6, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Warrants Data</span>", "/warrant/wrtdata.shtm?bcid=M6_C1"))
M6_C3 = insFld(M6, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Warrants Research</span>", "/warrant/wrtresearch.shtm?bcid=M6_C3"))
M6_C4 = insFld(M6, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Warrants Insights</span>", "/warrant/wrtinsights.shtm?bcid=M6_C4"))
M6_C5 = insFld(M6, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Warrants Guide</span>", "/warrant/wrtguide.shtm?bcid=M6_C5"))
M6_C6 = insFld(M6, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Expert Views</span>", "/warrant/expertviews.shtm?bcid=M6_C6"))}if(module_id == "M9"){
M9 = insFld(foldersTree, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Newsroom</span>", "/newsroom/articles.shtm?bcid=M9"))}if(module_id == "M12"){
M12 = insFld(foldersTree, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Careers</span>", "/other_info/career.shtm?bcid=M12"))}if(module_id == "M11"){
M11 = insFld(foldersTree, gFld("<img src='/images/common/arrowclose.gif' align='absmiddle' border='0'><span class='clsBodyContent'>&nbsp;Contact Us</span>", "/other_info/contact_us.shtm?bcid=M11"))}			


}

// Publishing Tree is Over
			
 






_menuCloseDelay=500           // The time delay for menus to remain visible on mouse out
_menuOpenDelay=150            // The time delay before menus open on mouse over
_subOffsetTop=0              // Sub menu top offset
_subOffsetLeft=0            // Sub menu left offset



with(menuStyle=new mm_style()){
onbgcolor="#e32424";
oncolor="#ffffff";
offbgcolor="#ffffff";
offcolor="#000000";
bordercolor="#B92C2C";
borderstyle="solid";
borderwidth=1;
separatorcolor="#B92C2C";
separatorsize="1";
padding=4;
fontsize="11px";
fontstyle="normal";
fontfamily="Arial";
//pagecolor="black";
//pagebgcolor="#82B6D7";
headercolor="#000000";
headerbgcolor="#ffffff";
subimage="/images/common/arrow.gif";
subimagepadding="2";
}

horizontalStyle= new copyOf(menuStyle)
horizontalStyle.offbgcolor="#B92C2C"
horizontalStyle.offcolor="#FFFFFF"
horizontalStyle.separatorcolor="#CAA072";
horizontalStyle.fontweight="bold";
horizontalStyle.fontsize="11px";
horizontalStyle.subimage="";




 	 

with(milonic=new menuname("M1")){style=menuStyle;overflow="scroll";
aI("text=Overview;url=/products_services/overview_products.shtm?bcid=M1_C1;target=_self;");
aI("text=iOCBC Internet Trading;url=/products_services/iOCBC_trading_acct.shtm?bcid=M1_C2;target=_self;");
aI("text=iOCBC Mobile Trading;url=/products_services/iOCBC_mobile_trading.shtm?bcid=M1_C3;target=_self;");
aI("text=ShareInvest;url=/promotions/promo_ShareInvest.shtm?bcid=M1_C10;target=_self;");
aI("text=Share Financing Account;url=/products_services/share_margin_acct.shtm?bcid=M1_C4;target=_self;");
aI("text=Managed Account;url=/products_services/managed_acct.shtm?bcid=M1_C5;target=_self;");
aI("text=Share Borrowing Account;url=/products_services/share_borrow_acct.shtm?bcid=M1_C6;target=_self;");
aI("text=OCBC AIS;url=/products_services/AIS.shtm?bcid=M1_C7;target=_self;");
aI("text=Forex Trading;url=http://www.osplfx.com/?bcid=M1_C8;target=_blank;");
aI("text=Young Investor Pack;url=/products_services/young_investor_pack.shtm?bcid=M1_C9;target=_self;");}
with(milonic=new menuname("M2")){style=menuStyle;overflow="scroll";
aI("text=Overview;url=/financial_market/overview_markets.shtm?bcid=M2_C1;target=_self;");
aI("text=U.S.;url=/financial_market/US.shtm?bcid=M2_C8;target=_self;");
aI("text=Singapore;url=/financial_market/singapore.shtm?bcid=M2_C2;target=_self;");
aI("text=Malaysia;url=/financial_market/malaysia.shtm?bcid=M2_C3;target=_self;");
aI("text=Hong Kong ;url=/financial_market/hong_kong.shtm?bcid=M2_C4;target=_self;");
aI("text=Thailand;url=/financial_market/thailand.shtm?bcid=M2_C5;target=_self;");
aI("text=Indonesia;url=/financial_market/indonesia.shtm?bcid=M2_C6;target=_self;");
aI("text=Philippines;url=/financial_market/philippines.shtm?bcid=M2_C7;target=_self;");}
with(milonic=new menuname("M3")){style=menuStyle;overflow="scroll";
aI("text=iOCBC Trading Account;url=/other_info/faqs/faq_iocbc.shtm?bcid=M3_C1;target=_self;");
aI("text=Share Financing Account;url=/other_info/faqs/faq_sma.shtm?bcid=M3_C2;target=_self;");
aI("text=Managed Account;url=/other_info/faqs/faq_ma.shtm?bcid=M3_C3;target=_self;");
aI("text=Share Borrowing Account;url=/other_info/faqs/faq_sbl.shtm?bcid=M3_C4;target=_self;");
aI("text=Young Investor Pack;url=/other_info/faqs/faq_yip.shtm?bcid=M3_C5;target=_self;");
aI("text=Info on Corporate Actions;url=/other_info/faqs/faq_CorpAction.shtm?bcid=M3_C6;target=_self;");}
with(milonic=new menuname("M4")){style=menuStyle;overflow="scroll";
aI("text=User Guide;url=/other_info/help/UserGuide.shtm?bcid=M4_C1;target=_self;");
aI("text=Technical Support;url=#?bcid=M4_C2;showmenu=M4_C2;");}
with(milonic=new menuname("M5")){style=menuStyle;overflow="scroll";
aI("text=Overview;url=/other_info/forms/overview_ClientServices.shtm?bcid=M5_C1;target=_self;");
aI("text=Account Opening Forms;url=/other_info/forms/form_new_client.shtm?bcid=M5_C2;target=_self;");
aI("text=Other Forms;url=/other_info/forms/form_existing_client.shtm?bcid=M5_C3;target=_self;");
aI("text=Useful Links;url=/other_info/usefulLinks.shtm?bcid=M5_C5;target=_self;");
aI("text=Policies & Conditions;url=#?bcid=M5_C4;showmenu=M5_C4;");}
with(milonic=new menuname("M8")){style=menuStyle;overflow="scroll";
aI("text=Overview;url=/research/overview_research.shtm?bcid=M8_C1;target=_self;");
aI("text=OCBC Investment Research;url=http://www.ocbcresearch.com/?bcid=M8_C2;target=_blank;");
aI("text=Treasury Research;url=http://www.ocbc.com/global/research/Gco_Rsc_Overview.shtm?bcid=M8_C3;target=_blank;");
aI("text=Company Announcement;url=http://www.sgx.com/?bcid=M8_C4;target=_blank;");
aI("text=Exchange Traded Fund (ETF);url=http://www.lyxoretf.com.sg/en/disclaimer.php?code=HOME&page=?bcid=M8_C5;target=_blank;");}
with(milonic=new menuname("M6")){style=menuStyle;overflow="scroll";
aI("text=Warrants Data;url=/warrant/wrtdata.shtm?bcid=M6_C1;target=_self;");
aI("text=Warrants Research;url=/warrant/wrtresearch.shtm?bcid=M6_C3;target=_self;");
aI("text=Warrants Insights;url=/warrant/wrtinsights.shtm?bcid=M6_C4;target=_self;");
aI("text=Warrants Guide;url=/warrant/wrtguide.shtm?bcid=M6_C5;target=_self;");
aI("text=Expert Views;url=/warrant/expertviews.shtm?bcid=M6_C6;target=_self;");}
with(milonic=new menuname("M9")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M12")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M11")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M1_C1")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M1_C2")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M1_C3")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M1_C10")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M1_C4")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M1_C5")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M1_C6")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M1_C7")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M1_C8")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M1_C9")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M2_C1")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M2_C8")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M2_C2")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M2_C3")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M2_C4")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M2_C5")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M2_C6")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M2_C7")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M3_C1")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M3_C2")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M3_C3")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M3_C4")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M3_C5")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M3_C6")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M4_C1")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M4_C2")){style=menuStyle;overflow="scroll";
aI("text=Basic Troubleshooting Steps;url=/PDF/iOCBC_TechSupport.pdf?bcid=M4_C2_S1;");
aI("text=Internet Explorer 7.0 Setting;url=/PDF/TechGuide_IE7.pdf?bcid=M4_C2_S2;");}
with(milonic=new menuname("M5_C1")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M5_C2")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M5_C3")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M5_C5")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M5_C4")){style=menuStyle;overflow="scroll";
aI("text=Terms & Conditions;url=/other_info/terms_conditions.shtm?bcid=M5_C4_S1;");
aI("text=Security & Privacy Policy;url=/other_info/security_policy.shtm?bcid=M5_C4_S2;");
aI("text=Security Guidelines;url=/other_info/security_guidelines.shtm?bcid=M5_C4_S3;showmenu=M5_C4_S3;");}
with(milonic=new menuname("M8_C1")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M8_C2")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M8_C3")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M8_C4")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M8_C5")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M6_C1")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M6_C3")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M6_C4")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M6_C5")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M6_C6")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M4_C2_S1")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M4_C2_S2")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M5_C4_S1")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M5_C4_S2")){style=menuStyle;overflow="scroll";}
with(milonic=new menuname("M5_C4_S3")){style=menuStyle;overflow="scroll";
aI("text=Security Tips;url=/other_info/security_tips_spyware.shtm?bcid=M5_C4_S4;");
aI("text=Prohibited Practices;url=/other_info/prohibited_practices.shtm?bcid=M5_C4_S5;");
aI("text=Phishing Alert;url=/other_info/phishing_alert.shtm?bcid=M5_C4_S6;");}			
	
			
drawMenus();

 





// Publishing Main Menu

function drawMainMenu(){


with(milonic=new menuname("Main Menu")){
alwaysvisible=1;orientation="horizontal";style=horizontalStyle;position="relative";
aI("text=&nbsp;Login&nbsp;target=_top;url=https://www1.iocbc.com/iocbc_secure_client.jsp");
aI("text=&nbsp;Products & Services&nbsp;url=/products_services/overview_products.shtm?bcid=M1;showmenu=M1;");
aI("text=&nbsp;Trading Info & Fees&nbsp;url=/financial_market/overview_markets.shtm?bcid=M2;showmenu=M2;");
aI("text=&nbsp;FAQ&nbsp;url=/other_info/faqs/faq_iocbc.shtm?bcid=M3;showmenu=M3;");
aI("text=&nbsp;Help&nbsp;url=#?bcid=M4;showmenu=M4;");
aI("text=&nbsp;Customer Service&nbsp;url=/other_info/forms/overview_ClientServices.shtm?bcid=M5;showmenu=M5;");
aI("text=&nbsp;Research&nbsp;url=/research/overview_research.shtm?bcid=M8;showmenu=M8;");
aI("text=&nbsp;Warrants Portal&nbsp;url=/warrant/index.shtm?bcid=M6;showmenu=M6;");
aI("text=&nbsp;Newsroom&nbsp;url=/newsroom/articles.shtm?bcid=M9;showmenu=M9;");
aI("text=&nbsp;Careers&nbsp;url=/other_info/career.shtm?bcid=M12;showmenu=M12;");
aI("text=&nbsp;Contact Us&nbsp;url=/other_info/contact_us.shtm?bcid=M11;showmenu=M11;");
}
			


	drawMenus()
}




// Publishing Footer Links

function footerLinks(){


document.write("<a href='/products_services/overview_products.shtm?bcid=M1'>Products & Services</a> | <a href='/financial_market/overview_markets.shtm?bcid=M2'>Trading Info & Fees</a> | <a href='/other_info/faqs/faq_iocbc.shtm?bcid=M3'>FAQ</a> | <a href='#?bcid=M4'>Help</a> | <a href='/other_info/forms/overview_ClientServices.shtm?bcid=M5'>Customer Service</a> | <a href='/research/overview_research.shtm?bcid=M8'>Research</a> | <a href='/warrant/index.shtm?bcid=M6'>Warrants Portal</a> | <a href='/newsroom/articles.shtm?bcid=M9'>Newsroom</a> | <a href='/other_info/career.shtm?bcid=M12'>Careers</a> | <a href='/other_info/contact_us.shtm?bcid=M11'>Contact Us</a> ");			


}



