﻿function getList(){
	//Initialize the array
	var arrTitle, arrURL;
	arrTitle = new Array();
	arrURL = new Array();

	arrURL[0] = "report01.php";
	arrURL[1] = "report01.php";
	arrURL[2] = "report02_1.php";
	arrURL[3] = "report02_2.php";
	arrURL[4] = "report02_3.php";


	arrTitle[0] = "將軍澳社區健康調查2006 &#187;";
	arrTitle[1] = "&nbsp;&nbsp;-- 報告摘要";
	arrTitle[2] = "&nbsp;&nbsp;-- 調查結果及圖表";
	arrTitle[3] = "&nbsp;&nbsp;-- 受訪者背景資料";
	arrTitle[4] = "&nbsp;&nbsp;-- 2000及2006社區健康調查比較結果";


	var i, strSelf;
	strSelf = document.location.href

	for (i = 0 ; i < arrURL.length; i++){
		if (strSelf.substring(strSelf.length - arrURL[i].length, strSelf.length) == arrURL[i]){
			document.writeln("<option value='"+arrURL[i]+"' selected>"+arrTitle[i]+"</option>");
		}
		else{
			document.writeln("<option value='"+arrURL[i]+"'>"+arrTitle[i]+"</option>");
		}
	}

	return;
}

function changeURL(strTarget){
	document.location.href = strTarget;
}