var URL = new Array();
var Name = new Array();
//-----------------------------------------//
URL[0] = "en_for_agents_registration_pledge.htm";
Name[0] = "Performance Pledge";

URL[1] = "en_for_agents_registration_fee.htm";
Name[1] = "Registration Fee, Payment & Refund Method";

URL[2] = "en_for_agents_registration_forms.htm";
Name[2] = "Forms";

URL[3] = "en_for_agents_registration.htm";
Name[3] = "Insurance Agents Register";

URL[4] = "en_for_agents_registration_iiqas.htm";
Name[4] = "IIQAS";

//-----------------------------------------//
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>");
}