var URL = new Array();
var Name = new Array();
//-----------------------------------------//
URL[0] = "b5_for_agents_introduction.htm";
Name[0] = "簡介";

URL[1] = "b5_for_agents_members.htm";
Name[1] = "委員名錄";

URL[2] = "b5_for_agents_report.htm";
Name[2] = "報告";




//-----------------------------------------//
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>");
}