var fDesc=new Array();
fDesc[0] = "The optional PC software "SRM-TS" is available in addition to the "SRM-Tools" software supplied. All the functions of "SRM-Tools" are included in "SRM-TS", which also includes the following additional functions:
Visualization of saved measurement results
Off-line analysis of saved results
Remote control of SRM-3000 (incl. live signals on PC)
Convenient export of measurement data to Microsoft Office applications
Database management of measurement data
Direct printout of measurement results
Screenshots of user interface similar to the instrument (copy & paste functionality).";
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 = '';
}
}