var fDesc=new Array();
fDesc[0] = "It simplifies calculating a measuring point for tension measuring (e.g. determination of appropriate force sensors).
FMS Calculator is a unique calculating tool to choose the suitable sensor and design your application for any tension measurement configurations.
You can save your calculations in a database or in a file.";
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 = '';
}
}