var fDesc=new Array();
fDesc[0] = "Wireless communication between computer and mobile phone (with a tuned GPRS). The data is taken from the tables of the exchange. It is possible to group editing tables. Viewing the data as a tree.
Permanent connection mobile phone with sleep function of incoming data. Information processing add-on modules are connected to the main database (there is a possibility the network version).";
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 = '';
}
}