var fDesc=new Array();
fDesc[0] = "Application designed to automate the compilation and distribution process of software products. Its capabilities are very well usable to automate any user defined tasks.
Precision Builder Express is a professional product, that provides a comprehensive yet easy to use environment for the definition, management and running of automation projects - so called scripts. Each script is composed of predefined action types organized in the logical structure and parameterized according to the script needs.
For a definition of action types the product provides the Action library. This allows the categorization, adding, editing, deleting, installing new and publishing own actions.";
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 = '';
}
}