var fDesc=new Array();
fDesc[0] = "SIWATOOL MS is for commissioning and testing SIWAREX MS. You can use it offline or online, and you can read and save the parameters. The SIWAREX MS is a compact weighing electronics for the system S7-200 from SIMATIC. The data for the actual weight can be accessed directly in the SIMATIC CPU without the need for any additional interfaces.";
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 = '';
}
}