var fDesc=new Array();
fDesc[0] = "CircuitStudio is a professional PCB design tool for Windows OS.
Main features:
- Hierarchical Multi-Sheet Design.
- Built-In Mixed-Mode SPICE Simulation Engine.
- Altium Industry-Standard Schematic Editor and File Format.
- Content Library of Over 350000 Parts and Growing.
- Integrated Live Supply Chain Management and Visibility.";
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 = '';
}
}