//message 
function spacer(){
	document.write("<tr>");
	document.write("<td><img src=\"images/space.jpg\" width=\"200\" height=\"2\"></td>");
	document.write("</tr>");
}

function filename(){
	path = location.href;
	file_id = path.lastIndexOf("/");
	file_id2 = path.lastIndexOf(".");
	fname = path.substring(file_id+1,file_id2);
	return fname;
}

function MenuItem(_name,_label,_url,_target)
{
	this.name = _name;
	this.label = _label;
	this.url = _url;
	this.target = _target;
	this.relatives = false;
	this.children = false;
}

var TagLabel = "<tr>";
	TagLabel+= "<td><img name=\"nav_{prefix}{idx}\" border=\"0\" src=\"images/nav_{prefix}{idx}_ro.gif\"  alt=\"{alt}\"></td>";
	TagLabel+= "</tr>";
	
var TagLabelLink = "<tr>";
	TagLabelLink+= "<td><a href=\"{url}\" target=\"{target}\"><img name=\"nav_{prefix}{idx}\" border=\"0\" src=\"images/nav_{prefix}{idx}_ro.gif\"  alt=\"{alt}\"></a></td>";
	TagLabelLink+= "</tr>";
	
var TagLink = "<tr>";
	TagLink+= "<td><a href=\"{url}\" target=\"{target}\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('nav_{prefix}{idx}','','images/nav_{prefix}{idx}_ro.gif',1);MM_displayStatusMsg('{alt}');return document.MM_returnValue\"><img name=\"nav_{prefix}{idx}\" border=\"0\" src=\"images/nav_{prefix}{idx}.gif\"  alt=\"{alt}\"></a></td>";
	TagLink+= "</tr>";

function relativePageChk(name,nameGrp)
{
	if (nameGrp == false || nameGrp == undefined || nameGrp.length <= 0)
	return false;
	
	var grpLen = nameGrp.length;
	for (var i = 0; i < grpLen; i++) { if (name == nameGrp[i]) return true; }
	return false;
}
function pageChk(pageGrp)
{
	if (pageGrp == false || pageGrp.length <= 0)
	return -1;
	
	var idxLvl = new Array();
	var grpLen = pageGrp.length;
	for (var i = 0; i < grpLen; i++)
	{
		if ( filename() == pageGrp[i].name ||
			(filename() != pageGrp[i].name && relativePageChk(filename(),pageGrp[i].relatives) != false) ) {
			idxLvl.push(i);
			return idxLvl;
		} else if (filename() != pageGrp[i].name && pageChk(pageGrp[i].children) >= 0) {
			idxLvl.push(i);
			idxLvl = idxLvl.concat(pageChk(pageGrp[i].children));
			return idxLvl;
		}
	}
	return -1;
}

function convertMenuItem(tag,menuItem,idx,prefix)
{
	var tempCode = tag;
		tempCode = tempCode.replace(/{idx}/g,idx);
		tempCode = tempCode.replace(/{prefix}/g,prefix);
		tempCode = tempCode.replace(/{url}/g,menuItem.url);
		tempCode = tempCode.replace(/{alt}/g,menuItem.label);
		tempCode = tempCode.replace(/{target}/g,menuItem.target);
	return tempCode;
}

function ListMenuCode(menuGrp,prefix,lvl,childForceSwitch)
{
	if ( menuGrp == false || menuGrp.length <= 0 ||
		(pageChk(menuGrp) < 0 && childForceSwitch == false) )
	return false;
	
	var menuLen = menuGrp.length;
	var idxLvl = pageChk(menuGrp);
	var menuCode = "";
	
	for (var i = 0; i < menuLen; i++)
	{
		var tempCode = "";
		var childCode = "";
		if ( i == idxLvl[0] &&
			(idxLvl.length > 1 || relativePageChk(filename(),menuGrp[i].relatives) != false) ) {
			TagCode = TagLabelLink;
			childForceSwitch = true;
		} else if (i == idxLvl[0] && idxLvl.length <= 1) {
			TagCode = TagLabel;
			childForceSwitch = true;
		} else {
			TagCode = TagLink;
			childForceSwitch = false;
		}
			tempCode = convertMenuItem(TagCode,menuGrp[i],i,prefix);
			childCode = ListMenuCode(menuGrp[i].children,prefix+i+"_",lvl+1,childForceSwitch);
		if (childCode != false) tempCode+= childCode;
			menuCode+= tempCode;
	}
	return menuCode;
}

var obbMenuGrp	= new Array();
	obbMenuGrp[0] = new MenuItem("pm_obb","Operation Building Bright","pm_obb.asp","_self");
	obbMenuGrp[0].children = new Array();
	obbMenuGrp[0].children[0] = new MenuItem("pm_obb_round1","1st Round ","pm_obb_round1.asp","_self");
	obbMenuGrp[0].children[1] = new MenuItem("pm_obb_round2","2ndt Round","pm_obb_round2.asp","_self");
	obbMenuGrp[0].children[2] = new MenuItem("pm_obb_elderly","Grant for Elderly Owner-occupier","pm_obb_elderly.asp","_self");
	obbMenuGrp[0].children[3] = new MenuItem("pm_obb_addition","Reference List of Providing Services for Repair & Renovation Works of Private Buildings","pm_obb_addition.asp","_self");
	
/*var bmmsMenuGrp	= new Array();
	bmmsMenuGrp[0] = new MenuItem("pm_bmm","Building Management and Maintenance Scheme","pm_bmm.asp","_self");
	bmmsMenuGrp[0].children = new Array();
	bmmsMenuGrp[0].children[0] = new MenuItem("pm_bmm_a","Home Renovation Loan Scheme","pm_bmm_a.asp","_self");
	bmmsMenuGrp[0].children[1] = new MenuItem("pm_bmm_b","Building Maintenance Incentive Scheme","pm_bmm_b.asp","_self");
	bmmsMenuGrp[0].children[2] = new MenuItem("pm_bmm_c","Building Management Incentive Scheme","pm_bmm_c.asp","_self");
	bmmsMenuGrp[0].children[3] = new MenuItem("pm_bmm_d","TV commercials & Video ","pm_bmm_d.asp","_self");
	bmmsMenuGrp[0].children[4] = new MenuItem("bmms","BMMS Website ","http://bmms.hkhs.com/eng/index.html","_blank");*/
var bmmsMenuGrp = new Array();
	bmmsMenuGrp[0] = new MenuItem("pm_ibmas","Building Maintenance","/eng/business/pm_ibmas.asp","_self");
	bmmsMenuGrp[0].children = new Array();
	bmmsMenuGrp[0].children[0] = new MenuItem("pm_ibmas","Integrated Building Maintenance Assistance Scheme","pm_ibmas.asp","_self");
	//bmmsMenuGrp[0].children[0].children = new Array();
	//bmmsMenuGrp[0].children[0].children[0] = new MenuItem("pr_20110331","Press Release","/eng/wnew/pdf/pr_20110331.pdf","_self");
	bmmsMenuGrp[0].children[1] = new MenuItem("pm_services","Property Management Advisory Centres Services","pm_services.asp","_self");
	bmmsMenuGrp[0].children[2] = new MenuItem("pm_bmm","Building Management and Maintenance Scheme","pm_bmm.asp","_self");
	bmmsMenuGrp[0].children[2].children = new Array();
	bmmsMenuGrp[0].children[2].children[0] = new MenuItem("pm_bmm_d","TV commercials & Video","pm_bmm_d.asp","_self");
	
var vbcsMenuGrp	= new Array();
	vbcsMenuGrp[0] = new MenuItem("vbcs_intro","Voluntary Building Assessment Scheme","vbcs_intro.asp","_self");
	/*
	vbcsMenuGrp[0].children = new Array();
	vbcsMenuGrp[0].children[0] = new MenuItem("vbcs_intro","Introduction ","vbcs_intro.asp","_self");
	vbcsMenuGrp[0].children[1] = new MenuItem("vbcs_objectives","Objectives","vbcs_objectives.asp","_self");
	vbcsMenuGrp[0].children[2] = new MenuItem("vbcs_participat","Participation","vbcs_participat.asp","_self");
	vbcsMenuGrp[0].children[3] = new MenuItem("vbcs_benefits","Benefits of Certification","vbcs_benefits.asp","_self");
	vbcsMenuGrp[0].children[4] = new MenuItem("vbcs_assessment","Assessment Mechanism","vbcs_assessment.asp","_self");
	vbcsMenuGrp[0].children[5] = new MenuItem("vbcs_scheme","Scheme Certificates","vbcs_scheme.asp","_self");
	vbcsMenuGrp[0].children[6] = new MenuItem("vbcs_confidential","Confidentiality","vbcs_confidential.asp","_self");
	vbcsMenuGrp[0].children[7] = new MenuItem("vbcs_cost","Cost","vbcs_cost.asp","_self");
	vbcsMenuGrp[0].children[8] = new MenuItem("vbcs_progress","Progress","vbcs_progress.asp","_self");
	vbcsMenuGrp[0].children[9] = new MenuItem("vbcs_enquiry","Enquiry","vbcs_enquiry.asp","_self");*/
	
var urpMenuGrp	= new Array();
	urpMenuGrp[0] = new MenuItem("urp","Urban Renewal","urp.asp","_self");

var comMenuItem = new Array();
	comMenuItem[0] = new MenuItem("commercial","Commercial Leasing","commercial.asp","_self");
	comMenuItem[0].relatives = new Array("commercial_detail","commercial_detail2","commercial_detail3","commercial_detail4","commercial_detail5");
	comMenuItem[0].children = new Array();
	comMenuItem[0].children[0] = new MenuItem("voidshop","Application Form for Shops / Market Stalls","doc/voidshop.pdf","_blank");
	
	
function callmenu(){
	
	document.write("<table width=\"20%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
	document.write("<tr>");
	document.write("<td><img src=\"images/blank.gif\" width=\"200\" height=\"27\"></td>");
	document.write("</tr>");
	//Property Development
	if ((filename() == "index")||(filename() == "renhousing")||(filename() == "rural")||(filename() == "flat")||(filename() == "sandwich")||(filename() == "estate")||(filename() == "rentapply")||(filename() == "senapply")||(filename() == "apply")||(filename() == "buy")||(filename() == "01")||(filename() == "02")||(filename() == "03")||(filename() == "04")||(filename() == "05")||(filename() == "06")||(filename() == "07")||(filename() == "08")||(filename() == "09")||(filename() == "10")||(filename() == "11")||(filename() == "12")||(filename() == "13")||(filename() == "14")||(filename() == "15")||(filename() == "16")||(filename() == "17")||(filename() == "18")||(filename() == "19")||(filename() == "20")||(filename() == "13_pd_ffss")||(filename() == "12_pd_ffss")||(filename() == "14_pd_ffss")||(filename() == "05_pd_ffss")||(filename() == "21")||(filename() == "22")||(filename() == "19_pd_ffss")||(filename() == "17_pd_ffss")||(filename() == "53")||(filename() == "54")||(filename() == "24")||(filename() == "25")||(filename() == "26")||(filename() == "27")||(filename() == "28")||(filename() == "29")||(filename() == "30")||(filename() == "31")||(filename() == "32")||(filename() == "33")||(filename() == "urban")||(filename() == "full")||(filename() == "35")||(filename() == "36")||(filename() == "37")||(filename() == "38")||(filename() == "39")||(filename() == "40")||(filename() == "41")||(filename() == "42")||(filename() == "43")||(filename() == "52")||(filename() == "34")||(filename() == "awarded")||(filename() == "awarded_2006")||(filename() == "construction")||(filename() == "cnc")){
		document.write("<tr>");
		document.write("<td><a href=\"index.asp\"><img name=\"Image52\" border=\"0\" src=\"images/nav_02_ro.gif\" width=\"200\" height=\"17\" alt=\"Property Development\"></a></td>");
		document.write("</tr>");
		//Property Development - Subsidized Housing
		//2nd
		if ((filename() == "renhousing")||(filename() == "rural")||(filename() == "flat")||(filename() == "sandwich")||(filename() == "estate")||(filename() == "rentapply")||(filename() == "senapply")||(filename() == "apply")||(filename() == "buy")||(filename() == "01")||(filename() == "02")||(filename() == "03")||(filename() == "04")||(filename() == "05")||(filename() == "06")||(filename() == "07")||(filename() == "08")||(filename() == "09")||(filename() == "10")||(filename() == "11")||(filename() == "12")||(filename() == "13")||(filename() == "14")||(filename() == "15")||(filename() == "16")||(filename() == "17")||(filename() == "18")||(filename() == "19")||(filename() == "20")||(filename() == "13_pd_ffss")||(filename() == "12_pd_ffss")||(filename() == "14_pd_ffss")||(filename() == "05_pd_ffss")||(filename() == "21")||(filename() == "22")||(filename() == "19_pd_ffss")||(filename() == "17_pd_ffss")||(filename() == "53")||(filename() == "54")||(filename() == "24")||(filename() == "25")||(filename() == "26")||(filename() == "27")||(filename() == "28")||(filename() == "29")||(filename() == "30")||(filename() == "31")||(filename() == "32")||(filename() == "33")){
		document.write("<tr>");
    		document.write("<td><a href=\"renhousing.asp\"><img name=\"Image55\" border=\"0\" src=\"images/nav_02a_hl.gif\" width=\"200\" height=\"16\" alt=\"Subsidized Housing\"></a></td>");
  		document.write("</tr>");
  		//3rd
  		if ((filename() == "renhousing")||(filename() == "rentapply")||(filename() == "senapply")||(filename() == "01")||(filename() == "02")||(filename() == "03")||(filename() == "04")||(filename() == "05")||(filename() == "06")||(filename() == "07")||(filename() == "08")||(filename() == "09")||(filename() == "10")||(filename() == "11")||(filename() == "12")||(filename() == "13")||(filename() == "14")||(filename() == "15")||(filename() == "16")||(filename() == "17")){
		document.write("<tr>");
    		document.write("<td><a href=\"renhousing.asp\"><img name=\"Image56\" border=\"0\" src=\"images/rental_hl.gif\" width=\"200\" height=\"16\" alt=\"Rental Housing\"></a></td>");
  		document.write("</tr>");
  		if (filename() == "01"){
		document.write("<tr>");
    		document.write("<td><a href=\"01.asp?contentid=1&estid=01\"><img name=\"Image57\" border=\"0\" src=\"images/01_ro.gif\" width=\"200\" height=\"17\" alt=\"Ming Wah Dai Ha\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"01.asp?contentid=1&estid=01\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image57','','images/01_ro.gif',1);MM_displayStatusMsg('Ming Wah Dai Ha');return document.MM_returnValue\"><img name=\"Image57\" border=\"0\" src=\"images/01.gif\" width=\"200\" height=\"17\" alt=\"Ming Wah Dai Ha\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "02"){
		document.write("<tr>");
    		document.write("<td><a href=\"02.asp?contentid=1&estid=02\"><img name=\"Image58\" border=\"0\" src=\"images/02_ro.gif\" width=\"200\" height=\"16\" alt=\"Yue Kwong Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"02.asp?contentid=1&estid=02\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image58','','images/02_ro.gif',1);MM_displayStatusMsg('Yue Kwong Chuen');return document.MM_returnValue\"><img name=\"Image58\" border=\"0\" src=\"images/02.gif\" width=\"200\" height=\"16\" alt=\"Yue Kwong Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "03"){
		document.write("<tr>");
    		document.write("<td><a href=\"03.asp?contentid=1&estid=03\"><img name=\"Image59\" border=\"0\" src=\"images/03_ro.gif\" width=\"200\" height=\"16\" alt=\"Moon Lok Dai Ha\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"03.asp?contentid=1&estid=03\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image59','','images/03_ro.gif',1);MM_displayStatusMsg('Moon Lok Dai Ha');return document.MM_returnValue\"><img name=\"Image59\" border=\"0\" src=\"images/03.gif\" width=\"200\" height=\"16\" alt=\"Moon Lok Dai Ha\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "04"){
		document.write("<tr>");
    		document.write("<td><a href=\"04.asp?contentid=1&estid=04\"><img name=\"Image60\" border=\"0\" src=\"images/04_ro.gif\" width=\"200\" height=\"16\" alt=\"Chun Seen Mei Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"04.asp?contentid=1&estid=04\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image60','','images/04_ro.gif',1);MM_displayStatusMsg('Chun Seen Mei Chuen');return document.MM_returnValue\"><img name=\"Image60\" border=\"0\" src=\"images/04.gif\" width=\"200\" height=\"16\" alt=\"Chun Seen Mei Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "05"){
		document.write("<tr>");
    		document.write("<td><a href=\"05.asp?contentid=1&estid=05\"><img name=\"Image61\" border=\"0\" src=\"images/05_ro.gif\" width=\"200\" height=\"16\" alt=\"Healthy Village\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"05.asp?contentid=1&estid=05\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image61','','images/05_ro.gif',1);MM_displayStatusMsg('Healthy Village');return document.MM_returnValue\"><img name=\"Image61\" border=\"0\" src=\"images/05.gif\" width=\"200\" height=\"16\" alt=\"Healthy Village\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "06"){
		document.write("<tr>");
    		document.write("<td><a href=\"06.asp?contentid=1&estid=06\"><img name=\"Image62\" border=\"0\" src=\"images/06_ro.gif\" width=\"200\" height=\"28\" alt=\"Kwun Tong Garden Estate\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"06.asp?contentid=1&estid=06\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image62','','images/06_ro.gif',1);MM_displayStatusMsg('Kwun Tong Garden Estate');return document.MM_returnValue\"><img name=\"Image62\" border=\"0\" src=\"images/06.gif\" width=\"200\" height=\"28\" alt=\"Kwun Tong Garden Estate\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "07"){
		document.write("<tr>");
    		document.write("<td><a href=\"07.asp?contentid=1&estid=07\"><img name=\"Image63\" border=\"0\" src=\"images/07_ro.gif\" width=\"200\" height=\"16\" alt=\"Kwun Lung Lau\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"07.asp?contentid=1&estid=07\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image63','','images/07_ro.gif',1);MM_displayStatusMsg('Kwun Lung Lau');return document.MM_returnValue\"><img name=\"Image63\" border=\"0\" src=\"images/07.gif\" width=\"200\" height=\"16\" alt=\"Kwun Lung Lau\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "08"){
		document.write("<tr>");
    		document.write("<td><a href=\"08.asp?contentid=1&estid=08\"><img name=\"Image64\" border=\"0\" src=\"images/08_ro.gif\" width=\"200\" height=\"16\" alt=\"Lok Man Sun Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"08.asp?contentid=1&estid=08\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image64','','images/08_ro.gif',1);MM_displayStatusMsg('Lok Man Sun Chuen');return document.MM_returnValue\"><img name=\"Image64\" border=\"0\" src=\"images/08.gif\" width=\"200\" height=\"16\" alt=\"Lok Man Sun Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "09"){
		document.write("<tr>");
    		document.write("<td><a href=\"09.asp?contentid=1&estid=09\"><img name=\"Image65\" border=\"0\" src=\"images/09_ro.gif\" width=\"200\" height=\"16\" alt=\"Lai Tak Tsuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"09.asp?contentid=1&estid=09\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image65','','images/09_ro.gif',1);MM_displayStatusMsg('Lai Tak Tsuen');return document.MM_returnValue\"><img name=\"Image65\" border=\"0\" src=\"images/09.gif\" width=\"200\" height=\"16\" alt=\"Lai Tak Tsuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "10"){
		document.write("<tr>");
    		document.write("<td><a href=\"10.asp?contentid=1&estid=10\"><img name=\"Image66\" border=\"0\" src=\"images/10_ro.gif\" width=\"200\" height=\"16\" alt=\"Cho Yiu Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"10.asp?contentid=1&estid=10\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image66','','images/10_ro.gif',1);MM_displayStatusMsg('Cho Yiu Chuen');return document.MM_returnValue\"><img name=\"Image66\" border=\"0\" src=\"images/10.gif\" width=\"200\" height=\"16\" alt=\"Cho Yiu Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "11"){
		document.write("<tr>");
    		document.write("<td><a href=\"11.asp?contentid=1&estid=11\"><img name=\"Image67\" border=\"0\" src=\"images/11_ro.gif\" width=\"200\" height=\"16\" alt=\"Jat Min Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"11.asp?contentid=1&estid=11\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image67','','images/11_ro.gif',1);MM_displayStatusMsg('Jat Min Chuen');return document.MM_returnValue\"><img name=\"Image67\" border=\"0\" src=\"images/11.gif\" width=\"200\" height=\"16\" alt=\"Jat Min Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "12"){
		document.write("<tr>");
    		document.write("<td><a href=\"12.asp?contentid=1&estid=12\"><img name=\"Image68\" border=\"0\" src=\"images/12_ro.gif\" width=\"200\" height=\"16\" alt=\"Ka Wai Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"12.asp?contentid=1&estid=12\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image68','','images/12_ro.gif',1);MM_displayStatusMsg('Ka Wai Chuen');return document.MM_returnValue\"><img name=\"Image68\" border=\"0\" src=\"images/12.gif\" width=\"200\" height=\"16\" alt=\"Ka Wai Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "13"){
		document.write("<tr>");
    		document.write("<td><a href=\"13.asp?contentid=1&estid=13\"><img name=\"Image69\" border=\"0\" src=\"images/13_ro.gif\" width=\"200\" height=\"16\" alt=\"Clague Garden Estate\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"13.asp?contentid=1&estid=13\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image69','','images/13_ro.gif',1);MM_displayStatusMsg('Clague Garden Estate');return document.MM_returnValue\"><img name=\"Image69\" border=\"0\" src=\"images/13.gif\" width=\"200\" height=\"16\" alt=\"Clague Garden Estate\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "14"){
		document.write("<tr>");
    		document.write("<td><a href=\"14.asp?contentid=1&estid=14\"><img name=\"Image70\" border=\"0\" src=\"images/14_ro.gif\" width=\"200\" height=\"16\" alt=\"Broadview Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"14.asp?contentid=1&estid=14\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image70','','images/14_ro.gif',1);MM_displayStatusMsg('Broadview Garden');return document.MM_returnValue\"><img name=\"Image70\" border=\"0\" src=\"images/14.gif\" width=\"200\" height=\"16\" alt=\"Broadview Garden\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "15"){
		document.write("<tr>");
    		document.write("<td><a href=\"15.asp?contentid=1&estid=15\"><img name=\"Image71\" border=\"0\" src=\"images/15_ro.gif\" width=\"200\" height=\"16\" alt=\"Prosperous Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"15.asp?contentid=1&estid=15\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image71','','images/15_ro.gif',1);MM_displayStatusMsg('Prosperous Garden');return document.MM_returnValue\"><img name=\"Image71\" border=\"0\" src=\"images/15.gif\" width=\"200\" height=\"16\" alt=\"Prosperous Garden\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "16"){
		document.write("<tr>");
    		document.write("<td><a href=\"16.asp?contentid=1&estid=16\"><img name=\"Image72\" border=\"0\" src=\"images/16_ro.gif\" width=\"200\" height=\"16\" alt=\"Bo Shek Mansion\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"16.asp?contentid=1&estid=16\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image72','','images/16_ro.gif',1);MM_displayStatusMsg('Bo Shek Mansion');return document.MM_returnValue\"><img name=\"Image72\" border=\"0\" src=\"images/16.gif\" width=\"200\" height=\"16\" alt=\"Bo Shek Mansion\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "17"){
		document.write("<tr>");
    		document.write("<td><a href=\"17.asp?contentid=1&estid=17\"><img name=\"Image73\" border=\"0\" src=\"images/17_ro.gif\" width=\"200\" height=\"16\" alt=\"Verbena Heights\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"17.asp?contentid=1&estid=17\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image73','','images/17_ro.gif',1);MM_displayStatusMsg('Verbena Heights');return document.MM_returnValue\"><img name=\"Image73\" border=\"0\" src=\"images/17.gif\" width=\"200\" height=\"16\" alt=\"Verbena Heights\"></a></td>");
  		document.write("</tr>");
  		}
  	  	//end 4th	
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"renhousing.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image56','','images/rental_ro.gif',1);MM_displayStatusMsg('Rental Housing');return document.MM_returnValue\"><img name=\"Image56\" border=\"0\" src=\"images/rental.gif\" width=\"200\" height=\"16\" alt=\"Rental Housing\"></a></td>");
  		document.write("</tr>");
  		}
  		//end 3rd
  		//3 rd
  		if ((filename() == "rural")||(filename() == "apply")||(filename() == "18")||(filename() == "19")||(filename() == "20")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"rural.asp\"><img name=\"Image74\" border=\"0\" src=\"images/rural_hl.gif\" width=\"200\" height=\"16\" alt=\"Rural Public Housing\"></a></td>");
   		document.write("</tr>");
   		//4th
   		/*if (filename() == "apply"){
		document.write("<tr>");
    		document.write("<td><a href=\"apply.asp\"><img name=\"Image132\" border=\"0\" src=\"images/apply_ro.gif\" width=\"200\" height=\"16\" alt=\"Eligibility Criteria\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"apply.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image132','','images/apply_ro.gif',1);MM_displayStatusMsg('Eligibility Criteria');return document.MM_returnValue\"><img name=\"Image132\" border=\"0\" src=\"images/apply.gif\" width=\"200\" height=\"16\" alt=\"Eligibility Criteria\"></a></td>");
  		document.write("</tr>");
  		}*/
  		if (filename() == "18"){
		document.write("<tr>");
    		document.write("<td><a href=\"18.asp?contentid=1&estid=18\"><img name=\"Image75\" border=\"0\" src=\"images/18_ro.gif\" width=\"200\" height=\"16\" alt=\"Sha Tau Kok Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"18.asp?contentid=1&estid=18\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image75','','images/18_ro.gif',1);MM_displayStatusMsg('Sha Tau Kok Chuen');return document.MM_returnValue\"><img name=\"Image75\" border=\"0\" src=\"images/18.gif\" width=\"200\" height=\"16\" alt=\"Sha Tau Kok Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "19"){
		document.write("<tr>");
    		document.write("<td><a href=\"19.asp?contentid=1&estid=19\"><img name=\"Image76\" border=\"0\" src=\"images/19_ro.gif\" width=\"200\" height=\"16\" alt=\"Lakeside Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"19.asp?contentid=1&estid=19\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image76','','images/19_ro.gif',1);MM_displayStatusMsg('Lakeside Garden');return document.MM_returnValue\"><img name=\"Image76\" border=\"0\" src=\"images/19.gif\" width=\"200\" height=\"16\" alt=\"Lakeside Garden\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "20"){
		document.write("<tr>");
    		document.write("<td><a href=\"20.asp?contentid=1&estid=20\"><img name=\"Image77\" border=\"0\" src=\"images/20_ro.gif\" width=\"200\" height=\"16\" alt=\"Tui Min Hoi Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"20.asp?contentid=1&estid=20\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image77','','images/20_ro.gif',1);MM_displayStatusMsg('Tui Min Hoi Chuen');return document.MM_returnValue\"><img name=\"Image77\" border=\"0\" src=\"images/20.gif\" width=\"200\" height=\"16\" alt=\"Tui Min Hoi Chuen\"></a></td>");
  		document.write("</tr>");
  		}
   		//end 4th   		
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"rural.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image74','','images/rural_ro.gif',1);MM_displayStatusMsg('Rural Public Housing');return document.MM_returnValue\"><img name=\"Image74\" border=\"0\" src=\"images/rural.gif\" width=\"200\" height=\"16\" alt=\"Rural Public Housing\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 3rd
   		//3rd
  		if ((filename() == "flat")||(filename() == "buy")||(filename() == "13_pd_ffss")||(filename() == "12_pd_ffss")||(filename() == "14_pd_ffss")||(filename() == "05_pd_ffss")||(filename() == "21")||(filename() == "22")||(filename() == "19_pd_ffss")||(filename() == "17_pd_ffss")||(filename() == "53")||(filename() == "54")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"flat.asp\"><img name=\"Image78\" border=\"0\" src=\"images/flat_hl.gif\" width=\"200\" height=\"16\" alt=\"Flat-For-Sale Scheme\"></a></td>");
   		document.write("</tr>");
   		//4th
   		/*if (filename() == "buy"){
		document.write("<tr>");
    		document.write("<td><a href=\"../../chi/business/buy.asp\"><img name=\"Image133\" border=\"0\" src=\"images/buy_ro.gif\" width=\"200\" height=\"42\" alt=\"Secondary Market of Flat-For-Sale Scheme (Chinese version only)\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"../../chi/business/buy.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image133','','images/buy_ro.gif',1);MM_displayStatusMsg('Secondary Market of Flat-For-Sale Scheme (Chinese version only)');return document.MM_returnValue\"><img name=\"Image133\" border=\"0\" src=\"images/buy.gif\" width=\"200\" height=\"42\" alt=\"Secondary Market of Flat-For-Sale Scheme (Chinese version only)\"></a></td>");
  		document.write("</tr>");
  		}*/
  		if (filename() == "13_pd_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"13_pd_ffss.asp?contentid=1&estid=13\"><img name=\"Image69\" border=\"0\" src=\"images/13_ro.gif\" width=\"200\" height=\"16\" alt=\"Clague Garden Estate\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"13_pd_ffss.asp?contentid=1&estid=13\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image69','','images/13_ro.gif',1);MM_displayStatusMsg('Clague Garden Estate');return document.MM_returnValue\"><img name=\"Image69\" border=\"0\" src=\"images/13.gif\" width=\"200\" height=\"16\" alt=\"Clague Garden Estate\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "12_pd_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"12_pd_ffss.asp?contentid=1&estid=12\"><img name=\"Image68\" border=\"0\" src=\"images/12_ro.gif\" width=\"200\" height=\"16\" alt=\"Ka Wai Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"12_pd_ffss.asp?contentid=1&estid=12\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image68','','images/12_ro.gif',1);MM_displayStatusMsg('Ka Wai Chuen');return document.MM_returnValue\"><img name=\"Image68\" border=\"0\" src=\"images/12.gif\" width=\"200\" height=\"16\" alt=\"Ka Wai Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "14_pd_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"14_pd_ffss.asp?contentid=1&estid=14\"><img name=\"Image70\" border=\"0\" src=\"images/14_ro.gif\" width=\"200\" height=\"16\" alt=\"Broadview Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"14_pd_ffss.asp?contentid=1&estid=14\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image70','','images/14_ro.gif',1);MM_displayStatusMsg('Broadview Garden');return document.MM_returnValue\"><img name=\"Image70\" border=\"0\" src=\"images/14.gif\" width=\"200\" height=\"16\" alt=\"Broadview Garden\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "05_pd_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"05_pd_ffss.asp?contentid=1&estid=05\"><img name=\"Image61\" border=\"0\" src=\"images/05_ro.gif\" width=\"200\" height=\"16\" alt=\"Healthy Village\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"05_pd_ffss.asp?contentid=1&estid=05\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image61','','images/05_ro.gif',1);MM_displayStatusMsg('Healthy Village');return document.MM_returnValue\"><img name=\"Image61\" border=\"0\" src=\"images/05.gif\" width=\"200\" height=\"16\" alt=\"Healthy Village\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "21"){
		document.write("<tr>");
    		document.write("<td><a href=\"21.asp?contentid=1&estid=21\"><img name=\"Image79\" border=\"0\" src=\"images/21_ro.gif\" width=\"200\" height=\"16\" alt=\"Cronin Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"21.asp?contentid=1&estid=21\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image79','','images/21_ro.gif',1);MM_displayStatusMsg('Cronin Garden');return document.MM_returnValue\"><img name=\"Image79\" border=\"0\" src=\"images/21.gif\" width=\"200\" height=\"16\" alt=\"Cronin Garden\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "22"){
		document.write("<tr>");
    		document.write("<td><a href=\"22.asp?contentid=1&estid=22\"><img name=\"Image80\" border=\"0\" src=\"images/22_ro.gif\" width=\"200\" height=\"16\" alt=\"Bo Shek Mansion\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"22.asp?contentid=1&estid=22\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image80','','images/22_ro.gif',1);MM_displayStatusMsg('Bo Shek Mansion');return document.MM_returnValue\"><img name=\"Image80\" border=\"0\" src=\"images/22.gif\" width=\"200\" height=\"16\" alt=\"Bo Shek Mansion\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "19_pd_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"19_pd_ffss.asp?contentid=1&estid=19\"><img name=\"Image76\" border=\"0\" src=\"images/19_ro.gif\" width=\"200\" height=\"16\" alt=\"Lakeside Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"19_pd_ffss.asp?contentid=1&estid=19\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image76','','images/19_ro.gif',1);MM_displayStatusMsg('Lakeside Garden');return document.MM_returnValue\"><img name=\"Image76\" border=\"0\" src=\"images/19.gif\" width=\"200\" height=\"16\" alt=\"Lakeside Garden\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "17_pd_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"17_pd_ffss.asp?contentid=1&estid=17\"><img name=\"Image73\" border=\"0\" src=\"images/17_ro.gif\" width=\"200\" height=\"16\" alt=\"Verbena Heights\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"17_pd_ffss.asp?contentid=1&estid=17\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image73','','images/17_ro.gif',1);MM_displayStatusMsg('Verbena Heights');return document.MM_returnValue\"><img name=\"Image73\" border=\"0\" src=\"images/17.gif\" width=\"200\" height=\"16\" alt=\"Verbena Heights\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "53"){
		document.write("<tr>");
    		document.write("<td><a href=\"53.asp?contentid=1&estid=53\"><img name=\"Image81\" border=\"0\" src=\"images/53_ro.gif\" width=\"200\" height=\"16\" alt=\"Kai Tak Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"53.asp?contentid=1&estid=53\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image81','','images/53_ro.gif',1);MM_displayStatusMsg('Kai Tak Garden');return document.MM_returnValue\"><img name=\"Image81\" border=\"0\" src=\"images/53.gif\" width=\"200\" height=\"16\" alt=\"Kai Tak Garden\"></a></td>");
  		document.write("</tr>");
  		}

		// Kingston Terrace

  		if (filename() == "54"){
		document.write("<tr>");
    		document.write("<td><a href=\"54.asp?contentid=1&estid=54\"><img name=\"Image135\" border=\"0\" src=\"images/54_ro.gif\" width=\"200\" height=\"16\" alt=\"Kingston Terrace\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"54.asp?contentid=1&estid=54\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg('Kingston Terrace');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image135','','images/54_ro.gif',1);MM_displayStatusMsg('Kingston Terrace');return document.MM_returnValue\"><img name=\"Image135\" border=\"0\" src=\"images/54.gif\" width=\"200\" height=\"16\" alt=\"Kingston Terrace\"></a></td>");
  		document.write("</tr>");
  		}





   		//end 4th
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"flat.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image78','','images/flat_ro.gif',1);MM_displayStatusMsg('Flat-For-Sale Scheme');return document.MM_returnValue\"><img name=\"Image78\" border=\"0\" src=\"images/flat.gif\" width=\"200\" height=\"16\" alt=\"Flat-For-Sale Scheme\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 3rd
   		//3rd
  		if ((filename() == "sandwich")||(filename() == "24")||(filename() == "25")||(filename() == "26")||(filename() == "27")||(filename() == "28")||(filename() == "29")||(filename() == "30")||(filename() == "31")||(filename() == "32")||(filename() == "33")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"sandwich.asp\"><img name=\"Image82\" border=\"0\" src=\"images/sandwich_hl.gif\" width=\"200\" height=\"28\" alt=\"Sandwich Class Housing Scheme\"></a></td>");
   		document.write("</tr>");
   		//4th
   		if (filename() == "24"){
		document.write("<tr>");
    		document.write("<td><a href=\"24.asp?contentid=1&estid=24\"><img name=\"Image83\" border=\"0\" src=\"images/24_ro.gif\" width=\"200\" height=\"16\" alt=\"Park Belvedere\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"24.asp?contentid=1&estid=24\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image83','','images/24_ro.gif',1);MM_displayStatusMsg('Park Belvedere');return document.MM_returnValue\"><img name=\"Image83\" border=\"0\" src=\"images/24.gif\" width=\"200\" height=\"16\" alt=\"Park Belvedere\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "25"){
		document.write("<tr>");
    		document.write("<td><a href=\"25.asp?contentid=1&estid=25\"><img name=\"Image84\" border=\"0\" src=\"images/25_ro.gif\" width=\"200\" height=\"16\" alt=\"Sunshine Grove\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"25.asp?contentid=1&estid=25\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image84','','images/25_ro.gif',1);MM_displayStatusMsg('Sunshine Grove');return document.MM_returnValue\"><img name=\"Image84\" border=\"0\" src=\"images/25.gif\" width=\"200\" height=\"16\" alt=\"Sunshine Grove\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "26"){
		document.write("<tr>");
    		document.write("<td><a href=\"26.asp?contentid=1&estid=26\"><img name=\"Image85\" border=\"0\" src=\"images/26_ro.gif\" width=\"200\" height=\"16\" alt=\"Radiant Towers\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"26.asp?contentid=1&estid=26\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image85','','images/26_ro.gif',1);MM_displayStatusMsg('Radiant Towers');return document.MM_returnValue\"><img name=\"Image85\" border=\"0\" src=\"images/26.gif\" width=\"200\" height=\"16\" alt=\"Radiant Towers\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "27"){
		document.write("<tr>");
    		document.write("<td><a href=\"27.asp?contentid=1&estid=27\"><img name=\"Image86\" border=\"0\" src=\"images/27_ro.gif\" width=\"200\" height=\"16\" alt=\"The Pinnacle\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"27.asp?contentid=1&estid=27\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image86','','images/27_ro.gif',1);MM_displayStatusMsg('The Pinnacle');return document.MM_returnValue\"><img name=\"Image86\" border=\"0\" src=\"images/27.gif\" width=\"200\" height=\"16\" alt=\"The Pinnacle\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "28"){
		document.write("<tr>");
    		document.write("<td><a href=\"28.asp?contentid=1&estid=28\"><img name=\"Image87\" border=\"0\" src=\"images/28_ro.gif\" width=\"200\" height=\"16\" alt=\"Tivoli Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"28.asp?contentid=1&estid=28\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image87','','images/28_ro.gif',1);MM_displayStatusMsg('Tivoli Garden');return document.MM_returnValue\"><img name=\"Image87\" border=\"0\" src=\"images/28.gif\" width=\"200\" height=\"16\" alt=\"Tivoli Garden\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "29"){
		document.write("<tr>");
    		document.write("<td><a href=\"29.asp?contentid=1&estid=29\"><img name=\"Image88\" border=\"0\" src=\"images/29_ro.gif\" width=\"200\" height=\"16\" alt=\"Hibiscus Park\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"29.asp?contentid=1&estid=29\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image88','','images/29_ro.gif',1);MM_displayStatusMsg('Hibiscus Park');return document.MM_returnValue\"><img name=\"Image88\" border=\"0\" src=\"images/29.gif\" width=\"200\" height=\"16\" alt=\"Hibiscus Park\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "30"){
		document.write("<tr>");
    		document.write("<td><a href=\"30.asp?contentid=1&estid=30\"><img name=\"Image89\" border=\"0\" src=\"images/30_ro.gif\" width=\"200\" height=\"16\" alt=\"Marina Habitat\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"30.asp?contentid=1&estid=30\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image89','','images/30_ro.gif',1);MM_displayStatusMsg('Marina Habitat');return document.MM_returnValue\"><img name=\"Image89\" border=\"0\" src=\"images/30.gif\" width=\"200\" height=\"16\" alt=\"Marina Habitat\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "31"){
		document.write("<tr>");
    		document.write("<td><a href=\"31.asp?contentid=1&estid=31\"><img name=\"Image90\" border=\"0\" src=\"images/31_ro.gif\" width=\"200\" height=\"16\" alt=\"Bel Air Heights\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"31.asp?contentid=1&estid=31\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image90','','images/31_ro.gif',1);MM_displayStatusMsg('Bel Air Heights');return document.MM_returnValue\"><img name=\"Image90\" border=\"0\" src=\"images/31.gif\" width=\"200\" height=\"16\" alt=\"Bel Air Heights\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "32"){
		document.write("<tr>");
    		document.write("<td><a href=\"32.asp?contentid=1&estid=32\"><img name=\"Image91\" border=\"0\" src=\"images/32_ro.gif\" width=\"200\" height=\"16\" alt=\"Cascades\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"32.asp?contentid=1&estid=32\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image91','','images/32_ro.gif',1);MM_displayStatusMsg('Cascades');return document.MM_returnValue\"><img name=\"Image91\" border=\"0\" src=\"images/32.gif\" width=\"200\" height=\"16\" alt=\"Cascades\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "33"){
		document.write("<tr>");
    		document.write("<td><a href=\"33.asp?contentid=1&estid=33\"><img name=\"Image92\" border=\"0\" src=\"images/33_ro.gif\" width=\"200\" height=\"16\" alt=\"Highland Park\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"33.asp?contentid=1&estid=33\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image92','','images/33_ro.gif',1);MM_displayStatusMsg('Highland Park');return document.MM_returnValue\"><img name=\"Image92\" border=\"0\" src=\"images/33.gif\" width=\"200\" height=\"16\" alt=\"Highland Park\"></a></td>");
  		document.write("</tr>");
  		}
/* --------- Disable Serenity Place from Subsidized Housing --------------------
   		if (filename() == "34"){
		document.write("<tr>");
    		document.write("<td><a href=\"34.asp?contentid=1&estid=34\"><img name=\"Image93\" border=\"0\" src=\"images/34_ro.gif\" width=\"200\" height=\"16\" alt=\"Serenity Place\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"34.asp?contentid=1&estid=34\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image93','','images/34_ro.gif',1);MM_displayStatusMsg('Serenity Place');return document.MM_returnValue\"><img name=\"Image93\" border=\"0\" src=\"images/34.gif\" width=\"200\" height=\"16\" alt=\"Serenity Place\"></a></td>");
  		document.write("</tr>");
  		}
------------ End of Disable Serenity Place from Subsidized Housing -------------*/
  		//end 4th
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"sandwich.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image82','','images/sandwich_ro.gif',1);MM_displayStatusMsg('Sandwich Class Housing Scheme');return document.MM_returnValue\"><img name=\"Image82\" border=\"0\" src=\"images/sandwich.gif\" width=\"200\" height=\"28\" alt=\"Sandwich Class Housing Scheme\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 3rd



   		//3rd
  		if (filename() == "estate"){
  	        document.write("<tr>");
    		document.write("<td><a href=\"estate.asp\"><img name=\"Image94\" border=\"0\" src=\"images/estate_ro.gif\" alt=\"Estate Redevelopment and Rehabilitation\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"estate.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image94','','images/estate_ro.gif',1);MM_displayStatusMsg('Estate Redevelopment and Rehabilitation');return document.MM_returnValue\"><img name=\"Image94\" border=\"0\" src=\"images/estate.gif\"  alt=\"Estate Redevelopment and Rehabilitation\"></a></td>");
   		document.write("</tr>");
   		}



  		document.write("<tr>");
    		document.write("<td><a href=\"http://www.hkhs.com/sen_20040903/index2.htm\" target=\"_blank\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image95','','images/senior_ro.gif',1);MM_displayStatusMsg('Senior Citizen Residences');return document.MM_returnValue\"><img src=\"images/senior.gif\" width=\"200\" height=\"28\" border=\"0\" alt=\"Senior Citizen Residences\" name=\"Image95\"></a></td>");
   		document.write("</tr>");



   		
   		//end 3rd
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"renhousing.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image55','','images/nav_02a_ro.gif',1);MM_displayStatusMsg('Subsidized Housing');return document.MM_returnValue\"><img name=\"Image55\" border=\"0\" src=\"images/nav_02a.gif\" width=\"200\" height=\"16\" alt=\"Subsidized Housing\"></a></td>");
  		document.write("</tr>");
  	        }
  	        //end 2nd
  	        
  	        
  	        //Property Development - Non-Subsidized Housing
  	        //2nd
		  // (filename() == "34") added for Serenity Place
  	        if ((filename() == "urban")||(filename() == "full")||(filename() == "35")||(filename() == "36")||(filename() == "37")||(filename() == "38")||(filename() == "39")||(filename() == "40")||(filename() == "41")||(filename() == "42")||(filename() == "43")||(filename() == "52")||(filename() == "34")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"urban.asp\"><img name=\"Image96\" border=\"0\" src=\"images/nav_02b_hl.gif\" width=\"200\" height=\"16\" alt=\"Non-Subsidized Housing\"></a></td>");
   		document.write("</tr>");
   		
   		//3rd
   		if ((filename() == "urban")||(filename() == "35")||(filename() == "36")||(filename() == "37")||(filename() == "38")||(filename() == "39")||(filename() == "40")||(filename() == "41")||(filename() == "42")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"urban.asp\"><img name=\"Image97\" border=\"0\" src=\"images/urban_hl.gif\" width=\"200\" height=\"28\" alt=\"Urban Improvement Scheme\"></a></td>");
   		document.write("</tr>");
   		//4th
   		if (filename() == "35"){
		document.write("<tr>");
    		document.write("<td><a href=\"35.asp?contentid=1&estid=35\"><img name=\"Image98\" border=\"0\" src=\"images/35_ro.gif\" width=\"200\" height=\"16\" alt=\"Regal Court\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"35.asp?contentid=1&estid=35\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image98','','images/35_ro.gif',1);MM_displayStatusMsg('Regal Court');return document.MM_returnValue\"><img name=\"Image98\" border=\"0\" src=\"images/35.gif\" width=\"200\" height=\"16\" alt=\"Regal Court\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "36"){
		document.write("<tr>");
    		document.write("<td><a href=\"36.asp?contentid=1&estid=36\"><img name=\"Image99\" border=\"0\" src=\"images/36_ro.gif\" width=\"200\" height=\"16\" alt=\"June Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"36.asp?contentid=1&estid=36\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image99','','images/36_ro.gif',1);MM_displayStatusMsg('June Garden');return document.MM_returnValue\"><img name=\"Image99\" border=\"0\" src=\"images/36.gif\" width=\"200\" height=\"16\" alt=\"June Garden\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "37"){
		document.write("<tr>");
    		document.write("<td><a href=\"37.asp?contentid=1&estid=37\"><img name=\"Image100\" border=\"0\" src=\"images/37_ro.gif\" width=\"200\" height=\"16\" alt=\"Dragon Centre\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"37.asp?contentid=1&estid=37\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image100','','images/37_ro.gif',1);MM_displayStatusMsg('Dragon Centre');return document.MM_returnValue\"><img name=\"Image100\" border=\"0\" src=\"images/37.gif\" width=\"200\" height=\"16\" alt=\"Dragon Centre\"></a></td>");
  		document.write("</tr>");
  		}
		if (filename() == "38"){
		document.write("<tr>");
    		document.write("<td><a href=\"38.asp?contentid=1&estid=38\"><img name=\"Image101\" border=\"0\" src=\"images/38_ro.gif\" width=\"200\" height=\"16\" alt=\"Prosperous Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"38.asp?contentid=1&estid=38\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image101','','images/38_ro.gif',1);MM_displayStatusMsg('Prosperous Garden');return document.MM_returnValue\"><img name=\"Image101\" border=\"0\" src=\"images/38.gif\" width=\"200\" height=\"16\" alt=\"Prosperous Garden\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "39"){
		document.write("<tr>");
    		document.write("<td><a href=\"39.asp?contentid=1&estid=39\"><img name=\"Image102\" border=\"0\" src=\"images/39_ro.gif\" width=\"200\" height=\"16\" alt=\"Prosperity Court\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"39.asp?contentid=1&estid=39\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image102','','images/39_ro.gif',1);MM_displayStatusMsg('Prosperity Court');return document.MM_returnValue\"><img name=\"Image102\" border=\"0\" src=\"images/39.gif\" width=\"200\" height=\"16\" alt=\"Prosperity Court\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "40"){
		document.write("<tr>");
    		document.write("<td><a href=\"40.asp?contentid=1&estid=40\"><img name=\"Image103\" border=\"0\" src=\"images/40_ro.gif\" width=\"200\" height=\"16\" alt=\"Jubilant Place\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"40.asp?contentid=1&estid=40\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image103','','images/40_ro.gif',1);MM_displayStatusMsg('Jubilant Place');return document.MM_returnValue\"><img name=\"Image103\" border=\"0\" src=\"images/40.gif\" width=\"200\" height=\"16\" alt=\"Jubilant Place\"></a></td>");
  		document.write("</tr>");
  		}
		/**/
   		if (filename() == "41"){
		document.write("<tr>");
    		document.write("<td><a href=\"41.asp?contentid=1&estid=41\"><img name=\"Image104\" border=\"0\" src=\"images/41_ro.gif\" width=\"200\" height=\"16\" alt=\"Hollywood Terrace\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"41.asp?contentid=1&estid=41\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image104','','images/41_ro.gif',1);MM_displayStatusMsg('Hollywood Terrace');return document.MM_returnValue\"><img name=\"Image104\" border=\"0\" src=\"images/41.gif\" width=\"200\" height=\"16\" alt=\"Hollywood Terrace\"></a></td>");
  		document.write("</tr>");
  		}
		
   		if (filename() == "42"){
		document.write("<tr>");
    		document.write("<td><a href=\"42.asp\"><img name=\"Image105\" border=\"0\" src=\"images/42_ro.gif\" width=\"200\" height=\"16\" alt=\"Other Properties\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"42.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image105','','images/42_ro.gif',1);MM_displayStatusMsg('Other Properties');return document.MM_returnValue\"><img name=\"Image105\" border=\"0\" src=\"images/42.gif\" width=\"200\" height=\"16\" alt=\"Other Properties\"></a></td>");
  		document.write("</tr>");
  		}
   		//end 4th
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"urban.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image97','','images/urban_ro.gif',1);MM_displayStatusMsg('Urban Improvement Scheme');return document.MM_returnValue\"><img name=\"Image97\" border=\"0\" src=\"images/urban.gif\" width=\"200\" height=\"28\" alt=\"Urban Improvement Scheme\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 3rd
   		//3rd
		// (filename() == "34") added for Serenity Place
  		if ((filename() == "full")||(filename() == "43")||(filename() == "52")||(filename() == "34")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"full.asp\"><img name=\"Image106\" border=\"0\" src=\"images/full_hl.gif\" width=\"200\" height=\"28\" alt=\"Full Market Value Developments\"></a></td>");
   		document.write("</tr>");
   		//4th
   		if (filename() == "43"){
		document.write("<tr>");
    		document.write("<td><a href=\"43.asp?contentid=1&estid=43\"><img name=\"Image107\" border=\"0\" src=\"images/43_ro.gif\" width=\"200\" height=\"16\" alt=\"Cayman Rise\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"43.asp?contentid=1&estid=43\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image107','','images/43_ro.gif',1);MM_displayStatusMsg('Cayman Rise');return document.MM_returnValue\"><img name=\"Image107\" border=\"0\" src=\"images/43.gif\" width=\"200\" height=\"16\" alt=\"Cayman Rise\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "52"){
		document.write("<tr>");
    		document.write("<td><a href=\"52.asp?contentid=1&estid=52\"><img name=\"Image134\" border=\"0\" src=\"images/52_ro.gif\" width=\"200\" height=\"16\" alt=\"Mountain Shore\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"52.asp?contentid=1&estid=52\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image134','','images/52_ro.gif',1);MM_displayStatusMsg('Mountain Shore');return document.MM_returnValue\"><img name=\"Image134\" border=\"0\" src=\"images/52.gif\" width=\"200\" height=\"16\" alt=\"Mountain Shore\"></a></td>");
  		document.write("</tr>");
  		}

/*-------------------- Serenity Place -----------------------------------*/

   		if (filename() == "34"){
		document.write("<tr>");
    		document.write("<td><a href=\"34.asp?contentid=1&estid=34\"><img name=\"Image93\" border=\"0\" src=\"images/34_ro.gif\" width=\"200\" height=\"16\" alt=\"Serenity Place\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"34.asp?contentid=1&estid=34\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image93','','images/34_ro.gif',1);MM_displayStatusMsg('Serenity Place');return document.MM_returnValue\"><img name=\"Image93\" border=\"0\" src=\"images/34.gif\" width=\"200\" height=\"16\" alt=\"Serenity Place\"></a></td>");
  		document.write("</tr>");
  		}
/*--------------------- End of Serenity Place ----------------------------------*/


   		//end 4th
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"full.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image106','','images/full_ro.gif',1);MM_displayStatusMsg('Full Market Value Developments');return document.MM_returnValue\"><img name=\"Image106\" border=\"0\" src=\"images/full.gif\" width=\"200\" height=\"28\" alt=\"Full Market Value Developments\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 3rd
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"urban.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image96','','images/nav_02b_ro.gif',1);MM_displayStatusMsg('Non-Subsidized Housing');return document.MM_returnValue\"><img name=\"Image96\" border=\"0\" src=\"images/nav_02b.gif\" width=\"200\" height=\"16\" alt=\"Non-Subsidized Housing\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 2nd





		// ---------------------------------------------------------------------------
  	        // New Projects
		// ---------------------------------------------------------------------------
		if ((filename() == "awarded")||(filename() == "awarded_2006")||(filename() == "construction")){
			document.write("<tr>");
			document.write("<td><a href=\"awarded.asp\"><img name=\"Image140\" border=\"0\" src=\"images/nav_05_ro.jpg\"  alt=\"Major Contracts Awarded\"></a></td>");
			document.write("</tr>");
   		

   		//3rd
/*			if ((filename() == "awarded")||(filename() == "awarded_2006")){
				document.write("<tr>");
				document.write("<td><a href=\"awarded.asp\"><img name=\"Image141\" border=\"0\" src=\"images/nav_05a_ro.jpg\"  alt=\"Major Contracts Awarded\"></a></td>");
				document.write("</tr>");
			}	else	{
				document.write("<tr>");
				document.write("<td><a href=\"awarded.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image141','','images/nav_05a_ro.jpg',1);MM_displayStatusMsg('Major Contracts Awarded');return document.MM_returnValue\"><img name=\"Image141\" border=\"0\" src=\"images/nav_05a.jpg\"  alt=\"Major Contracts Awarded\"></a></td>");
				document.write("</tr>");
			}
*/
   		//3rd
			/*if (filename() == "construction"){
				document.write("<tr>");
				document.write("<td><a href=\"construction.asp\"><img name=\"Image142\" border=\"0\" src=\"images/nav_05b_ro.jpg\"  alt=\"Projects Under Construction\"></a></td>");
				document.write("</tr>");
			}	else	{
				document.write("<tr>");
				document.write("<td><a href=\"construction.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image142','','images/nav_05b_ro.jpg',1);MM_displayStatusMsg('Projects Under Construction');return document.MM_returnValue\"><img name=\"Image142\" border=\"0\" src=\"images/nav_05b.jpg\"  alt=\"Projects Under Construction\"></a></td>");
				document.write("</tr>");
			}*/

   		//end 3rd

		}else{
			document.write("<tr>");
			document.write("<td><a href=\"awarded.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image140','','images/nav_05_ro.jpg',1);MM_displayStatusMsg('Major Contracts Awarded');return document.MM_returnValue\"><img name=\"Image140\" border=\"0\" src=\"images/nav_05.jpg\"  alt=\"Major Contracts Awarded\"></a></td>");
			document.write("</tr>");
		}
   	//end 2nd
		// ---------------------------------------------------------------------------
  	        // End of New Projects
		// ---------------------------------------------------------------------------



		// ---------------------------------------------------------------------------
  	        // Consultants and Contractors (cnc)
		// ---------------------------------------------------------------------------
		if ((filename() == "cnc")){
			document.write("<tr>");
			document.write("<td><a href=\"cnc.asp\"><img name=\"Image_cnc\" border=\"0\" src=\"images/nav_cnc_ro.gif\"  alt=\"Consultants and Contractors\"></a></td>");
			document.write("</tr>");

		}else{
			document.write("<tr>");
			document.write("<td><a href=\"cnc.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image_cnc','','images/nav_cnc_ro.gif',1);MM_displayStatusMsg('Consultants and Contractors');return document.MM_returnValue\"><img name=\"Image_cnc\" border=\"0\" src=\"images/nav_cnc.gif\"  alt=\"Consultants and Contractors\"></a></td>");
			document.write("</tr>");
		}
		// ---------------------------------------------------------------------------
  	        // Consultants and Contractors(cnc)
		// ---------------------------------------------------------------------------


	}else{
		document.write("<tr>");
		document.write("<td><a href=\"index.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image52','','images/nav_02_ro.gif',1);MM_displayStatusMsg('Property Development');return document.MM_returnValue\"><img name=\"Image52\" border=\"0\" src=\"images/nav_02.gif\" width=\"200\" height=\"17\" alt=\"Property Development\"></a></td>");
		document.write("</tr>");
		spacer();
	}
	
	
	//Property Management and Commercial Leasing
	if ((filename() == "pro_man")||(filename() == "portfolio")||(filename() == "renhousing_pm")||(filename() == "rentapply_pm")||(filename() == "senapply_pm")||(filename() == "apply_pm")||(filename() == "buy_pm")||(filename() == "islandeast")||(filename() == "tsuenwan")||(filename() == "kowloon")||(filename() == "west")||(filename() == "saikung")||(filename() == "newter")||(filename() == "01_pm_rh")||(filename() == "02_pm_rh")||(filename() == "03_pm_rh")||(filename() == "04_pm_rh")||(filename() == "05_pm_rh")||(filename() == "06_pm_rh")||(filename() == "07_pm_rh")||(filename() == "08_pm_rh")||(filename() == "09_pm_rh")||(filename() == "10_pm_rh")||(filename() == "11_pm_rh")||(filename() == "12_pm_rh")||(filename() == "13_pm_rh")||(filename() == "14_pm_rh")||(filename() == "15_pm_rh")||(filename() == "16_pm_rh")||(filename() == "17_pm_rh")||(filename() == "rural_pm")||(filename() == "18_pm_rural")||(filename() == "19_pm_rural")||(filename() == "20_pm_rural")||(filename() == "flat_pm")||(filename() == "13_pm_ffss")||(filename() == "12_pm_ffss")||(filename() == "14_pm_ffss")||(filename() == "05_pm_ffss")||(filename() == "21_pm_ffss")||(filename() == "22_pm_ffss")||(filename() == "19_pm_ffss")||(filename() == "17_pm_ffss")||(filename() == "23_pm_ffss")||(filename() == "54_pm_ffss")||(filename() == "sandwich_pm")||(filename() == "24_pm_sandwich")||(filename() == "25_pm_sandwich")||(filename() == "26_pm_sandwich")||(filename() == "27_pm_sandwich")||(filename() == "28_pm_sandwich")||(filename() == "29_pm_sandwich")||(filename() == "30_pm_sandwich")||(filename() == "31_pm_sandwich")||(filename() == "32_pm_sandwich")||(filename() == "33_pm_sandwich")||(filename() == "34_pm_sandwich")||(filename() == "urban_pm")||(filename() == "35_pm_urban")||(filename() == "36_pm_urban")||(filename() == "37_pm_urban")||(filename() == "38_pm_urban")||(filename() == "39_pm_urban")||(filename() == "40_pm_urban")||(filename() == "41_pm_urban")||(filename() == "42_pm_urban")||(filename() == "full_pm")||(filename() == "43_pm_full")||(filename() == "private")||(filename() == "44")||(filename() == "45")||(filename() == "46")||(filename() == "47")||(filename() == "48")||(filename() == "49")||(filename() == "50")||(filename() == "51")||(filename() == "56")||(filename() == "other")||(filename() == "commercial")||(filename() == "commercial_detail")||(filename() == "commercial_detail2")||(filename() == "commercial_detail3")||(filename() == "commercial_detail4")||(filename() == "commercial_detail5")||(filename() == "commercial_detail6")||(filename() == "commercial_detail7")||(filename() == "admission")||(filename() == "admission_01")||(filename() == "admission_02")||(filename() == "admission_03")||(filename() == "admission_04")||(filename() == "admission_05")||(filename() == "admission_06")||(filename() == "admission_07")||(filename() == "admission_08")||(filename() == "admission_09")||(filename() == "admission_10")||(filename() == "pm_advisory")||(filename() == "omc")||(filename() == "awarded_major")){
	document.write("<tr>");
	document.write("<td><a href=\"pro_man.asp\"><img name=\"Image53\" border=\"0\" src=\"images/nav_03_ro.gif\" width=\"200\" height=\"34\" alt=\"Property Management and Commercial Leasing\"></a></td>");
	document.write("</tr>");
	
		//2nd
		// (filename() == "34") for Serenity Place was replaced with (filename() == "34_pm_sandwich")
		if ((filename() == "portfolio")||(filename() == "renhousing_pm")||(filename() == "rentapply_pm")||(filename() == "senapply_pm")||(filename() == "apply_pm")||(filename() == "buy_pm")||(filename() == "islandeast")||(filename() == "tsuenwan")||(filename() == "kowloon")||(filename() == "west")||(filename() == "saikung")||(filename() == "newter")||(filename() == "01_pm_rh")||(filename() == "02_pm_rh")||(filename() == "03_pm_rh")||(filename() == "04_pm_rh")||(filename() == "05_pm_rh")||(filename() == "06_pm_rh")||(filename() == "07_pm_rh")||(filename() == "08_pm_rh")||(filename() == "09_pm_rh")||(filename() == "10_pm_rh")||(filename() == "11_pm_rh")||(filename() == "12_pm_rh")||(filename() == "13_pm_rh")||(filename() == "14_pm_rh")||(filename() == "15_pm_rh")||(filename() == "16_pm_rh")||(filename() == "17_pm_rh")||(filename() == "rural_pm")||(filename() == "18_pm_rural")||(filename() == "19_pm_rural")||(filename() == "20_pm_rural")||(filename() == "flat_pm")||(filename() == "13_pm_ffss")||(filename() == "12_pm_ffss")||(filename() == "14_pm_ffss")||(filename() == "05_pm_ffss")||(filename() == "21_pm_ffss")||(filename() == "22_pm_ffss")||(filename() == "19_pm_ffss")||(filename() == "17_pm_ffss")||(filename() == "23_pm_ffss")||(filename() == "54_pm_ffss")||(filename() == "sandwich_pm")||(filename() == "24_pm_sandwich")||(filename() == "25_pm_sandwich")||(filename() == "26_pm_sandwich")||(filename() == "27_pm_sandwich")||(filename() == "28_pm_sandwich")||(filename() == "29_pm_sandwich")||(filename() == "30_pm_sandwich")||(filename() == "31_pm_sandwich")||(filename() == "32_pm_sandwich")||(filename() == "33_pm_sandwich")||(filename() == "urban_pm")||(filename() == "35_pm_urban")||(filename() == "36_pm_urban")||(filename() == "37_pm_urban")||(filename() == "38_pm_urban")||(filename() == "39_pm_urban")||(filename() == "40_pm_urban")||(filename() == "41_pm_urban")||(filename() == "42_pm_urban")||(filename() == "full_pm")||(filename() == "43_pm_full")||(filename() == "private")||(filename() == "44")||(filename() == "45")||(filename() == "46")||(filename() == "47")||(filename() == "48")||(filename() == "49")||(filename() == "50")||(filename() == "51")||(filename() == "56")||(filename() == "other")||(filename() == "34_pm_sandwich")||(filename() == "omc")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"portfolio.asp\"><img name=\"Image108\" border=\"0\" src=\"images/nav_03a_hl.gif\" width=\"200\" height=\"16\" alt=\"Portfolio\"></a></td>");
   		document.write("</tr>");
   		//3rd
   		if ((filename() == "renhousing_pm")||(filename() == "rentapply_pm")||(filename() == "senapply_pm")||(filename() == "01_pm_rh")||(filename() == "02_pm_rh")||(filename() == "03_pm_rh")||(filename() == "04_pm_rh")||(filename() == "05_pm_rh")||(filename() == "06_pm_rh")||(filename() == "07_pm_rh")||(filename() == "08_pm_rh")||(filename() == "09_pm_rh")||(filename() == "10_pm_rh")||(filename() == "11_pm_rh")||(filename() == "12_pm_rh")||(filename() == "13_pm_rh")||(filename() == "14_pm_rh")||(filename() == "15_pm_rh")||(filename() == "16_pm_rh")||(filename() == "17_pm_rh")){
		document.write("<tr>");
    		document.write("<td><a href=\"renhousing_pm.asp\"><img name=\"Image56\" border=\"0\" src=\"images/rental_hl.gif\" width=\"200\" height=\"16\" alt=\"Rental Housing\"></a></td>");
  		document.write("</tr>");
  		//4th

  		if (filename() == "01_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"01_pm_rh.asp?contentid=1&estid=01\"><img name=\"Image57\" border=\"0\" src=\"images/01_ro.gif\" width=\"200\" height=\"17\" alt=\"Ming Wah Dai Ha\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"01_pm_rh.asp?contentid=1&estid=01\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image57','','images/01_ro.gif',1);MM_displayStatusMsg('Ming Wah Dai Ha');return document.MM_returnValue\"><img name=\"Image57\" border=\"0\" src=\"images/01.gif\" width=\"200\" height=\"17\" alt=\"Ming Wah Dai Ha\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "02_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"02_pm_rh.asp?contentid=1&estid=02\"><img name=\"Image58\" border=\"0\" src=\"images/02_ro.gif\" width=\"200\" height=\"16\" alt=\"Yue Kwong Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"02_pm_rh.asp?contentid=1&estid=02\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image58','','images/02_ro.gif',1);MM_displayStatusMsg('Yue Kwong Chuen');return document.MM_returnValue\"><img name=\"Image58\" border=\"0\" src=\"images/02.gif\" width=\"200\" height=\"16\" alt=\"Yue Kwong Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "03_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"03_pm_rh.asp?contentid=1&estid=03\"><img name=\"Image59\" border=\"0\" src=\"images/03_ro.gif\" width=\"200\" height=\"16\" alt=\"Moon Lok Dai Ha\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"03_pm_rh.asp?contentid=1&estid=03\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image59','','images/03_ro.gif',1);MM_displayStatusMsg('Moon Lok Dai Ha');return document.MM_returnValue\"><img name=\"Image59\" border=\"0\" src=\"images/03.gif\" width=\"200\" height=\"16\" alt=\"Moon Lok Dai Ha\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "04_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"04_pm_rh.asp?contentid=1&estid=04\"><img name=\"Image60\" border=\"0\" src=\"images/04_ro.gif\" width=\"200\" height=\"16\" alt=\"Chun Seen Mai Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"04_pm_rh.asp?contentid=1&estid=04\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image60','','images/04_ro.gif',1);MM_displayStatusMsg('Chun Seen Mai Chuen');return document.MM_returnValue\"><img name=\"Image60\" border=\"0\" src=\"images/04.gif\" width=\"200\" height=\"16\" alt=\"Chun Seen Mai Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "05_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"05_pm_rh.asp?contentid=1&estid=05\"><img name=\"Image61\" border=\"0\" src=\"images/05_ro.gif\" width=\"200\" height=\"16\" alt=\"Healthy Village\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"05_pm_rh.asp?contentid=1&estid=05\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image61','','images/05_ro.gif',1);MM_displayStatusMsg('Healthy Village');return document.MM_returnValue\"><img name=\"Image61\" border=\"0\" src=\"images/05.gif\" width=\"200\" height=\"16\" alt=\"Healthy Village\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "06_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"06_pm_rh.asp?contentid=1&estid=06\"><img name=\"Image62\" border=\"0\" src=\"images/06_ro.gif\" width=\"200\" height=\"28\" alt=\"Kwun Tong Garden Estate\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"06_pm_rh.asp?contentid=1&estid=06\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image62','','images/06_ro.gif',1);MM_displayStatusMsg('Kwun Tong Garden Estate');return document.MM_returnValue\"><img name=\"Image62\" border=\"0\" src=\"images/06.gif\" width=\"200\" height=\"28\" alt=\"Kwun Tong Garden Estate\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "07_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"07_pm_rh.asp?contentid=1&estid=07\"><img name=\"Image63\" border=\"0\" src=\"images/07_ro.gif\" width=\"200\" height=\"16\" alt=\"Kwun Lung Lau\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"07_pm_rh.asp?contentid=1&estid=07\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image63','','images/07_ro.gif',1);MM_displayStatusMsg('Kwun Lung Lau');return document.MM_returnValue\"><img name=\"Image63\" border=\"0\" src=\"images/07.gif\" width=\"200\" height=\"16\" alt=\"Kwun Lung Lau\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "08_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"08_pm_rh.asp?contentid=1&estid=08\"><img name=\"Image64\" border=\"0\" src=\"images/08_ro.gif\" width=\"200\" height=\"16\" alt=\"Lok Man Sun Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"08_pm_rh.asp?contentid=1&estid=08\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image64','','images/08_ro.gif',1);MM_displayStatusMsg('Lok Man Sun Chuen');return document.MM_returnValue\"><img name=\"Image64\" border=\"0\" src=\"images/08.gif\" width=\"200\" height=\"16\" alt=\"Lok Man Sun Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "09_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"09_pm_rh.asp?contentid=1&estid=09\"><img name=\"Image65\" border=\"0\" src=\"images/09_ro.gif\" width=\"200\" height=\"16\" alt=\"Lai Tak Tsuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"09_pm_rh.asp?contentid=1&estid=09\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image65','','images/09_ro.gif',1);MM_displayStatusMsg('Lai Tak Tsuen');return document.MM_returnValue\"><img name=\"Image65\" border=\"0\" src=\"images/09.gif\" width=\"200\" height=\"16\" alt=\"Lai Tak Tsuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "10_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"10_pm_rh.asp?contentid=1&estid=10\"><img name=\"Image66\" border=\"0\" src=\"images/10_ro.gif\" width=\"200\" height=\"16\" alt=\"Cho Yiu Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"10_pm_rh.asp?contentid=1&estid=10\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image66','','images/10_ro.gif',1);MM_displayStatusMsg('Cho Yiu Chuen');return document.MM_returnValue\"><img name=\"Image66\" border=\"0\" src=\"images/10.gif\" width=\"200\" height=\"16\" alt=\"Cho Yiu Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "11_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"11_pm_rh.asp?contentid=1&estid=11\"><img name=\"Image67\" border=\"0\" src=\"images/11_ro.gif\" width=\"200\" height=\"16\" alt=\"Jat Min Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"11_pm_rh.asp?contentid=1&estid=11\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image67','','images/11_ro.gif',1);MM_displayStatusMsg('Jat Min Chuen');return document.MM_returnValue\"><img name=\"Image67\" border=\"0\" src=\"images/11.gif\" width=\"200\" height=\"16\" alt=\"Jat Min Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "12_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"12_pm_rh.asp?contentid=1&estid=12\"><img name=\"Image68\" border=\"0\" src=\"images/12_ro.gif\" width=\"200\" height=\"16\" alt=\"Ka Wai Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"12_pm_rh.asp?contentid=1&estid=12\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image68','','images/12_ro.gif',1);MM_displayStatusMsg('Ka Wai Chuen');return document.MM_returnValue\"><img name=\"Image68\" border=\"0\" src=\"images/12.gif\" width=\"200\" height=\"16\" alt=\"Ka Wai Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "13_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"13_pm_rh.asp?contentid=1&estid=13\"><img name=\"Image69\" border=\"0\" src=\"images/13_ro.gif\" width=\"200\" height=\"16\" alt=\"Clague Garden Estate\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"13_pm_rh.asp?contentid=1&estid=13\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image69','','images/13_ro.gif',1);MM_displayStatusMsg('Clague Garden Estate');return document.MM_returnValue\"><img name=\"Image69\" border=\"0\" src=\"images/13.gif\" width=\"200\" height=\"16\" alt=\"Clague Garden Estate\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "14_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"14_pm_rh.asp?contentid=1&estid=14\"><img name=\"Image70\" border=\"0\" src=\"images/14_ro.gif\" width=\"200\" height=\"16\" alt=\"Broadview Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"14_pm_rh.asp?contentid=1&estid=14\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image70','','images/14_ro.gif',1);MM_displayStatusMsg('Broadview Garden');return document.MM_returnValue\"><img name=\"Image70\" border=\"0\" src=\"images/14.gif\" width=\"200\" height=\"16\" alt=\"Broadview Garden\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "15_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"15_pm_rh.asp?contentid=1&estid=15\"><img name=\"Image71\" border=\"0\" src=\"images/15_ro.gif\" width=\"200\" height=\"16\" alt=\"Prosperous Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"15_pm_rh.asp?contentid=1&estid=15\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image71','','images/15_ro.gif',1);MM_displayStatusMsg('Prosperous Garden');return document.MM_returnValue\"><img name=\"Image71\" border=\"0\" src=\"images/15.gif\" width=\"200\" height=\"16\" alt=\"Prosperous Garden\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "16_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"16_pm_rh.asp?contentid=1&estid=16\"><img name=\"Image72\" border=\"0\" src=\"images/16_ro.gif\" width=\"200\" height=\"16\" alt=\"Bo Shek Mansion\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"16_pm_rh.asp?contentid=1&estid=16\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image72','','images/16_ro.gif',1);MM_displayStatusMsg('Bo Shek Mansion');return document.MM_returnValue\"><img name=\"Image72\" border=\"0\" src=\"images/16.gif\" width=\"200\" height=\"16\" alt=\"Bo Shek Mansion\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "17_pm_rh"){
		document.write("<tr>");
    		document.write("<td><a href=\"17_pm_rh.asp?contentid=1&estid=17\"><img name=\"Image73\" border=\"0\" src=\"images/17_ro.gif\" width=\"200\" height=\"16\" alt=\"Verbena Heights\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"17_pm_rh.asp?contentid=1&estid=17\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image73','','images/17_ro.gif',1);MM_displayStatusMsg('Verbena Heights');return document.MM_returnValue\"><img name=\"Image73\" border=\"0\" src=\"images/17.gif\" width=\"200\" height=\"16\" alt=\"Verbena Heights\"></a></td>");
  		document.write("</tr>");
  		}
  	  	//end 4th
  		
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"renhousing_pm.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image56','','images/rental_ro.gif',1);MM_displayStatusMsg('Rental Housing');return document.MM_returnValue\"><img name=\"Image56\" border=\"0\" src=\"images/rental.gif\" width=\"200\" height=\"16\" alt=\"Rental Housing\"></a></td>");
  		document.write("</tr>");
  		}
  		//end 3rd
  		//3rd
		if ((filename() == "rural_pm")||(filename() == "apply_pm")||(filename() == "18_pm_rural")||(filename() == "19_pm_rural")||(filename() == "20_pm_rural")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"rural_pm.asp\"><img name=\"Image74\" border=\"0\" src=\"images/rural_hl.gif\" width=\"200\" height=\"16\" alt=\"Rural Public Housing\"></a></td>");
   		document.write("</tr>");
   		//4th

  		if (filename() == "18_pm_rural"){
		document.write("<tr>");
    		document.write("<td><a href=\"18_pm_rural.asp?contentid=1&estid=18\"><img name=\"Image75\" border=\"0\" src=\"images/18_ro.gif\" width=\"200\" height=\"16\" alt=\"Sha Tau Kok Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"18_pm_rural.asp?contentid=1&estid=18\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image75','','images/18_ro.gif',1);MM_displayStatusMsg('Sha Tau Kok Chuen');return document.MM_returnValue\"><img name=\"Image75\" border=\"0\" src=\"images/18.gif\" width=\"200\" height=\"16\" alt=\"Sha Tau Kok Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "19_pm_rural"){
		document.write("<tr>");
    		document.write("<td><a href=\"19_pm_rural.asp?contentid=1&estid=19\"><img name=\"Image76\" border=\"0\" src=\"images/19_ro.gif\" width=\"200\" height=\"16\" alt=\"Lakeside Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"19_pm_rural.asp?contentid=1&estid=19\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image76','','images/19_ro.gif',1);MM_displayStatusMsg('Lakeside Garden');return document.MM_returnValue\"><img name=\"Image76\" border=\"0\" src=\"images/19.gif\" width=\"200\" height=\"16\" alt=\"Lakeside Garden\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "20_pm_rural"){
		document.write("<tr>");
    		document.write("<td><a href=\"20_pm_rural.asp?contentid=1&estid=20\"><img name=\"Image77\" border=\"0\" src=\"images/20_ro.gif\" width=\"200\" height=\"16\" alt=\"Tui Min Hoi Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"20_pm_rural.asp?contentid=1&estid=20\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image77','','images/20_ro.gif',1);MM_displayStatusMsg('Tui Min Hoi Chuen');return document.MM_returnValue\"><img name=\"Image77\" border=\"0\" src=\"images/20.gif\" width=\"200\" height=\"16\" alt=\"Tui Min Hoi Chuen\"></a></td>");
  		document.write("</tr>");
  		}
   		//end 4th
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"rural_pm.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image74','','images/rural_ro.gif',1);MM_displayStatusMsg('Rural Public Housing');return document.MM_returnValue\"><img name=\"Image74\" border=\"0\" src=\"images/rural.gif\" width=\"200\" height=\"16\" alt=\"Rural Public Housing\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 3rd
   		//3rd
  		if ((filename() == "flat_pm")||(filename() == "buy_pm")||(filename() == "13_pm_ffss")||(filename() == "12_pm_ffss")||(filename() == "14_pm_ffss")||(filename() == "05_pm_ffss")||(filename() == "21_pm_ffss")||(filename() == "22_pm_ffss")||(filename() == "19_pm_ffss")||(filename() == "17_pm_ffss")||(filename() == "23_pm_ffss")||(filename() == "54_pm_ffss")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"flat_pm.asp\"><img name=\"Image78\" border=\"0\" src=\"images/flat_hl.gif\" width=\"200\" height=\"16\" alt=\"Flat-For-Sale Scheme\"></a></td>");
   		document.write("</tr>");
   		//4th

  		if (filename() == "13_pm_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"13_pm_ffss.asp?contentid=1&estid=13\"><img name=\"Image69\" border=\"0\" src=\"images/13_ro.gif\" width=\"200\" height=\"16\" alt=\"Clague Garden Estate\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"13_pm_ffss.asp?contentid=1&estid=13\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image69','','images/13_ro.gif',1);MM_displayStatusMsg('Clague Garden Estate');return document.MM_returnValue\"><img name=\"Image69\" border=\"0\" src=\"images/13.gif\" width=\"200\" height=\"16\" alt=\"Clague Garden Estate\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "12_pm_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"12_pm_ffss.asp?contentid=1&estid=12\"><img name=\"Image68\" border=\"0\" src=\"images/12_ro.gif\" width=\"200\" height=\"16\" alt=\"Ka Wai Chuen\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"12_pm_ffss.asp?contentid=1&estid=12\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image68','','images/12_ro.gif',1);MM_displayStatusMsg('Ka Wai Chuen');return document.MM_returnValue\"><img name=\"Image68\" border=\"0\" src=\"images/12.gif\" width=\"200\" height=\"16\" alt=\"Ka Wai Chuen\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "14_pm_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"14_pm_ffss.asp?contentid=1&estid=14\"><img name=\"Image70\" border=\"0\" src=\"images/14_ro.gif\" width=\"200\" height=\"16\" alt=\"Broadview Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"14_pm_ffss.asp?contentid=1&estid=14\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image70','','images/14_ro.gif',1);MM_displayStatusMsg('Broadview Garden');return document.MM_returnValue\"><img name=\"Image70\" border=\"0\" src=\"images/14.gif\" width=\"200\" height=\"16\" alt=\"Broadview Garden\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "05_pm_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"05_pm_ffss.asp?contentid=1&estid=05\"><img name=\"Image61\" border=\"0\" src=\"images/05_ro.gif\" width=\"200\" height=\"16\" alt=\"Healthy Village\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"05_pm_ffss.asp?contentid=1&estid=05\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image61','','images/05_ro.gif',1);MM_displayStatusMsg('Healthy Village');return document.MM_returnValue\"><img name=\"Image61\" border=\"0\" src=\"images/05.gif\" width=\"200\" height=\"16\" alt=\"Healthy Village\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "21_pm_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"21_pm_ffss.asp?contentid=1&estid=21\"><img name=\"Image79\" border=\"0\" src=\"images/21_ro.gif\" width=\"200\" height=\"16\" alt=\"Cronin Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"21_pm_ffss.asp?contentid=1&estid=21\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image79','','images/21_ro.gif',1);MM_displayStatusMsg('Cronin Garden');return document.MM_returnValue\"><img name=\"Image79\" border=\"0\" src=\"images/21.gif\" width=\"200\" height=\"16\" alt=\"Cronin Garden\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "22_pm_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"22_pm_ffss.asp?contentid=1&estid=22\"><img name=\"Image80\" border=\"0\" src=\"images/22_ro.gif\" width=\"200\" height=\"16\" alt=\"Bo Shek Mansion\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"22_pm_ffss.asp?contentid=1&estid=22\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image80','','images/22_ro.gif',1);MM_displayStatusMsg('Bo Shek Mansion');return document.MM_returnValue\"><img name=\"Image80\" border=\"0\" src=\"images/22.gif\" width=\"200\" height=\"16\" alt=\"Bo Shek Mansion\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "19_pm_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"19_pm_ffss.asp?contentid=1&estid=19\"><img name=\"Image76\" border=\"0\" src=\"images/19_ro.gif\" width=\"200\" height=\"16\" alt=\"Lakeside Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"19_pm_ffss.asp?contentid=1&estid=19\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image76','','images/19_ro.gif',1);MM_displayStatusMsg('Lakeside Garden');return document.MM_returnValue\"><img name=\"Image76\" border=\"0\" src=\"images/19.gif\" width=\"200\" height=\"16\" alt=\"Lakeside Garden\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "17_pm_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"17_pm_ffss.asp?contentid=1&estid=17\"><img name=\"Image73\" border=\"0\" src=\"images/17_ro.gif\" width=\"200\" height=\"16\" alt=\"Verbena Heights\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"17_pm_ffss.asp?contentid=1&estid=17\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image73','','images/17_ro.gif',1);MM_displayStatusMsg('Verbena Heights');return document.MM_returnValue\"><img name=\"Image73\" border=\"0\" src=\"images/17.gif\" width=\"200\" height=\"16\" alt=\"Verbena Heights\"></a></td>");
  		document.write("</tr>");
  		}
  		if (filename() == "23_pm_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"23_pm_ffss.asp?contentid=1&estid=23\"><img name=\"Image81\" border=\"0\" src=\"images/23_ro.gif\" width=\"200\" height=\"16\" alt=\"Kai Tak Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"23_pm_ffss.asp?contentid=1&estid=23\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image81','','images/23_ro.gif',1);MM_displayStatusMsg('Kai Tak Garden');return document.MM_returnValue\"><img name=\"Image81\" border=\"0\" src=\"images/23.gif\" width=\"200\" height=\"16\" alt=\"Kai Tak Garden\"></a></td>");
  		document.write("</tr>");
  		}

  		if (filename() == "54_pm_ffss"){
		document.write("<tr>");
    		document.write("<td><a href=\"54_pm_ffss.asp?contentid=1&estid=54\"><img name=\"Image152\" border=\"0\" src=\"images/54_ro.gif\" width=\"200\" height=\"16\" alt=\"Kingston Terrace\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"54_pm_ffss.asp?contentid=1&estid=54\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image152','','images/54_ro.gif',1);MM_displayStatusMsg('Kingston Terrace');return document.MM_returnValue\"><img name=\"Image152\" border=\"0\" src=\"images/54.gif\" width=\"200\" height=\"16\" alt=\"Kingston Terrace\"></a></td>");
  		document.write("</tr>");
  		}


   		//end 4th
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"flat_pm.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image78','','images/flat_ro.gif',1);MM_displayStatusMsg('Flat-For-Sale Scheme');return document.MM_returnValue\"><img name=\"Image78\" border=\"0\" src=\"images/flat.gif\" width=\"200\" height=\"16\" alt=\"Flat-For-Sale Scheme\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 3rd
   		//3rd
  		if ((filename() == "sandwich_pm")||(filename() == "24_pm_sandwich")||(filename() == "25_pm_sandwich")||(filename() == "26_pm_sandwich")||(filename() == "27_pm_sandwich")||(filename() == "28_pm_sandwich")||(filename() == "29_pm_sandwich")||(filename() == "30_pm_sandwich")||(filename() == "31_pm_sandwich")||(filename() == "32_pm_sandwich")||(filename() == "33_pm_sandwich")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"sandwich_pm.asp\"><img name=\"Image82\" border=\"0\" src=\"images/sandwich_hl.gif\" width=\"200\" height=\"28\" alt=\"Sandwich Class Housing Scheme\"></a></td>");
   		document.write("</tr>");
   		//4th
   		if (filename() == "24_pm_sandwich"){
		document.write("<tr>");
    		document.write("<td><a href=\"24_pm_sandwich.asp?contentid=1&estid=24\"><img name=\"Image83\" border=\"0\" src=\"images/24_ro.gif\" width=\"200\" height=\"16\" alt=\"Park Belvedere\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"24_pm_sandwich.asp?contentid=1&estid=24\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image83','','images/24_ro.gif',1);MM_displayStatusMsg('Park Belvedere');return document.MM_returnValue\"><img name=\"Image83\" border=\"0\" src=\"images/24.gif\" width=\"200\" height=\"16\" alt=\"Park Belvedere\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "25_pm_sandwich"){
		document.write("<tr>");
    		document.write("<td><a href=\"25_pm_sandwich.asp?contentid=1&estid=25\"><img name=\"Image84\" border=\"0\" src=\"images/25_ro.gif\" width=\"200\" height=\"16\" alt=\"Sunshine Grove\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"25_pm_sandwich.asp?contentid=1&estid=25\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image84','','images/25_ro.gif',1);MM_displayStatusMsg('Sunshine Grove');return document.MM_returnValue\"><img name=\"Image84\" border=\"0\" src=\"images/25.gif\" width=\"200\" height=\"16\" alt=\"Sunshine Grove\"></a></td>");
  		document.write("</tr>");
  		}
   		/*if (filename() == "26_pm_sandwich"){
		document.write("<tr>");
    		document.write("<td><a href=\"26_pm_sandwich.asp?contentid=1&estid=26\"><img name=\"Image85\" border=\"0\" src=\"images/26_ro.gif\" width=\"200\" height=\"16\" alt=\"Radiant Towers\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"26_pm_sandwich.asp?contentid=1&estid=26\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image85','','images/26_ro.gif',1);MM_displayStatusMsg('Radiant Towers');return document.MM_returnValue\"><img name=\"Image85\" border=\"0\" src=\"images/26.gif\" width=\"200\" height=\"16\" alt=\"Radiant Towers\"></a></td>");
  		document.write("</tr>");
  		}*/
   		if (filename() == "27_pm_sandwich"){
		document.write("<tr>");
    		document.write("<td><a href=\"27_pm_sandwich.asp?contentid=1&estid=27\"><img name=\"Image86\" border=\"0\" src=\"images/27_ro.gif\" width=\"200\" height=\"16\" alt=\"The Pinnacle\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"27_pm_sandwich.asp?contentid=1&estid=27\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image86','','images/27_ro.gif',1);MM_displayStatusMsg('The Pinnacle');return document.MM_returnValue\"><img name=\"Image86\" border=\"0\" src=\"images/27.gif\" width=\"200\" height=\"16\" alt=\"The Pinnacle\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "28_pm_sandwich"){
		document.write("<tr>");
    		document.write("<td><a href=\"28_pm_sandwich.asp?contentid=1&estid=28\"><img name=\"Image87\" border=\"0\" src=\"images/28_ro.gif\" width=\"200\" height=\"16\" alt=\"Tivoli Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"28_pm_sandwich.asp?contentid=1&estid=28\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image87','','images/28_ro.gif',1);MM_displayStatusMsg('Tivoli Garden');return document.MM_returnValue\"><img name=\"Image87\" border=\"0\" src=\"images/28.gif\" width=\"200\" height=\"16\" alt=\"Tivoli Garden\"></a></td>");
  		document.write("</tr>");
  		}

   		if (filename() == "31_pm_sandwich"){
		document.write("<tr>");
    		document.write("<td><a href=\"31_pm_sandwich.asp?contentid=1&estid=31\"><img name=\"Image90\" border=\"0\" src=\"images/31_ro.gif\" width=\"200\" height=\"16\" alt=\"Bel Air Heights\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"31_pm_sandwich.asp?contentid=1&estid=31\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image90','','images/31_ro.gif',1);MM_displayStatusMsg('Bel Air Heights');return document.MM_returnValue\"><img name=\"Image90\" border=\"0\" src=\"images/31.gif\" width=\"200\" height=\"16\" alt=\"Bel Air Heights\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "32_pm_sandwich"){
		document.write("<tr>");
    		document.write("<td><a href=\"32_pm_sandwich.asp?contentid=1&estid=32\"><img name=\"Image91\" border=\"0\" src=\"images/32_ro.gif\" width=\"200\" height=\"16\" alt=\"Cascades\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"32_pm_sandwich.asp?contentid=1&estid=32\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image91','','images/32_ro.gif',1);MM_displayStatusMsg('Cascades');return document.MM_returnValue\"><img name=\"Image91\" border=\"0\" src=\"images/32.gif\" width=\"200\" height=\"16\" alt=\"Cascades\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "33_pm_sandwich"){
		document.write("<tr>");
    		document.write("<td><a href=\"33_pm_sandwich.asp?contentid=1&estid=33\"><img name=\"Image92\" border=\"0\" src=\"images/33_ro.gif\" width=\"200\" height=\"16\" alt=\"Highland Park\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"33_pm_sandwich.asp?contentid=1&estid=33\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image92','','images/33_ro.gif',1);MM_displayStatusMsg('Highland Park');return document.MM_returnValue\"><img name=\"Image92\" border=\"0\" src=\"images/33.gif\" width=\"200\" height=\"16\" alt=\"Highland Park\"></a></td>");
  		document.write("</tr>");
  		}

  		//end 4th
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"sandwich_pm.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image82','','images/sandwich_ro.gif',1);MM_displayStatusMsg('Sandwich Class Housing Scheme');return document.MM_returnValue\"><img name=\"Image82\" border=\"0\" src=\"images/sandwich.gif\" width=\"200\" height=\"28\" alt=\"Sandwich Class Housing Scheme\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 3rd
   		//3rd
  		if ((filename() == "urban_pm")||(filename() == "35_pm_urban")||(filename() == "36_pm_urban")||(filename() == "37_pm_urban")||(filename() == "38_pm_urban")||(filename() == "39_pm_urban")||(filename() == "40_pm_urban")||(filename() == "41_pm_urban")||(filename() == "42_pm_urban")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"urban_pm.asp\"><img name=\"Image97\" border=\"0\" src=\"images/urban_hl.gif\" width=\"200\" height=\"28\" alt=\"Urban Improvement Scheme\"></a></td>");
   		document.write("</tr>");
   		//4th
   		/*if (filename() == "35_pm_urban"){
		document.write("<tr>");
    		document.write("<td><a href=\"35_pm_urban.asp?contentid=1&estid=35\"><img name=\"Image98\" border=\"0\" src=\"images/35_ro.gif\" width=\"200\" height=\"16\" alt=\"Regal Court\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"35_pm_urban.asp?contentid=1&estid=35\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image98','','images/35_ro.gif',1);MM_displayStatusMsg('Regal Court');return document.MM_returnValue\"><img name=\"Image98\" border=\"0\" src=\"images/35.gif\" width=\"200\" height=\"16\" alt=\"Regal Court\"></a></td>");
  		document.write("</tr>");
  		}*/
   		if (filename() == "36_pm_urban"){
		document.write("<tr>");
    		document.write("<td><a href=\"36_pm_urban.asp?contentid=1&estid=36\"><img name=\"Image99\" border=\"0\" src=\"images/36_ro.gif\" width=\"200\" height=\"16\" alt=\"June Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"36_pm_urban.asp?contentid=1&estid=36\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image99','','images/36_ro.gif',1);MM_displayStatusMsg('June Garden');return document.MM_returnValue\"><img name=\"Image99\" border=\"0\" src=\"images/36.gif\" width=\"200\" height=\"16\" alt=\"June Garden\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "37_pm_urban"){
		document.write("<tr>");
    		document.write("<td><a href=\"37_pm_urban.asp?contentid=1&estid=37\"><img name=\"Image100\" border=\"0\" src=\"images/37_ro.gif\" width=\"200\" height=\"16\" alt=\"Dragon Centre\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"37_pm_urban.asp?contentid=1&estid=37\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image100','','images/37_ro.gif',1);MM_displayStatusMsg('Dragon Centre');return document.MM_returnValue\"><img name=\"Image100\" border=\"0\" src=\"images/37.gif\" width=\"200\" height=\"16\" alt=\"Dragon Centre\"></a></td>");
  		document.write("</tr>");
  		}
		if (filename() == "38_pm_urban"){
		document.write("<tr>");
    		document.write("<td><a href=\"38_pm_urban.asp?contentid=1&estid=38\"><img name=\"Image101\" border=\"0\" src=\"images/38_ro.gif\" width=\"200\" height=\"16\" alt=\"Prosperous Garden\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"38_pm_urban.asp?contentid=1&estid=38\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image101','','images/38_ro.gif',1);MM_displayStatusMsg('Prosperous Garden');return document.MM_returnValue\"><img name=\"Image101\" border=\"0\" src=\"images/38.gif\" width=\"200\" height=\"16\" alt=\"Prosperous Garden\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "39_pm_urban"){
		document.write("<tr>");
    		document.write("<td><a href=\"39_pm_urban.asp?contentid=1&estid=39\"><img name=\"Image102\" border=\"0\" src=\"images/39_ro.gif\" width=\"200\" height=\"16\" alt=\"Prosperity Court\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"39_pm_urban.asp?contentid=1&estid=39\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image102','','images/39_ro.gif',1);MM_displayStatusMsg('Prosperity Court');return document.MM_returnValue\"><img name=\"Image102\" border=\"0\" src=\"images/39.gif\" width=\"200\" height=\"16\" alt=\"Prosperity Court\"></a></td>");
  		document.write("</tr>");
  		}
   		if (filename() == "40_pm_urban"){
		document.write("<tr>");
    		document.write("<td><a href=\"40_pm_urban.asp?contentid=1&estid=40\"><img name=\"Image103\" border=\"0\" src=\"images/40_ro.gif\" width=\"200\" height=\"16\" alt=\"Jubilant Place\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"40_pm_urban.asp?contentid=1&estid=40\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image103','','images/40_ro.gif',1);MM_displayStatusMsg('Jubilant Place');return document.MM_returnValue\"><img name=\"Image103\" border=\"0\" src=\"images/40.gif\" width=\"200\" height=\"16\" alt=\"Jubilant Place\"></a></td>");
  		document.write("</tr>");
  		}
   		/*
		if (filename() == "41_pm_urban"){
		document.write("<tr>");
    		document.write("<td><a href=\"41_pm_urban.asp?contentid=1&estid=41\"><img name=\"Image104\" border=\"0\" src=\"images/41_ro.gif\" width=\"200\" height=\"16\" alt=\"Hollywood Terrace\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"41_pm_urban.asp?contentid=1&estid=41\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image104','','images/41_ro.gif',1);MM_displayStatusMsg('Hollywood Terrace');return document.MM_returnValue\"><img name=\"Image104\" border=\"0\" src=\"images/41.gif\" width=\"200\" height=\"16\" alt=\"Hollywood Terrace\"></a></td>");
  		document.write("</tr>");
  		}*/
		
		
   		//end 4th
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"urban_pm.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image97','','images/urban_ro.gif',1);MM_displayStatusMsg('Urban Improvement Scheme');return document.MM_returnValue\"><img name=\"Image97\" border=\"0\" src=\"images/urban.gif\" width=\"200\" height=\"28\" alt=\"Urban Improvement Scheme\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 3rd
   		//3rd
		// (filename() == "34_pm_sandwich") added for Serenity Place
  		if ((filename() == "full_pm")||(filename() == "43_pm_full")||(filename() == "34_pm_sandwich")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"full_pm.asp\"><img name=\"Image106\" border=\"0\" src=\"images/full_hl.gif\" width=\"200\" height=\"28\" alt=\"Full Market Value Developments\"></a></td>");
   		document.write("</tr>");
   		//4th
   		if (filename() == "43_pm_full"){
		document.write("<tr>");
    		document.write("<td><a href=\"43_pm_full.asp?contentid=1&estid=43\"><img name=\"Image107\" border=\"0\" src=\"images/43_ro.gif\" width=\"200\" height=\"16\" alt=\"Cayman Rise\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"43_pm_full.asp?contentid=1&estid=43\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image107','','images/43_ro.gif',1);MM_displayStatusMsg('Cayman Rise');return document.MM_returnValue\"><img name=\"Image107\" border=\"0\" src=\"images/43.gif\" width=\"200\" height=\"16\" alt=\"Cayman Rise\"></a></td>");
  		document.write("</tr>");
  		}


/* --------- Serenity Place -------------*/

   		if (filename() == "34_pm_sandwich"){
		document.write("<tr>");
    		document.write("<td><a href=\"34_pm_sandwich.asp?contentid=1&estid=34\"><img name=\"Image93\" border=\"0\" src=\"images/34_ro.gif\" width=\"200\" height=\"16\" alt=\"Serenity Place\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"34_pm_sandwich.asp?contentid=1&estid=34\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image93','','images/34_ro.gif',1);MM_displayStatusMsg('Serenity Place');return document.MM_returnValue\"><img name=\"Image93\" border=\"0\" src=\"images/34.gif\" width=\"200\" height=\"16\" alt=\"Serenity Place\"></a></td>");
  		document.write("</tr>");
  		}

/*----------- End of Serenity Place --------------*/

   		//end 4th
   	    }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"full_pm.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image106','','images/full_ro.gif',1);MM_displayStatusMsg('Full Market Value Developments');return document.MM_returnValue\"><img name=\"Image106\" border=\"0\" src=\"images/full.gif\" width=\"200\" height=\"28\" alt=\"Full Market Value Developments\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 3rd
   		//3rd
   		if ((filename() == "private")||(filename() == "44")||(filename() == "47")||(filename() == "56")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"private.asp\"><img name=\"Image109\" border=\"0\" src=\"images/private_hl.gif\" alt=\"Property Services Contract\"></a></td>");
   		document.write("</tr>");
   		//4th
   		if (filename() == "44"){
		document.write("<tr>");
    		document.write("<td><a href=\"44.asp?contentid=1&estid=44\"><img name=\"Image110\" border=\"0\" src=\"images/44_ro.gif\" width=\"200\" height=\"16\" alt=\"Ma Tau Wai Estate\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"44.asp?contentid=1&estid=44\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image110','','images/44_ro.gif',1);MM_displayStatusMsg('Ma Tau Wai Estate');return document.MM_returnValue\"><img name=\"Image110\" border=\"0\" src=\"images/44.gif\" width=\"200\" height=\"16\" alt=\"Ma Tau Wai Estate\"></a></td>");
  		document.write("</tr>");
  		}


// Shun On Estate

  		if (filename() == "47"){
		document.write("<tr>");
    		document.write("<td><a href=\"47.asp?contentid=1&estid=47\"><img name=\"Image113\" border=\"0\" src=\"images/47_ro.gif\" width=\"200\" height=\"16\" alt=\"Tai Hang Tung Estate\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"47.asp?contentid=1&estid=47\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image113','','images/47_ro.gif',1);MM_displayStatusMsg('Tai Hang Tung Estate');return document.MM_returnValue\"><img name=\"Image113\" border=\"0\" src=\"images/47.gif\" width=\"200\" height=\"16\" alt=\"Tai Hang Tung Estate\"></a></td>");
  		document.write("</tr>");
  		}
		
   		//
   		if (filename() == "56"){
		document.write("<tr>");
    		document.write("<td><a href=\"56.asp?contentid=1&estid=56\"><img name=\"Image213\" border=\"0\" src=\"images/56_ro.gif\" width=\"200\" height=\"16\" alt=\"Shek Yam Estate\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"56.asp?contentid=1&estid=56\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image213','','images/56_ro.gif',1);MM_displayStatusMsg('Shek Yam Estate');return document.MM_returnValue\"><img name=\"Image213\" border=\"0\" src=\"images/56.gif\" width=\"200\" height=\"19\" alt=\"Shek Yam Estate\"></a></td>");
  		document.write("</tr>");
  		}



   		//end 4th
   	   }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"private.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image109','','images/private_ro.gif',1);MM_displayStatusMsg('Property Services Contract');return document.MM_returnValue\"><img name=\"Image109\" border=\"0\" src=\"images/private.gif\"  alt=\"Property Services Contract\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 3rd

			
/**	Other Management Contracts	**/	
			//3rd
	if ((filename() == "omc")||(filename() == "48")||(filename() == "45")||(filename() == "49")){
		document.write("<tr>");
		document.write("<td><a href=\"45.asp?contentid=1&estid=45\"><img name=\"image_omc\" border=\"0\" src=\"images/sidemenu_omc_hl.gif\" alt=\"Other Management Contracts\"></a></td>");
		document.write("</tr>");
   		//4th
			if (filename() == "45"){
				document.write("<tr>");
				document.write("<td><a href=\"45.asp?contentid=1&estid=45\"><img name=\"Image110\" border=\"0\" src=\"images/sidemenu_omc_01_ro.gif\" alt=\"Lei Cheng Uk Estate \"></a></td>");
				document.write("</tr>");
			}else{
				document.write("<tr>");
				document.write("<td><a href=\"45.asp?contentid=1&estid=45\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image110','','images/sidemenu_omc_01_ro.gif',1);MM_displayStatusMsg('Lei Cheng Uk Estate ');return document.MM_returnValue\"><img name=\"Image110\" border=\"0\" src=\"images/sidemenu_omc_01.gif\" alt=\"Lei Cheng Uk Estate \"></a></td>");
				document.write("</tr>");
			}

// Start - Remove Tai Ping
//  		if (filename() == "48"){
//		document.write("<tr>");
//    		document.write("<td><a href=\"48.asp?contentid=1&estid=48\"><img name=\"sidemenu_omc_02\" border=\"0\" src=\"images/sidemenu_omc_02_ro.gif\"  alt=\"Tai Ping Estate\"></a></td>");
//  		document.write("</tr>");
//  		}else{
//  		document.write("<tr>");
//    		document.write("<td><a href=\"48.asp?contentid=1&estid=48\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' Tai Ping Estate');return document.MM_returnValue\"   onMouseOver=\"MM_swapImage('sidemenu_omc_02','','images/sidemenu_omc_02_ro.gif',1);MM_displayStatusMsg('Tai Ping Estate');return document.MM_returnValue\"><img name=\"sidemenu_omc_02\" border=\"0\" src=\"images/sidemenu_omc_02.gif\" alt=\"Tai Ping Estate\"></a></td>");
//  		document.write("</tr>");
//  		}
// End - Remove Tai Ping		
  		if (filename() == "49"){
		document.write("<tr>");
    		document.write("<td><a href=\"49.asp?contentid=1&estid=49\"><img name=\"sidemenu_omc_03\" border=\"0\" src=\"images/sidemenu_omc_03_ro.gif\" alt=\"Tung Tau (II) Estate\"></a></td>");
  		document.write("</tr>");
  		}else{
  		document.write("<tr>");
    		document.write("<td><a href=\"49.asp?contentid=1&estid=49\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('sidemenu_omc_03','','images/sidemenu_omc_03_ro.gif',1);MM_displayStatusMsg('Tung Tau (II) Estate');return document.MM_returnValue\"><img name=\"sidemenu_omc_03\" border=\"0\" src=\"images/sidemenu_omc_03.gif\" alt=\"Tung Tau (II) Estate\"></a></td>");
  		document.write("</tr>");
  		}
		
   		//end 4th
   	   }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"45.asp?contentid=1&estid=45\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('image_omc','','images/sidemenu_omc_ro.gif',1);MM_displayStatusMsg('Other Management Contracts');return document.MM_returnValue\"><img name=\"image_omc\" border=\"0\" src=\"images/sidemenu_omc.gif\"  alt=\"Other Management Contracts\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 3rd
/**	end of Other Management Contracts	**/		
			
			
   		//3rd
   		if (filename() == "other"){
  	        document.write("<tr>");
    		document.write("<td><a href=\"other.asp\"><img name=\"Image119\" border=\"0\" src=\"images/other_ro.gif\" width=\"200\" height=\"16\" alt=\"Other Properties\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"other.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image119','','images/other_ro.gif',1);MM_displayStatusMsg('Other Properties');return document.MM_returnValue\"><img name=\"Image119\" border=\"0\" src=\"images/other.gif\" width=\"200\" height=\"16\" alt=\"Other Properties\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 3rd
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"portfolio.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image108','','images/nav_03a_ro.gif',1);MM_displayStatusMsg('Portfolio');return document.MM_returnValue\"><img name=\"Image108\" border=\"0\" src=\"images/nav_03a.gif\" width=\"200\" height=\"16\" alt=\"Portfolio\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 2nd
   		//2nd
		
		//if ((filename() == "commercial")||(filename() == "commercial_detail")||(filename() == "commercial_detail2")||(filename() == "commercial_detail3")||(filename() == "commercial_detail4")||(filename() == "commercial_detail5")||(filename() == "commercial_detail6")||(filename() == "commercial_detail7")){
  	    document.write(ListMenuCode(comMenuItem,"03_",0,true));
		/*document.write("<tr>");
    		document.write("<td><a href=\"commercial.asp\"><img name=\"Image120\" border=\"0\" src=\"images/nav_03b_ro.gif\" width=\"200\" height=\"16\" alt=\"Commercial Leasing\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"commercial.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image120','','images/nav_03b_ro.gif',1);MM_displayStatusMsg('Commercial Leasing');return document.MM_returnValue\"><img name=\"Image120\" border=\"0\" src=\"images/nav_03b.gif\" width=\"200\" height=\"16\" alt=\"Commercial Leasing\"></a></td>");
   		document.write("</tr>");*/
   		//}
   		//end 2nd


   		//2nd

   		if (filename() == "admission"||(filename() == "admission_01")||(filename() == "admission_02")||(filename() == "admission_03")||(filename() == "admission_04")||(filename() == "admission_05")||(filename() == "admission_06")||(filename() == "admission_07")||(filename() == "admission_08")||(filename() == "admission_09")||(filename() == "admission_10")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"admission.asp\"><img name=\"Image121\" border=\"0\" src=\"images/nav_03c_ro.gif\" width=\"200\" height=\"28\" alt=\"Admission to the Approved List\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"admission.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image121','','images/nav_03c_ro.gif',1);MM_displayStatusMsg('Admission to the Approved List');return document.MM_returnValue\"><img name=\"Image121\" border=\"0\" src=\"images/nav_03c.gif\" width=\"200\" height=\"28\" alt=\"Admission to the Approved List\"></a></td>");
   		document.write("</tr>");
   		}





// -------------------------------------------
// HK Property Management Advisory
// -------------------------------------------

   		//2nd

	if ((filename() == "pm_advisory"))
	{

	document.write("<tr>");
	document.write("<td><a href=\"pm_advisory.asp\"><img name=\"Image140\" border=\"0\" src=\"images/nav_06_ro.gif\"  alt=\"Property Management Advisory Centre\"></a></td>");
	document.write("</tr>");

	}else{
	document.write("<tr>");
	document.write("<td><a href=\"pm_advisory.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image140','','images/nav_06_ro.gif',1);MM_displayStatusMsg('Property Management Advisory Centre');return document.MM_returnValue\"><img name=\"Image140\" border=\"0\" src=\"images/nav_06.gif\"  alt=\"Property Management Advisory Centre\"></a></td>");
	document.write("</tr>");
	}
	
	// Major Contracts Awarded 
	if ((filename() == "awarded_major"))
	{

	document.write("<tr>");
	document.write("<td><a href=\"awarded_major.asp\"><img name=\"Image301\" border=\"0\" src=\"images/nav_07_ro.gif\"  alt=\"Major Contracts Awarded\"></a></td>");
	document.write("</tr>");

	}else{
	document.write("<tr>");
	document.write("<td><a href=\"awarded_major.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image301','','images/nav_07_ro.gif',1);MM_displayStatusMsg('Major Contracts Awarded');return document.MM_returnValue\"><img name=\"Image301\" border=\"0\" src=\"images/nav_07.gif\"  alt=\"Major Contracts Awarded\"></a></td>");
	document.write("</tr>");
	}

	}else{
		document.write("<tr>");
		document.write("<td><a href=\"pro_man.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image53','','images/nav_03_ro.gif',1);MM_displayStatusMsg('Property Management and Commercial Leasing');return document.MM_returnValue\"><img name=\"Image53\" border=\"0\" src=\"images/nav_03.gif\" width=\"200\" height=\"34\" alt=\"Property Management and Commercial Leasing\"></a></td>");
		document.write("</tr>");
	}
	

<!--------------------- ERC ---------------------------->

// -------------------------------------------
// ERC
// -------------------------------------------
	if ((filename() == "erc_cover")||(filename() == "erc_volunteer")||(filename() == "erc_visit")||(filename() == "erc_lib"))
	{

	/*document.write("<tr>");
	document.write("<td><a href=\"erc_cover.asp\"><img name=\"Image160\" border=\"0\" src=\"images/erc_cover_hi.gif\"  alt=\"Housing Society Elderly Resources Centre\"></a></td>");
	document.write("</tr>");*/

		if (filename() == "erc_visit"){
  	        document.write("<tr>");
    		document.write("<td><a href=\"erc_visit.asp\"><img name=\"Image162\" border=\"0\" src=\"images/erc_visit_ro.gif\"  alt=\"Visit Detail\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"erc_visit.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image162','','images/erc_visit_ro.gif',1);MM_displayStatusMsg('Visit Detail');return document.MM_returnValue\"><img name=\"Image162\" border=\"0\" src=\"images/erc_visit.gif\"  alt=\"Visit Detail\"></a></td>");
   		document.write("</tr>");
   		} 

		if (filename() == "erc_lib"){
  	        document.write("<tr>");
    		document.write("<td><a href=\"erc_lib.asp\"><img name=\"Image261\" border=\"0\" src=\"images/erc_lib_ro.gif\"  alt=\"Resources Library\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"erc_lib.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image261','','images/erc_lib_ro.gif',1);MM_displayStatusMsg('Resources Library');return document.MM_returnValue\"><img name=\"Image261\" border=\"0\" src=\"images/erc_lib.gif\"  alt=\"Resources Library\"></a></td>");
   		document.write("</tr>");
   		} 


		if (filename() == "erc_volunteer"){
  	        document.write("<tr>");
    		document.write("<td><a href=\"erc_volunteer.asp\"><img name=\"Image161\" border=\"0\" src=\"images/erc_volunteer_ro.gif\"  alt=\"Volunteer Recruitment and Training Programme\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"erc_volunteer.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image161','','images/erc_volunteer_ro.gif',1);MM_displayStatusMsg('Volunteer Recruitment and Training Programme');return document.MM_returnValue\"><img name=\"Image161\" border=\"0\" src=\"images/erc_volunteer.gif\"  alt=\"Volunteer Recruitment and Training Programme\"></a></td>");
   		document.write("</tr>");
   		} 

	}
	else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"../sen/sen.asp\" target=\"_parent\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image160','','images/nav_elderly_ro.gif',1);MM_displayStatusMsg('Elderly Housing');return document.MM_returnValue\"><img name=\"Image160\" border=\"0\" src=\"images/nav_elderly.gif\"  alt=\"Elderly Housing\"></a></td>");
   		document.write("</tr>");
	}

<!----------------------- End of ERC---------------------------------->


	//Load Services


	if ((filename() == "loan_ser")||(filename() == "home_starter")||(filename() == "information")||(filename() == "information2")||(filename() == "applicationf")||(filename() == "family_1")||(filename() == "family_2")||(filename() == "family_3")||(filename() == "family_4")||(filename() == "family_5")||(filename() == "family_6")||(filename() == "applicationnes")||(filename() == "singleton_1")||(filename() == "singleton_2")||(filename() == "singleton_3")||(filename() == "singleton_4")||(filename() == "singleton_5")||(filename() == "singleton_6")||(filename() == "calculatorf")||(filename() == "calculatornes")||(filename() == "progress")||(filename() == "sand_class"))


{



	document.write("<tr>");
	document.write("<td><a href=\"loan_ser.asp\"><img name=\"Image54\" border=\"0\" src=\"images/nav_04_ro.gif\" width=\"200\" height=\"19\" alt=\"Loan Services\"></a></td>");
	document.write("</tr>");
	
		//2nd
		if ((filename() == "home_starter")||(filename() == "information")||(filename() == "information2")||(filename() == "applicationf")||(filename() == "family_1")||(filename() == "family_2")||(filename() == "family_3")||(filename() == "family_4")||(filename() == "family_5")||(filename() == "family_6")||(filename() == "applicationnes")||(filename() == "singleton_1")||(filename() == "singleton_2")||(filename() == "singleton_3")||(filename() == "singleton_4")||(filename() == "singleton_5")||(filename() == "singleton_6")||(filename() == "calculatorf")||(filename() == "calculatornes")||(filename() == "progress")){
  	        document.write("<tr>");
    		document.write("<td><a href=\"home_starter.asp\"><img name=\"Image122\" border=\"0\" src=\"images/nav_04a_hl.gif\" width=\"200\" height=\"28\" alt=\"Home Starter Loan Scheme\"></a></td>");
   		document.write("</tr>");

   		//3rd



   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"home_starter.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image122','','images/nav_04a_ro.gif',1);MM_displayStatusMsg('Home Starter Loan Scheme');return document.MM_returnValue\"><img name=\"Image122\" border=\"0\" src=\"images/nav_04a.gif\" width=\"200\" height=\"28\" alt=\"Home Starter Loan Scheme\"></a></td>");
   		document.write("</tr>");
   		}
   		//end 2nd
   		//2nd
   		if (filename() == "sand_class"){
  	        document.write("<tr>");
    		document.write("<td><a href=\"sand_class.asp\"><img name=\"Image129\" border=\"0\" src=\"images/nav_04b_ro.gif\" width=\"200\" height=\"28\" alt=\"Sandwich Class Housing Load Scheme\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"sand_class.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image129','','images/nav_04b_ro.gif',1);MM_displayStatusMsg('Sandwich Class Housing Load Scheme');return document.MM_returnValue\"><img name=\"Image129\" border=\"0\" src=\"images/nav_04b.gif\" width=\"200\" height=\"28\" alt=\"Sandwich Class Housing Load Scheme\"></a></td>");
   		document.write("</tr>");
   		} 
   		//end 2nd
	}else{
	document.write("<tr>");
	document.write("<td><a href=\"loan_ser.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image54','','images/nav_04_ro.gif',1);MM_displayStatusMsg('Loan Services');return document.MM_returnValue\"><img name=\"Image54\" border=\"0\" src=\"images/nav_04.gif\" width=\"200\" height=\"19\" alt=\"Loan Services\"></a></td>");
	document.write("</tr>");
	}



// -------------------------------------------
// HK Property Management BMM
// -------------------------------------------
	document.write(ListMenuCode(bmmsMenuGrp,"7_",0,true));
	/*if ((filename() == "pm_bmm")||(filename() == "pm_bmm_a")||(filename() == "pm_bmm_b")||(filename() == "pm_bmm_c")||(filename() == "pm_bmm_d"))
	{

	document.write("<tr>");
	document.write("<td><a href=\"pm_bmm.asp\"><img name=\"Image150\" border=\"0\" src=\"images/nav_07_ro.gif\"  alt=\"Building Management and Maintenance Scheme\"></a></td>");
	document.write("</tr>");






		if (filename() == "pm_bmm_a"){
  	        document.write("<tr>");
    		document.write("<td><a href=\"pm_bmm_a.asp\"><img name=\"Image151\" border=\"0\" src=\"images/nav_07a_ro.gif\"  alt=\"Home Renovation Loan Scheme\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"pm_bmm_a.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image151','','images/nav_07a_ro.gif',1);MM_displayStatusMsg('Home Renovation Loan Scheme');return document.MM_returnValue\"><img name=\"Image151\" border=\"0\" src=\"images/nav_07a.gif\"  alt=\"Home Renovation Loan Scheme\"></a></td>");
   		document.write("</tr>");
   		} 


		if (filename() == "pm_bmm_b"){
  	        document.write("<tr>");
    		document.write("<td><a href=\"pm_bmm_b.asp\"><img name=\"Image152\" border=\"0\" src=\"images/nav_07b_ro.gif\"  alt=\"Building Maintenance Incentive Scheme\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"pm_bmm_b.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image152','','images/nav_07b_ro.gif',1);MM_displayStatusMsg('Building Maintenance Incentive Scheme');return document.MM_returnValue\"><img name=\"Image152\" border=\"0\" src=\"images/nav_07b.gif\"  alt=\"Building Maintenance Incentive Scheme\"></a></td>");
   		document.write("</tr>");
   		} 



		if (filename() == "pm_bmm_c"){
  	        document.write("<tr>");
    		document.write("<td><a href=\"pm_bmm_c.asp\"><img name=\"Image153\" border=\"0\" src=\"images/nav_07c_ro.gif\"  alt=\"Building Management Incentive Scheme\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"pm_bmm_c.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image153','','images/nav_07c_ro.gif',1);MM_displayStatusMsg('Building Management Incentive Scheme');return document.MM_returnValue\"><img name=\"Image153\" border=\"0\" src=\"images/nav_07c.gif\"  alt=\"Building Management Incentive Scheme\"></a></td>");
   		document.write("</tr>");
   		} 


		if (filename() == "pm_bmm_d"){ // pm_bmm_d
  	        document.write("<tr>");
    		document.write("<td><a href=\"pm_bmm_d.asp\"><img name=\"Image154\" border=\"0\" src=\"images/nav_07d_ro.gif\"  alt=\"TV commercials & Video\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"pm_bmm_d.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image154','','images/nav_07d_ro.gif',1);MM_displayStatusMsg('TV commercials & Video');return document.MM_returnValue\"><img name=\"Image154\" border=\"0\" src=\"images/nav_07d.gif\"  alt=\"TV commercials & Video\"></a></td>");
   		document.write("</tr>");
   		} 





	}
	else{
	document.write("<tr>");
	document.write("<td><a href=\"pm_bmm.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image150','','images/nav_07_ro.gif',1);MM_displayStatusMsg('Building Management and Maintenance Scheme');return document.MM_returnValue\"><img name=\"Image150\" border=\"0\" src=\"images/nav_07.gif\"  alt=\"Building Management and Maintenance Scheme\"></a></td>");
	document.write("</tr>");
	}/**/


// -----------------------------------------------
// PM OBB  - start
// -----------------------------------------------

	document.write(ListMenuCode(obbMenuGrp,"11_",0,true));
	/*if ((filename() == "pm_obb")||(filename() == "home_starter"))
	{
	document.write("<tr>");
	document.write("<td><a href=\"pm_obb.asp\"><img name=\"Image300\" border=\"0\" src=\"images/nav_11_ro.gif\" width=\"200\" height=\"19\" alt=\"Operation Building Bright\"></a></td>");
	document.write("</tr>");
	
	}else{
	document.write("<tr>");
	document.write("<td><a href=\"pm_obb.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg('Operation Building Bright');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image300','','images/nav_11_ro.gif',1);MM_displayStatusMsg('');return document.MM_returnValue\"><img name=\"Image300\" border=\"0\" src=\"images/nav_11.gif\" width=\"200\" height=\"19\" alt=\"Operation Building Bright\"></a></td>");
	document.write("</tr>");
	}*/
// -----------------------------------------------
// PM OBB  - end
// -----------------------------------------------

// -----------------------------------------------
// PM BMGS  - start
// -----------------------------------------------

	/*if ((filename() == "pm_bmgs")||(filename() == "home_starter"))
	{
	document.write("<tr>");
	document.write("<td><a href=\"pm_bmgs.asp\"><img name=\"Image180\" border=\"0\" src=\"images/nav_10_ro.gif\" width=\"200\" height=\"34\" alt=\"Building Maintenance Grant Scheme for Elderly Owners\"></a></td>");
	document.write("</tr>");
	
	}else{
	document.write("<tr>");
	document.write("<td><a href=\"pm_bmgs.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg('Building Maintenance Grant Scheme for Elderly Owners');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image180','','images/nav_10_ro.gif',1);MM_displayStatusMsg('');return document.MM_returnValue\"><img name=\"Image180\" border=\"0\" src=\"images/nav_10.gif\" width=\"200\" height=\"34\" alt=\"Building Maintenance Grant Scheme for Elderly Owners\"></a></td>");
	document.write("</tr>");
	}*/
// -----------------------------------------------
// PM BMGS  - end
// -----------------------------------------------


// -------------------------------------------
// HKHSA
// -------------------------------------------
/*

	if (filename() == "hkhsa" || filename() == "hkhsa_r00" || filename() == "hkhsa_01" || filename() == "hkhsa_02" || filename() == "hkhsa_03" || filename() == "hkhsa_04" || filename() == "hkhsa_05")
	{

	document.write("<tr>");
	document.write("<td><a href=\"hkhsa.asp\"><img name=\"Image170\" border=\"0\" src=\"images/nav_09_ro.gif\"  alt=\"Hong Kong Housing Society Academy\"></a></td>");
	document.write("</tr>");


		if (filename() == "hkhsa_01")
		{

		document.write("<tr>");
		document.write("<td><a href=\"hkhsa_01.asp\"><img name=\"Image171\" border=\"0\" src=\"images/nav_09a_2_ro.gif\"  alt=\"Promoting Professional and Academic Exchange\"></a></td>");
		document.write("</tr>");

		}
		else{
		document.write("<tr>");
		document.write("<td><a href=\"hkhsa_01.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image171','','images/nav_09a_2_ro.gif',1);MM_displayStatusMsg('Promoting Professional and Academic Exchange');return document.MM_returnValue\"><img name=\"Image171\" border=\"0\" src=\"images/nav_09a_2.gif\"  alt=\"Promoting Professional and Academic Exchange\"></a></td>");
		document.write("</tr>");
		}



		if (filename() == "hkhsa_02")
		{

		document.write("<tr>");
		document.write("<td><a href=\"hkhsa_02.asp\"><img name=\"Image172\" border=\"0\" src=\"images/nav_09b_2_ro.gif\"  alt=\"Grooming New Talents\"></a></td>");
		document.write("</tr>");

		}
		else{
		document.write("<tr>");
		document.write("<td><a href=\"hkhsa_02.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image172','','images/nav_09b_2_ro.gif',1);MM_displayStatusMsg('Grooming New Talents');return document.MM_returnValue\"><img name=\"Image172\" border=\"0\" src=\"images/nav_09b_2.gif\"  alt=\"Grooming New Talents\"></a></td>");
		document.write("</tr>");
		}



		if (filename() == "hkhsa_03")
		{

		document.write("<tr>");
		document.write("<td><a href=\"hkhsa_03.asp\"><img name=\"Image173\" border=\"0\" src=\"images/nav_09c_2_ro.gif\"  alt=\"Supporting Professional Development and Researches\"></a></td>");
		document.write("</tr>");

		}
		else{
		document.write("<tr>");
		document.write("<td><a href=\"hkhsa_03.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image173','','images/nav_09c_2_ro.gif',1);MM_displayStatusMsg('Supporting Professional Development and Researches');return document.MM_returnValue\"><img name=\"Image173\" border=\"0\" src=\"images/nav_09c_2.gif\"  alt=\"Supporting Professional Development and Researches\"></a></td>");
		document.write("</tr>");
		}



		if (filename() == "hkhsa_04")
		{

		document.write("<tr>");
		document.write("<td><a href=\"hkhsa_04.asp\"><img name=\"Image174\" border=\"0\" src=\"images/nav_09d_2_ro.gif\"  alt=\"Participating Universities and Institutes\"></a></td>");
		document.write("</tr>");

		}
		else{
		document.write("<tr>");
		document.write("<td><a href=\"hkhsa_04.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image174','','images/nav_09d_2_ro.gif',1);MM_displayStatusMsg('Participating Universities and Institutes');return document.MM_returnValue\"><img name=\"Image174\" border=\"0\" src=\"images/nav_09d_2.gif\"  alt=\"Participating Universities and Institutes\"></a></td>");
		document.write("</tr>");
		}

*/
/*===================================================
		if (filename() == "hkhsa_05")
		{

		document.write("<tr>");
		document.write("<td><a href=\"hkhsa_05.asp\"><img name=\"Image175\" border=\"0\" src=\"images/nav_09e_ro.gif\"  alt=\"Sponsoring Conferences and Researches\"></a></td>");
		document.write("</tr>");

		}
		else{
		document.write("<tr>");
		document.write("<td><a href=\"hkhsa_05.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image175','','images/nav_09e_ro.gif',1);MM_displayStatusMsg('Sponsoring Conferences and Researches');return document.MM_returnValue\"><img name=\"Image175\" border=\"0\" src=\"images/nav_09e.gif\"  alt=\"Sponsoring Conferences and Researches\"></a></td>");
		document.write("</tr>");
		}

===========================================================*/
/*

	}
	else{
	document.write("<tr>");
	document.write("<td><a href=\"hkhsa.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image170','','images/nav_09_ro.gif',1);MM_displayStatusMsg('Hong Kong Housing Society Academy');return document.MM_returnValue\"><img name=\"Image170\" border=\"0\" src=\"images/nav_09.gif\"  alt=\"Hong Kong Housing Society Academy\"></a></td>");
	document.write("</tr>");
	}

*/




	// ---------------------
	// New Project
	// ---------------------

/***

	if ((filename() == "awarded")||(filename() == "awarded_2006")||(filename() == "construction"))
	{

	document.write("<tr>");
	document.write("<td><a href=\"awarded.asp\"><img name=\"Image136\" border=\"0\" src=\"images/nav_05_ro.jpg\"  alt=\"New Projects\"></a></td>");
	document.write("</tr>");




   		if (filename() == "awarded"){
  	        document.write("<tr>");
    		document.write("<td><a href=\"awarded.asp\"><img name=\"Image138\" border=\"0\" src=\"images/nav_05a_ro.jpg\"  alt=\"Major Contracts Awarded\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"awarded.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image138','','images/nav_05a_ro.jpg',1);MM_displayStatusMsg('Major Contracts Awarded');return document.MM_returnValue\"><img name=\"Image138\" border=\"0\" src=\"images/nav_05a.jpg\" alt=\"Major Contracts Awarded\"></a></td>");
   		document.write("</tr>");
   		}


   		if (filename() == "construction"){
  	        document.write("<tr>");
    		document.write("<td><a href=\"construction.asp\"><img name=\"Image137\" border=\"0\" src=\"images/nav_05b_ro.jpg\"  alt=\"Projects Under Construction\"></a></td>");
   		document.write("</tr>");
   	        }else{
   	        document.write("<tr>");
    		document.write("<td><a href=\"construction.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image137','','images/nav_05b_ro.jpg',1);MM_displayStatusMsg('Projects Under Construction');return document.MM_returnValue\"><img name=\"Image137\" border=\"0\" src=\"images/nav_05b.jpg\" alt=\"Projects Under Construction\"></a></td>");
   		document.write("</tr>");
   		}


	}

	else{
	document.write("<tr>");
	document.write("<td><a href=\"awarded.asp\" onMouseOut=\"MM_swapImgRestore();MM_displayStatusMsg(' ');return document.MM_returnValue\" onMouseOver=\"MM_swapImage('Image139','','images/nav_05_ro.jpg',1);MM_displayStatusMsg('New Projects');return document.MM_returnValue\"><img name=\"Image139\" border=\"0\" src=\"images/nav_05.jpg\"  alt=\"New Projects\"></a></td>");
	document.write("</tr>");
	}



***/

	document.write(ListMenuCode(urpMenuGrp,"13_",0,true));
	document.write(ListMenuCode(vbcsMenuGrp,"12_",0,true));


	document.write("</table>");
	document.write("<p><br>");
}

// Dreamweaver

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}


function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}

function lang(version){
	link = location.href;
	english = "/eng/";
	chinese = "/chi/";
	
	//setting for no chinese
	if (version == "nchi"){
		parent.location.href= "";
	}

	//setting for no english
	if (version == "neng"){
		parent.location.href="";
	}
	
	
	if (version == "en"){
		link = link.replace (chinese, english);
		parent.location.href = link;
	}else if (version == "ch"){
		link = link.replace (english, chinese);
		parent.location.href = link;
	}
}
