var fDesc=new Array();
fDesc[0] = "Watch Window Standard is a free engineering and troubleshooting tool that provides the minimum functionality needed to service the control system. Watch Window Standard software is a service tool designed for technicians and engineers applying or maintaining standard Woodward control systems. It replaces many of the meters and screwdrivers of yesterday.
Watch Window Standard is a configuration and troubleshooting tool that provides a window
into the control system.";
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 = '';
}
}