<!--
function createLeftMenu() {
	var	i,l;
	var	heading='Corporate Responsibility Report 2006';
	var headlink='href="index.html" target="_top"';
	var	item=new Array(
	  {id:'csr1', text:'Chief Executive\'s Message',	link:'href="ceo_message.html" target="_top"'},
	  {id:'csr2', text:'About this Report',		link:'href="about_this_report.html" target="_top"'},
	  {id:'csr3', text:'Creating Value for Shareholders',	link:'href="creating_value.html" target="_top"'},
	  {id:'csr4', text:'Our Performance at a Glance',	link:'href="our_performance.html" target="_top"'},
	  {id:'csr5', text:'Managing Our Impacts',	link:'href="our_impacts.html" target="_top"'},
	  {id:'csr6', text:'Serving Our Customers',	link:'href="our_customers.html" target="_top"'},
	  {id:'csr7', text:'Developing Our People',	link:'href="our_people.html" target="_top"'},
	  {id:'csr8', text:'Our Relationships with Suppliers',	link:'href="our_supplier.html" target="_top"'},
	  {id:'csr9', text:'Reaching Out to the Community',	link:'href="our_community.html" target="_top"'},
	  {id:'csr10', text:'Caring for Our Environment',	link:'href="our_environment.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="57a010">';
	html+='<td width="10"><img src="/hsb/com/spacer.gif" width="10"	height="10"></td>';
	html+='<td width="140" ><a '+headlink+' style="text-decoration: none;font-weight: normal;"><font class="navhead">'+heading+'</font></a></td>';
	html+='</tr></table>';
	for	(i=0;i<item.length;i++)	{
		l=getID(item[i].link);
		html+='<table border="0" cellpadding="0" cellspacing="0" width="100%" height="30" bgcolor="#b8e179"><tr><td width="10%" valign="top">&nbsp;</td><td width="90%" >';
		html+='<font class="nav"><a '+item[i].link+'style="text-decoration: none;">';
		if (item[i].id==pageId)
			html+='<font color="#308E1D">'+item[i].text+'</font>';
		else
			html+=item[i].text;
		html+='</a></font>';
		html+='<br></td></tr><tr><td height="1" bgcolor="#FFFFFF" colspan="2"><img src="/common/image/spacer.jpg" width="100%" height="1"></td></tr></table>';
	}
	html+='<table height="100%" width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#b8e179"><tr><td>&nbsp;</td></tr></table>';
	document.write(html);
}

function getID(s)	{
	var	b='/hsb/eng/abo/cc/csr/';
	var	p=s.indexOf(b)+b.length
	if (p>0) {
		s=s.substr(p);
		p=s.indexOf('/');
		s=s.substr(0,p);
	}
	return s;
}
//-->



