var fDesc=new Array();
fDesc[0] = "The Signal Analysis PICtail Daughter Board works as an extension to the PICkit™ 1 Flash Starter Kit.
When combined with PICkit 1 firmware and the signal-analysis PC program, the Signal Analysis PICtail Daughter Board can perform signal-analysis capabilities such as: real-time strip chart, oscilloscope, Fast Fourier Transformation (FFT), histogram and programming. The Signal Analysis PICtail Daughter Board comes populated with a PIC16F684 and two 25LC640 SPI™ compatible serial EEPROM memory devices.";
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 = '';
}
}