/* --------------------------------------------------------------------------

	(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.*/
/* Only "User Guide" and "smart switch" should be translated */

var strings = new Array();

strings["idProdName"]		= "Wireless Ndx PC Card";
strings["idProdName1"]		= "Wireless Ndx PCI Adapter";
strings["idProdNum"]		= "5412";
strings["idProdNum1"]		= "5419";


/*
	*** TRANSLATION START -->
*/
strings["idDocType"]		= "Guide de l'utilisateur";
/*
	*** TRANSLATION END -->
*/