var fDesc=new Array();
fDesc[0] = "Vibshape is an efficient animation program that helps you to understand how a machine vibrates and what measures should be taken.
Main features:
- Vibshape has functions for drawing of cubes, boxes and cylinders
- Vibshape shows all the pictures in radial projection
- Vibshape can move, copy or delete junctions
- With the manual input the program is suitable for all instruments that can measure vibration and angle
- Measuring data can be entered while the model is vibrating ”live”
- The zoom and view angle can easily be changed with the mouse
- It is easy to change the mode shape frequency at animation
- Automatic max and min deviation for print out or copying.";
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 = '';
}
}