var fDesc=new Array();
fDesc[0] = "The program is intended for simulation of kinematics and dynamics of planar and spatial mechanical systems. Universal Mechanism Lite is a simplified version of Universal Mechanism software.
Universal Mechanism Lite occupies a special place in the software product line of the laboratory. On the one hand, the concept of the program is the reflection of general principles laid in UM.
On the other hand, functional capabilities of the program are restricted considering the specific character of this software. First of all, it is concerned the set of force elements and programming in the program 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 = '';
}
}