var fDesc=new Array();
fDesc[0] = "S7 Data Archiver is a tool developped for storing Siemens S7 PLC's data, eg: DB, DI, M and more, in a local file, or write them from local file. The archive includes a data editor.
The program is provided free of charge with EUPL license.
Written and compiled with U . (Compile Options: GUI, MSC9 Optimal).";
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 = '';
}
}