var fDesc=new Array();
fDesc[0] = "FAMOS robotic® enables efficient programming of different industrial robots. It offers robot programming focussed on quality and programming time. FAMOS robotic® is mainly dedicated to robot programmers on the shop floor.
Features:
-Reduce machine down time
-Prepare new products and start-ups using your PC
-Respond flexibly and quickly to product changes
-Work ergonomically";
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 = '';
}
}