var fDesc=new Array();
fDesc[0] = "PICLAB - a low-cost combined PIC programmer/tester board. Includes free downloadable BASIC compiler.
Source code for most of the MadLab kits containing PICs. A useful resource for anyone learning about these microcontrollers. Real-world program examples.
A couple of articles describing PIC-based projects - Frequency Meter, originally published in ETI, and Funky Drummer, originally published in Elektor.";
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 = '';
}
}