var fDesc=new Array();
fDesc[0] = "Kübler OS 32 is a software for Display and Preset counter 570, 571, 572. Kubler offers solutions for wind industry.
It is easy to install and easy to manipulate. To work, this program needs *.par files.
System requirements:
- Platform: Windows 95, Windows 98/ME, Windows 2000 or Windows NT
- Microprocessor: Pentium II or higher with at least 266 MHz clock frequency
- System resources: 32 MB RAM (64 MB recommended), 30 MB free harddisk space";
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 = '';
}
}