var fDesc=new Array();
fDesc[0] = "ABEC2 combines boundary and lumped element methods. Complicated acoustics is calculated with the help of BEM. Simple acoustics, structures and electronics is handled by the LEM.
The project-organiser keeps all files stored in a text-file with file-extension *.abec, which forms the main-file of the project. Its filename is reported underneath the buttons. The project-file is maintained by ABEC and automatically updated as soon files are added or removed.
Typically there is a single solving script and one or more observation scripts. Optionally there can be an information file. Embedded scripts are reported indented.";
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 = '';
}
}