var fDesc=new Array();
fDesc[0] = "EasyQuantis application allows you to quickly and
easily generate random data. To generate random data using EasyQuantis:
1. Select a Quantis device from the list shown in the main window
2. Select a data format.
It is also important not to compile EasyQuantis when compiling with C 11";
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 = '';
}
}