

<!--
function createLeftMenu() {
	var	i,l;
	var	heading='Contact Us';
	var headlink='href="/hsb/eng/abo/cu/home/index.html" target="_top"';
	var	item=new Array(
		{text:'Enquiry Hotlines',					link:'href="/hsb/eng/abo/cu/h/index.html" target="_top"'},
		{text:'E-mail Us',						link:'href="javascript:;" onclick="window.open(\'https://www.hangseng.com/contactus/eng/form.asp\',\'emailus\',\'status=yes,scrollbars=yes,resizable=yes,width=650,height=500,left=5,top=5\');"'},
		{text:'Branch / MTR Station Offices / Automated Banking Centres / ATM Addresses',	link:'href="/hsb/eng/abo/cu/ba/index.html" target="_top"'},
		{text:'Prestige Banking Centres',				link:'href="http://www.hangseng.com/e_prestige/prestige_banking_centre.html" target="_top"'},
		{text:'Business Banking Centres',				link:'href="/hsb/eng/abo/cu/bbc/index.html" target="_top"'},
		{text:'Trade Services',						link:'href="/hsb/eng/abo/cu/tfo/index.html" target="_top"'},
		{text:'Hang Seng Bank (China) Limited Head Office and Branches', link:'href="http://www.hangseng.com.cn/1/2/contact-us/mainland-service-network" target="_blank" title="This link may allow you to access another Hang Seng Bank Group website. Please read the terms and conditions of the linked website, which may differ from the terms and conditions of Hang Seng Bank Limited\'s website."'},
		{text:'Macau Branch',						link:'href="/hsb/eng/abo/cu/macbro/index.html" target="_top"'},
		{text:'Representative Offices',				link:'href="/hsb/eng/abo/cu/tpo/index.html" target="_top"'}	
	);
	var	html='';
	var	c=getID(new	String(document.location));
	html+='<table	width="150"	border="0" cellpadding="0" cellspacing="0" bgcolor="#F0F0F0"><tr bgcolor="#000066">';
	html+='<td width="10"><img src="/hsb/com/spacer.gif" width="10"	height="10"></td>';
	html+='<td width="140"><a '+headlink+'><font class="navhead">'+heading+'</font></a></td>';
	html+='</tr></table>';
	html+='<table	width="130"	border="0" cellpadding="0" cellspacing="0"><tr>';
	html+='<td valign="top"><img src="/hsb/com/spacer.gif" width="10"	height="325"></td>';
	html+='<td valign="top"><table width="122" border="0"	cellspacing="0"	cellpadding="0">';
	for	(i=0;i<item.length;i++)	{
		l=getID(item[i].link);
		html+='<tr><td valign="top"><img src="/hsb/com/spacer.gif" width="140" height="5"><br><a '+item[i].link+'>';
		html+='<font class="nav">';
		if (l==c)
			html+='<font color="red">'+item[i].text+'</font>';
		else
			html+=item[i].text;
		html+='</font>';
		html+='</a><br></td></tr>';
	}
	html+='</table></td>';
	html+='</tr></table>';
	document.write(html);
}

function getID(s)	{
	var	b='/hsb/eng/abo/cu/';
	var	p=s.indexOf(b)+b.length
	if (p>0) {
		s=s.substr(p);
		p=s.indexOf('/');
		s=s.substr(0,p);
	}
	return s;
}
//-->
