var fDesc=new Array();
fDesc[0] = "TimingDraw uses TFunctionParser, a mathematical parser for analyzing and evaluating mathematical functions.
Features
- Intuitive Windows Graphical User Interface.
- Automation/COM Interface.
- Digital and analog signals supported.
- Customizable signals.
- Logical signals, busses, clocks.
- Analog signals (calculated by math formula or measured e.g. oscilloscope).
- Easy and interactive zoom/ unzoom by mouse wheel and mouse drag.
- Save/ load projects.
- Save as web page.
- Open remote projects on the internet.
- Undo/Redo.
- Custom logo.
- Export/ import of traces.
- Measuring capabilities.
- Timing Analysi";
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 = '';
}
}