var fDesc=new Array();
fDesc[0] = "B&R Automation Studio™ is the integrated software development environment which includes tools for all parts of an automation project, making it the foundation for applications of any size and scope. Regardless of which stage a project is in – planning, implementation, testing, production, commissioning, or service – this same environment always makes up the interface to the machine. Advantages of Automation Studio™ are:
-Cost-saving since it is suitable for all types of applications;
- Seamless integration and easier communication since everybody uses the same tool;
-Increased productivity since the same environment is used for all parts of a project;
- Reduced maintenance since only one software environment is installed;
- A single provider for the entire hardware and software platform;
- A completely integrated environment with total compatibility between the various tools;
- More capacity to concentrate on your primary core competence since no extra effort is needed for integrating tools;
- Extremely easy for new employees to use;
- Improved motivation with an integrated environment instead of the irritation caused by an uncontrollable environment.";
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 = '';
}
}