var URL = new Array();
var Name = new Array();
//-----------------------------------------//
URL[0] = "en_for_agents_regulation_practice.asp";
Name[0] = "The Code of Practice for the Administration of Insurance Agents";

URL[1] = "en_for_agents_regulation_life.htm";
Name[1] = "Code of Practice for Life Insurance Replacement";

URL[2] = "en_for_agents_regulation_cpd.asp";
Name[2] = "&quot;Customer Protection Declaration&quot; Form";

URL[3] = "en_for_agents_regulation_cooling.asp";
Name[3] = "Cooling-off Initiative";

URL[4] = "en_for_agents_regulation_initative.asp";
Name[4] = "Initiative on Needs Analysis";

URL[5] = "en_for_agents_regulation_model.htm";
Name[5] = "Model Agency Agreement";

URL[6] = "en_for_agents_regulation_standard.asp";
Name[6] = "Standard Illustrations for Life Insurance Policies";

URL[7] = "en_for_agents_regulation_substantiated.htm";
Name[7] = "Case Review";

URL[8] = "en_for_agents_regulation_faqs.htm";
Name[8] = "FAQs";
//-----------------------------------------//
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>");
}