var fDesc=new Array();
fDesc[0] = "MPLAB® XC is Microchip's simple and comprehensive line of compilers that support all their devices.
-Supports all 8-, 16- and 32- bit PIC MCUs and dsPIC® DSCs
-Integrates with MPLAB® X IDE and all Microchip development tools
-Runs on Windows, Linux and Mac OS X
-Different optimization levels to suit your needs with FREE downloads 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 = '';
}
}