var fDesc=new Array();
fDesc[0] = "Compact solution for fast, efficient and secure reprogramming of 16-bit PIC and dsPIC devices on CAN bus systems.
The 16bit PIC CAN bootloader is a standalone program that allows download and replacement of any program module within a microcontroller or digital signal controller (e.g. ECUs).
It includes a firmware part, to be uploaded in the microprocessor, and a PC software interface (both graphical user interface and command line versions are available).";
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 = '';
}
}