<!--
function createLeftMenu() {
	var	i,l;
	var	heading='Rates';
	var headlink='href="http://sc.hangseng.com/gb/www.hangseng.com/hsb/eng/rate/home/index.html" target="_top"';
	var	item=new Array(
		{text:'HKD Prime Rate',	link:'href="http://sc.hangseng.com/gb/www.hangseng.com/hsb/eng/rate/prate/index.html" target="_top"'},
		{text:'Hong Kong Interbank Offered Rate',	link:'href="http://sc.hangseng.com/gb/www.hangseng.com/hsb/eng/rate/hibor/index.html" target="_top"'},
		{text:'HKD & Foreign Currency Savings Deposit Rates',	link:'href="http://sc.hangseng.com/gb/www.hangseng.com/hsb/eng/rate/saving/index.html" target="_top"'},
		{text:'HKD Time Deposit Rates',	link:'href="http://sc.hangseng.com/gb/www.hangseng.com/hsb/eng/rate/hkdtmd/index.html" target="_top"'},	
		{text:'USD Time Deposit Rates',	link:'href="http://sc.hangseng.com/gb/www.hangseng.com/hsb/eng/rate/usdtmd/index.html" target="_top"'},
		{text:'Foreign Currency Time Deposit Rates',	link:'href="http://sc.hangseng.com/gb/www.hangseng.com/hsb/eng/rate/fcytmd/index.html" target="_top"'},
		{text:'Foreign Currency  Notes Exchange Rates',	link:'href="http://sc.hangseng.com/gb/www.hangseng.com/hsb/eng/rate/hkdnotes/index.html" target="_top"'},
		{text:'Foreign Currency  T/T Exchange Rates ',	link:'href="http://sc.hangseng.com/gb/www.hangseng.com/hsb/eng/rate/hkdtt/index.html" target="_top"'},
		{text:'MaxiInterest Deposit Rates',	link:'href="http://www.hangseng.com/hsb/eng/mar/pdf/maxtable.pdf" target="_blank"'},
		{text:'Fund Prices',	link:'href="http://sc.hangseng.com/gb/www.hangseng.com/einvc/eng/disclm.asp?app=eINVCFundHouseListDetails" target="_blank"'},
		{text:'Gold Prices',	link:'href="http://sc.hangseng.com/gb/www.hangseng.com/hsb/eng/rate/gp/index.html" target="_top"'},
		{text:'Retail Bond List',	link:'href="http://www.hangseng.com/hsb/eng/user/try/pdf/issuer.pdf" target="_blank"'}
	);	
	var	html='';
	var	c=getID(new	String(parent.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/rate/';
//	if (s.indexOf(b)==-1)
//		b='/hsb/eng/mar/onr/';
	var	p=s.indexOf(b)+b.length
	if (p>0) {
		s=s.substr(p);
		p=s.indexOf('/');
		s=s.substr(0,p);
	}
	return s;
}
//-->
