/* --------------------------------------------------------------------------

	(c) 2005-2007 U.S. Robotics Corporation

	-------------------------------------------------------------------------- */


function getString(id)
{
	var s = strings[id];

	if (s == undefined)
	{
		alert("The string id " + id + " isn't in the resource table.");
		return "<ERROR>";
	}
	if (s.length == 0)
	{
		alert("The string id " + id + " is empty.");
		return "<WARNING>";
	}

	return s;
}

/* Note to Tech Writers: "idProdNum" is required because one of the scripts expects a value in that field. Don't delete it.*/

var strings = new Array();

strings["idProdName"]		= "Wireless <em>MAX</em>g USB Adapter";
strings["idUProdName"]		= "Wireless MAXg USB Adapter";
strings["idProdNum"]		= "5425";
strings["idConfigName"]		= "USRobotics Wireless Utility";
/*
	*** TRANSLATION START -->
*/
strings["idDocType"]		= "User Guide";
/*
	*** TRANSLATION END -->
*/
