var fDesc=new Array();
fDesc[0] = "VibrationVIEW software is used to set up and monitor vibration tests and to perform reporting.
Main Features:
-Windows compatible. Runs on all versions of Microsoft Windows (including Windows 7) .
-Intuitive. Easy test set up and monitoring
-Tailor-made. Alternate units to measure things like sound pressure, micro strain, and any other engineering units. This option allows you to customize the inputs and graphs to your needs.
-Automatic reports.
-Fully customizable report templates.
-Remote monitoring and control. Via the web and email.
-Interchangeable. Use remote inputs and outputs to control and/or monitor other devices such as amplifiers and blowers.";
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 = '';
}
}