﻿function getList(){
	//Initialize the array
	var arrTitle, arrURL;
	arrTitle = new Array();
	arrURL = new Array();

	//arrURL[0] = "../news.php";
	arrURL[0] = "news1007_colorful.php";



	//arrTitle[0] = "選擇其他最新消息&nbsp;&nbsp;&#187;";
	arrTitle[0] = "&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;
}