var fDesc=new Array();
fDesc[0] = "Hades is a java framework for interactive simulation.
Unlike most traditional circuit simulators, Hades does not need separate edit-compile-simulate-analyze phases. Instead, it provides a fully interactive simulation environment:
- you can edit your circuit while the simulation is running.
- you can pause and continue, or stop and restart the simulation at any time.
- you can run the simulation for a predefined amount of simulated time
- you just click the interactive switches (or type the equivalent bindkeys) to control the inputs to your circuit.";
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 = '';
}
}