function WriteAddress(where)
{
	var beijingAddress = 	'<strong>Facility Asia Pte Ltd</strong><br>'
						+ 'Room 609, Building 16, China Central Place<br>'
						+ 'No.89,Jianguo Road Chaoyang District, 100025<br>'
						+ 'TEL:+86 10 6530 5118 FAX:+86 10 6530 5116<br>';
	var singaporeAddress = '<strong>Facility Asia Pte Ltd</strong><br>'
						+ '10 Raeburn Park<br>'
						+ 'Block B #01-10, Singapore 088702<br>'
						+ 'Tel: 65 6325 0910 Fax: 65 6236 0410<br>'
						
	if(where == "beijing" || where == "footer")
		document.write(beijingAddress);
	else if(where == "singapore")
		document.write(singaporeAddress);
}