var fDesc=new Array();
fDesc[0] = "TSwin .net (DE) SP2 provides user with a straightforward tool for programming buttons,indicators lights,password protection,pictures, bars, input and output fields,text and text lists, and much more. The function for providing re-useable template files,which cand be used as basis for the creation of new projects, offers a high livel of convenience.
TSwin .net (DE) SP2 benefits:
- You can enter a tolerance value for the object item for importing and exporting language packs
- You can select "Align selected elements to grid" and "Align selected elements" using icons in the toolbar.
- When you create a recipe, the activated protocol is used as the controller";
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 = '';
}
}