/* --------------------------------------------------------------------------

	(c) 2005-2006 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"]		= "56K PCI Faxmodem for Windows";
strings["idProdNum"]		= "5699B";
strings["idConfigName"]		= "<strong>U.S. Robotics V.92 Fax Win Int</strong>";
strings["idPassword"]		= " ";
strings["idIPAddress"]		= " ";
strings["idDocType"]		= "Guide de l'utilisateur";
strings["idDocTitle"]		= "Guide de l'utilisateur du 56K PCI Faxmodem for Windows";

