﻿function getList(){
	//Initialize the array
	var arrTitle, arrURL;
	arrTitle = new Array();
	arrURL = new Array();


	arrURL[0] = "tkt.html";     
	arrURL[1] = "tkt_2.html";       
	arrURL[2] = "tkt_3.html";       
	arrURL[3] = "tkt_4.html";       

		
	arrTitle[0] = "第一屆大角咀廟會";
	arrTitle[1] = "第二屆大角咀廟會";
	arrTitle[2] = "第三屆大角咀廟會";
	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;
}
