var URL = new Array();
var Name = new Array();
//-----------------------------------------//
URL[0] = "b5_for_agents_appeals_introduction.htm";
Name[0] = "簡介";

URL[1] = "b5_for_agents_appeals_members.htm";
Name[1] = "委員名錄";

URL[2] = "b5_for_agents_appeals_report.htm";
Name[2] = "報告";

URL[3] = "b5_for_agents_appeals_proceedings.htm";
Name[3] = "訴訟程序規則";

URL[4] = "b5_for_agents_appeals_procedures.htm";
Name[4] = "程序、費用及表格";

URL[5] = "b5_for_agents_appeals_substantiated.htm";
Name[5] = "個案研究";

URL[6] = "b5_for_agents_appeals_faqs.htm";
Name[6] = "常見問題";

//-----------------------------------------//
function dropDown_registration(key){
	document.write("<form name=\"form1\">");
	document.write("  <select name=\"select\" class=\"pulldown\" onChange=\"urlMenu(this);\">");
	var i;
	for (i = 0; i < URL.length; i++ )
	{	
		if (key == i)
		{
			document.write("  <option value=\""+URL[i]+"\" selected>"+Name[i]+"</option>");
		}
		else{
			document.write("  <option value=\""+URL[i]+"\">"+Name[i]+"</option>");
		}
	}
	document.write("  </select>");
	document.write("  </form>");
}