var fDesc=new Array();
fDesc[0] = "The MPLAB C Compiler for PIC18 MCUs (also known as MPLAB C18) is a full-featured ANSI compliant C compiler for the PIC18 family of PICmicro 8-bit MCUs.
Main features:
- ANSI '89 compatibility.
- Integration with the MPLAB IDE for easy-to-use project management and source-level debugging.
- Generation of relocatable object modules for enhanced code reuse.
- Extensive multi-pass optimizations.
- Supports new PIC18F extended mode instructions.";
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 = '';
}
}