var URL = new Array();
var Name = new Array();
//-----------------------------------------//
URL[0] = "b5_for_agents_regulation_practice.asp";
Name[0] = "保險代理管理守則";

URL[1] = "b5_for_agents_regulation_life.htm";
Name[1] = "壽險轉保守則";

URL[2] = "b5_for_agents_regulation_cpd.asp";
Name[2] = "客戶保障聲明書";

URL[3] = "b5_for_agents_regulation_cooling.asp";
Name[3] = "冷靜期權益";

URL[4] = "b5_for_agents_regulation_initative.asp";
Name[4] = "客戶所需保險分析";

URL[5] = "b5_for_agents_regulation_model.htm";
Name[5] = "標準代理合約";

URL[6] = "b5_for_agents_regulation_standard.asp";
Name[6] = "壽險利益說明文件";

URL[7] = "b5_for_agents_regulation_substantiated.htm";
Name[7] = "個案分析";

URL[8] = "b5_for_agents_regulation_faqs.htm";
Name[8] = "常見問題";
//-----------------------------------------//
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>");
}