var URL = new Array();
var Name = new Array();
//-----------------------------------------//
URL[0] = "b5_tips_customer_practice.asp";
Name[0] = "保險代理管理守則";

URL[1] = "b5_tips_customer_cpd.asp";
Name[1] = "客戶保障聲明書";

URL[2] = "b5_tips_customer_cooling.asp";
Name[2] = "冷靜期權益";

URL[3] = "b5_tips_customer_initiative.asp";
Name[3] = "客戶所需保險分析";

URL[4] = "b5_tips_customer_standard.asp";
Name[4] = "壽險利益說明文件";

URL[5] = "b5_tips_customer_conduct.htm";
Name[5] = "承保商專業守則";

//-----------------------------------------//
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>");
}