var fDesc=new Array();
fDesc[0] = "Immediate Motion Creator for CM/SCX Series allows you to create motion profiles and execute them immediately. It provides also full system configurability, I/O monitoring and multi-axis control.
Main Features :
- Jog & teaching capability
- Upload/Download programs and parameters
- Built-in terminal function";
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 = '';
}
}