﻿
var chapterName = new Array();
chapterName[0]  = '';
chapterName[1]  = 'Constitution and Administration';
chapterName[2]  = 'The Legal System';
chapterName[3]  = 'The Economy';
chapterName[4]  = 'Financial and Monetary Affairs';
chapterName[5]  = 'Commerce and Industry';
chapterName[6]  = 'Employment';
chapterName[7]  = 'Education';
chapterName[8]  = 'Health';
chapterName[9]  = 'Food Safety, Environmental Hygiene, Agriculture and Fisheries';
chapterName[10] = 'Social Welfare';
chapterName[11] = 'Housing';
chapterName[12] = 'Land, Public Works and Utilities';
chapterName[13] = 'Transport';
chapterName[14] = 'The Environment';
chapterName[15] = 'Travel and Tourism';
chapterName[16] = 'Public Order';
chapterName[17] = 'Communications, the Media and Information Technology';
chapterName[18] = 'Religion and Custom';
chapterName[19] = 'Recreation, Sport and the Arts';
chapterName[20] = 'Population and Immigration';
chapterName[21] = 'History';

function addZero(n){
	if(n<10){n="0"+n;}
	return(n);
}

function writeMenu(n){
	document.write('<table width=\"442\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" background=\"http://www.yearbook.gov.hk/2005/images/t.gif\">');
	document.write('<tr>');
	document.write('<td width=\"10\" class=\"submenu\"><a href=\"http://www.yearbook.gov.hk/2005/en/index.htm\">home</a></td>');
	for(i=1;i<=21;i++){
		if(i==n){
			document.write('<td width=\"10\" class=\"submenu\"><b>'+i+'</b></td>');
		}else{
			document.write('<td width=\"10\" class=\"submenu\"><a href=\"http://www.yearbook.gov.hk/2005/en/'+addZero(i)+'_01.htm">'+i+'</a></td>');
		}
	}
	if(n=='app'){
		document.write('<td width=\"10\" class=\"submenu\"><a href=\"http://www.yearbook.gov.hk/2005/en/app.htm\">+</a></td>');
	}else{
		document.write('<td width=\"10\" class=\"submenu\"><a href=\"http://www.yearbook.gov.hk/2005/en/app.htm\">+</a></td>');
	}
		document.write('<td width=\"10\" class=\"submenu\">&nbsp;');
	document.write('</tr>');
	document.write('</table>');
}