var fDesc=new Array();
fDesc[0] = "The program KUKA.Verify CNC is used to verify the syntax of CNC files. Its main purpose is to read in CNC files and verify if those files can be used in the product KUKA.CAMRob 2.0.
The program does only verify the syntax of the CNC files. Other 'defects' of using the CNC file such as the reacheability of the positions or eventual collisions between spindle and work piece or other collisions are not checked.";
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 = '';
}
}