var URL = new Array();
var Name = new Array();
//-----------------------------------------//
URL[0] = "en_tips.htm";
Name[0] = "What is Insurance?";

URL[1] = "en_tips_shopping.htm";
Name[1] = "Shopping Around for Insurance";

URL[2] = "en_tips_proposal.htm";
Name[2] = "Completing Proposal Forms";

URL[3] = "en_tips_life.htm";
Name[3] = "Life Assurance";

URL[4] = "en_tips_accident.htm";
Name[4] = "Accident Insurance";

URL[5] = "en_tips_medical.htm";
Name[5] = "Medical Insurance";

URL[6] = "en_tips_personal.htm";
Name[6] = "Personal Liability Insurance";

URL[7] = "en_tips_travel.htm";
Name[7] = "Travel Insurance";

URL[8] = "en_tips_household.htm";
Name[8] = "Household Contents & Building Insurance";

URL[9] = "en_tips_motor.htm";
Name[9] = "Motor Insurance";

URL[10] = "en_tips_employee.htm";
Name[10] = "Employees' Compensation Insurance";

URL[11] = "en_tips_lodging.htm";
Name[11] = "Lodging a Claim";

URL[12] = "en_tips_customer_practice.asp";
Name[12] = "Customer Protection";




//-----------------------------------------//
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>");
}