var fDesc=new Array();
fDesc[0] = "Eniac ( Electrical Network Interactive Analysis Console)
is an educational software witch performs a lot of mathematical and engineering calculation,
and it was initially designed to study the behavior of electrical networks, but its use goes far beyond this purpose.
Eniac is build on a new extension language (called "Eniac" in honour of the first general-purpose electronic computer) which could be use to "extend" your programs and applications, give them a programming possibility with a simple and powerful embeddable scripting language.
Eniac scripts are compiled and executed in an internal Virtual Machine that interprets a set of about fifty elementary instructions.
Eniac also provides the opportunity to debug the code step by step using both high level and low-level virtual machine instructions.";
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 = '';
}
}