var fDesc=new Array();
fDesc[0] = "S7Protect allows you to set or remove the KNOW_HOW_PROTECT-flag of your STEP7 programs without the blocks sources.
Key Features:
- Set or remove know-how protection for OB, FC, FB, DB, UDT blocks
- It works simultaneously with Simatic Manager
- Grab the list of projects opened in Simatic Manager
- It allow to take a snapshot of protected blocks for later comparison and easily protections restore";
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 = '';
}
}