﻿function getList(){
	//Initialize the array
	var arrTitle, arrURL;
	arrTitle = new Array();
	arrURL = new Array();

	arrURL[0] = "../news.php";
	arrURL[1] = "news0906.php";
	arrURL[2] = "news0806.php";
	arrURL[3] = "news0711.php";
	arrURL[4] = "../../member/news/news070914.php";
	arrURL[5] = "news0709_1.php";
	arrURL[6] = "news0709_2.php";


	arrTitle[0] = "选择其它最新消息&nbsp;&nbsp;&#187;";
	arrTitle[1] = "&nbsp;&nbsp;-- 西贡区国际「安全社区」认证计划";
	arrTitle[2] = "&nbsp;&nbsp;-- 「开心家庭迎暑假」嘉年华";
	arrTitle[3] = "&nbsp;&nbsp;-- 「健康家庭乐在安全小区」嘉年华";
	arrTitle[4] = "&nbsp;&nbsp;-- 西太平洋区健康城市联盟中国香港支部成立典礼暨「健康城市」论坛";
	arrTitle[5] = "&nbsp;&nbsp;-- 「健安屋苑」计划之家居安全冷知识大募集";
	arrTitle[6] = "&nbsp;&nbsp;-- 免费索取「健康城市 跨越十年」十周年纪念光盘及信息套装";


	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;
} 

