var fDesc=new Array();
fDesc[0] = "The MCP2210 Utility software was designed to support the Microchip MCP2210 device. This program allows custom device configuration during evaluation, development, and/or production.
Features:
- Allows configuration of several devices with specified settings.
- Displays a detailed status of the configuration, reading, or other process being performed.
- User configurable chip and SPI settings for the MCP2210 device.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}