﻿function getList(){
	//Initialize the array
	var arrTitle, arrURL;
	arrTitle = new Array();
	arrURL = new Array();

	arrURL[0] = "";
	arrURL[1] = "../news.php";
	arrURL[2] = "../news_2006.php";
	arrURL[3] = "news070914.php";
	


	arrTitle[0] = "-----請選擇-----";
	arrTitle[1] = "資 訊 速 遞  2007";
	arrTitle[2] = "資 訊 速 遞  2006";
	arrTitle[3] = "澳門健康城市來港交流";
	


	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;
}