// 0 = date
// 1 = topic
//2 = link
var totalDataRow = 0;
var totalDataCol = 3;

var data = new Array(totalDataCol);
for(var counter = 0; counter < totalDataCol; counter++){
	data[counter] = new Array();
}

data[0][totalDataRow] = '2007/12/29';
data[1][totalDataRow] = 'Decision of the Standing Committee of the National People\'s Congress on Issues Relating to the Methods for Selecting the Chief Executive of the Hong Kong Special Administrative Region and for Forming the Legislative Council of the Hong Kong Special Administrative Region in the Year 2012 and on Issues Relating to Universal Suffrage';
data[2][totalDataRow++] = './doc/2007_12_29_e.pdf';

data[0][totalDataRow] = '2007/12/12';
data[1][totalDataRow] = 'Report on the Public Consultation on Constitutional Development and on whether there is a need to amend the methods for selecting the Chief Executive of the Hong Kong Special Administrative Region and for forming the Legislative Council of the Hong Kong Special Administrative Region in 2012';
data[2][totalDataRow++] = './doc/2007_12_12_e.pdf';

data[0][totalDataRow] = '2005/04/27';
data[1][totalDataRow] = 'Interpretation of Paragraph 2, Article 53 of the Basic Law of the Hong Kong Special Administrative Region of the People\'s Republic of China by the Standing Committee of the National People\'s Congress';
data[2][totalDataRow++] = './doc/2005_04_27_e.pdf';

data[0][totalDataRow] = '2005/04/06';
data[1][totalDataRow] = 'Report to the State Council concerning the submission of a request to the Standing Committee of the National People\'s Congress regarding the interpretation of Article 53(2) of the Basic Law of the Hong Kong Special Administrative Region of the People\'s Republic of China';
data[2][totalDataRow++] = './doc/2005_04_06_e.doc';

data[0][totalDataRow] = '2004/04/26';
data[1][totalDataRow] = 'Decision of the Standing Committee of the National People\'s Congress on issues relating to the Methods For Selecting the Chief Executive of the Hong Kong Special Administrative Region in the Year 2007 and For  Forming the Legislative Council of The Hong Kong Special Administrative Region in the Year 2008';
data[2][totalDataRow++] = './doc/2004_04_26_e.pdf';

data[0][totalDataRow] = '2004/04/15';
data[1][totalDataRow] = 'Report on whether there is a need to amend the methods for selecting the Chief Executive of the Hong Kong Special Administrative Region in 2007 and for forming the Legislative Council of the Hong Kong Special Administrative Region in 2008';
data[2][totalDataRow++] = './doc/2004_04_15_e.pdf';

data[0][totalDataRow] = '2004/04/06';
data[1][totalDataRow] = 'The Interpretation of the Standing Committee of the National People\'s Congress of Article 7 of Annex I and Article III of Annex II to the Basic Law of the Hong Kong Special Administrative Region of the People\'s Republic of China';
data[2][totalDataRow++] = './doc/2004_04_06_e.pdf';

data[0][totalDataRow] = '1999/06/26';
data[1][totalDataRow] = 'The Interpretation by the Standing Committee of the National People\'s Congress of Articles 22(4) and 24(2)(3) of the Basic Law of the Hong Kong Special Administrative Region of the People\'s Republic of China ';
data[2][totalDataRow++] = '1999_6_26.html';

data[0][totalDataRow] = '1999/05/20';
data[1][totalDataRow] = 'Report on Seeking Assistance from the Central People\'s Government in Solving Problems Encountered in the Implementation of the Basic Law of the Hong Kong Special Administrative Region of the People\'s Republic of China';
data[2][totalDataRow++] = './doc/1999_05_20_e.doc';


function getData(){
	for(var counter = 0; counter < totalDataRow; counter++){
		var targetBlank = '';
		if(data[2][counter].substr(data[2][counter].length-3,3)!='tml'){
			targetBlank = " target=\"_blank\"";
		}
			document.write('	<tr valign="top">');
		if(counter % 2 == 1){
			document.write('		<td width="100" align="center" class="tb_line">');
		}else{
			document.write('		<td width="100" align="center" class="tb_line_alt">');
		}
			document.write('			<a href="../../'+((location.href.search("/text/")!=-1)?'../':'')+'en/materials/' + data[2][counter] + '"'+targetBlank+'>' + data[0][counter] + '</a>');
			document.write('		</td>');
		if(counter % 2 == 1){
			document.write('		<td align="left" class="tb_line">');
		}else{
			document.write('		<td align="left" class="tb_line_alt">');
		}
			document.write('			<a href="../../'+((location.href.search("/text/")!=-1)?'../':'')+'en/materials/' + data[2][counter] + '"'+targetBlank+'>' + data[1][counter] + '</a>');
			document.write('		</td>');
			document.write('	</tr>');
	}
}