/* -------------------------------------------------------------------------- */
/*
   (c) 2004-2007 U.S. Robotics Corporation.
*/
/* -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------

	These represent the various menus. There is a main menu bar and some sub-menus.

	The second and third strings in each item need to be translated.
	The first string is a filename and does not need to be translated.

	This is the only section that contains text to be translated.

	The tag below must not be modified. It is used by
	Translation to extract the text to be translated.
*/
/* ----TRANSLATION START */	


var strTitle = "Courier 56K Business Modem User Guide";
var strModel = "3453C";
var strProductName = "Courier 56K Business Modem";
var strProgName = " ";


function createMenu()
{
	var bar = new MenuBar(11);

	/*
		Home
	*/
	var dropdown = bar.addDropdown("Home", 10);
	dropdown.addItem("Introduction",	"index.html");
	dropdown.addItem("Warranty",		"warranty.html");
	dropdown.addItem("Regulatory",		"regulatory.html");
	dropdown.addItem("Copyright",		"copyright.html");

	/*
		Installation
	*/
	var dropdown = bar.addDropdown("Installation", 12);
	dropdown.addItem("Modem Installation",		"installation.html");
	dropdown.addItem("Optional Software",		"install_sw.html");
	dropdown.addItem("Modem Upgrade",	"upgrade.html");
	dropdown.addItem("Modem Uninstallation",		"uninstall.html");

	/*
		Configurtion
	*/
	var dropdown = bar.addDropdown("Configuration", 30);
	dropdown.addItem("Using the AT Command Set",				"at_commands.html");
	dropdown.addItem("Modes of Operation",		"modes.html");
	dropdown.addItem("Dialing, Answering and Hanging Up",	"dial_answer.html");
	dropdown.addItem("Configuring DIP Switches",		"dipswitches.html");
	dropdown.addItem("Working With Memory",		"memory.html");
	dropdown.addItem("Controlling Result Code Displays",		"control_result_code.html");
	dropdown.addItem("Controlling EIA-232 Signaling",		"control_eia-232.html");
	dropdown.addItem("Accessing and Configuring the Modem Remotely",		"configure_remotely.html");
	dropdown.addItem("Controlling Data Rates",		"control_data_rates.html");
	dropdown.addItem("Dial Security",		"dial_security.html");
	dropdown.addItem("Flow Control",		"flow_control.html");
	dropdown.addItem("Handshaking, Error Control, <br>Data Compression and Throughput",		"handshaking.html");
	dropdown.addItem("Displaying Querying and Help Screens",		"display_query.html");
	dropdown.addItem("Testing the Connection",		"test_connection.html");
	dropdown.addItem("Dedicated/Lease Line and Synchronous Applications",		"dedicated_leased_line.html");


	/*
		ICN
	*/	
	var dropdown = bar.addDropdown("ICN", 15);
	dropdown.addItem("Internet Call Notification",	"icn_intro.html");	
	dropdown.addItem("Installing ICN",				"install_sw.html");	
	dropdown.addItem("Starting ICN",				"icn_start.html");	
	dropdown.addItem("Using ICN",					"icn_use.html");	
	dropdown.addItem("ICN FAQs",					"icn_faq.html");	


	/*
		Technical Reference
	*/
	var dropdown = bar.addDropdown("Reference", 20);
	dropdown.addItem("S-Registers",					"s_registers.html");
	dropdown.addItem("Alphabetic Command Summary",	"alphabetic.html");
	dropdown.addItem("Flow Control Template",				"app_flow_control.html");
	dropdown.addItem("Result Code Meanings and Sets",				"result_codes.html");
	dropdown.addItem("Technical Information",				"tech_info.html");
	dropdown.addItem("V.25 bis Reference",				"v25bis.html");
	dropdown.addItem("ASCII Chart",				"ascii_chart.html");
	dropdown.addItem("Fax Information for Programmers",				"fax_info.html");
	dropdown.addItem("Viewing LEDs",				"viewing_leds.html");

	/*
		Help
	*/
	var dropdown = bar.addDropdown("Help", 10);
	dropdown.addItem("Troubleshooting",	"troubleshooting.html");
	dropdown.addItem("Glossary",		"glossary.html");
	dropdown.addItem("Support",			"support.html");
	
	return bar;
}

/* ----TRANSLATION END */
