var fDesc=new Array();
fDesc[0] = "Syscomp CircuitGear is a combination of three electronic instruments: a two-channel digital storage
oscilloscope, a waveform generator, and a digital input-output port.
Host software can operate the instrument
as a spectrum analyser and as a vector-network analyser (Bode plotter). CGR-101 is one of a series of instruments from Syscomp Electronic Design.
CircuitGear includes a small hardware module and display software that runs on a host PC.";
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 = '';
}
}