var fDesc=new Array();
fDesc[0] = "The computer-aided control system analysis and design program used in industry, research organizations and universities around the world.
Main features:
- Provides a Comprehensive Control (CC) system design package containing the many tools and algorithms of current control system theory and practice
-Has the tools for classical and modern, frequency and time domain, single and multiple input/output, continuous and sampled data control system analysis and design";
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 = '';
}
}