var fDesc=new Array();
fDesc[0] = "C2Prog is an industrial grade flash programming tool for TI C2000 MCUs.
Main features:
- Fast communication protocol that works reliably with USB-to-RS232 converters.
- Support for point-to-point as well as multidrop networks.
- Support for CAN and TCP/IP links.
- Firmware encryption for secure reflashing in the field.";
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 = '';
}
}