var fDesc=new Array();
fDesc[0] = "Software to create and view dimension sheets, 1:1 drawings and 3d-models
The program allows a user to print and import a drawings of a gearmotor or gear reducer into their own CAD system. The selection is available from an easy to use Windows based environment.
This version contains additionally 3d models and 1:1 drawings for NORD motors and an update of the native formats such as Inventor 2010, SolidWorks 2010, Solid Edge V20.";
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 = '';
}
}