var URL = new Array();
var Name = new Array();
//-----------------------------------------//
URL[0] = "en_for_agents_introduction.htm";
Name[0] = "Introduction";

URL[1] = "en_for_agents_members.htm";
Name[1] = "Members";

URL[2] = "en_for_agents_report.htm";
Name[2] = "Report";

URL[3] = "en_for_agents_statistics.htm";
Name[3] = "Statistics";


//-----------------------------------------//
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>");
}